body {
  color: #302c1c;
}
p a {
  text-decoration: underline;
}
@font-face {
  font-family: "thunder";
  src: url("thunder.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
.page-template-default .content h2 {
  font-size: 40px;
  font-family: "thunder";
  text-transform: uppercase;
  margin-top: 0.75rem;
}

.page-template-default .content p {
  margin-top: 8px;
}

.thunder {
  font-family: "thunder";
}

#brom-container {
  transform: scale(4);
  opacity: 0;
}

.rotate-45 {
  transform: rotate(45deg);
}
.rotate-0 {
  transform: rotate(0deg);
}

@keyframes shake {
  0% {
    transform: rotate(-3deg) translate(0, 0);
  }
  20% {
    transform: rotate(-3deg) translate(-8px, 0);
  }
  40% {
    transform: rotate(-3deg) translate(8px, 0);
  }
  60% {
    transform: rotate(-3deg) translate(-8px, 0);
  }
  80% {
    transform: rotate(-3deg) translate(8px, 0);
  }
  100% {
    transform: rotate(-3deg) translate(0, 0);
  }
}

#brom-container.shakeable:hover {
  animation: shake 0.3s infinite;
  cursor: grab;
}

.brom-text {
  padding-top: 24px;
  line-height: 1;
  font-family: "thunder";
  font-size: 106px;
  color: #302c1c;
}

.hero-text {
  line-height: 1;
  font-family: "thunder";
  color: #302c1c;
}
.hero-wrapper {
  display: inline-block;
  overflow: hidden; /* This masks the animation */
  line-height: 1; /* Keeps tight baseline */
}

.hero-text span {
  display: inline-block;
  white-space: pre;
  /* opacity: 0;
        transform: translateY(80px); */
}

.wp-block-button__link {
  background: #f4a00d;
  border-color: #302c1c;
  border-radius: 0;
  font-size: 1.25rem;
  font-family: "thunder";
  text-transform: uppercase;
  margin-top: 16px;
  color: #302c1c;
  border-width: 1px;
}

.segment-display {
  font-family: "Courier New", monospace;
  text-shadow: 0 0 10px #ff0000, 0 0 20px #ff0000, 0 0 30px #ff0000;
  letter-spacing: 0.2em;
}

.clock-glow {
  box-shadow: inset 0 0 20px rgba(255, 0, 0, 0.1), 0 0 30px rgba(0, 0, 0, 0.8);
}

@keyframes blink {
  0%,
  50% {
    opacity: 1;
  }
  51%,
  100% {
    opacity: 0;
  }
}

.blink-animation {
  animation: blink 2s infinite;
}

.segment-char {
  display: inline-block;
  position: relative;
}

/* Create the segmented look with borders */
.segment-char::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 2px;
  background: rgba(255, 0, 0, 0.2);
  z-index: -1;
}

.question h2 {
  font-weight: 700;
  margin-top: 8px;
}
