/* ============================================================
   NICE – About Panel Stylesheet
   Mirrors .contact-cta pattern for the header block.
   ============================================================ */

/* ── CTA header block (sygnet + headline) ────────────────── */
.about-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-4);
  margin-bottom: var(--space-8);
}

@media (min-width: 481px) {
  .about-cta {
    flex-direction: row;
    align-items: center;
    text-align: left;
    gap: var(--space-6);
  }
}

/* ── Signet image ────────────────────────────────────────── */
.about-cta__icon {
  flex-shrink: 0;
  width: 240px;
  height: 240px;
  filter: invert(1);
  opacity: 0.9;
}

/* ── Headline ────────────────────────────────────────────── */
.about-cta__text {
  display: flex;
  flex-direction: column;
}

.about-cta__headline {
  font-family: var(--font-mono);
  font-size: var(--text-base);
  font-weight: var(--font-medium);
  color: rgba(255, 255, 255, 0.88);
  margin: 0;
  line-height: var(--leading-tight);
  white-space: normal;
}

@media (min-width: 481px) {
  .about-cta__headline {
    font-size: 1.875rem;
    white-space: nowrap;
  }
}

/* ── NICE brand highlight (yellow + bold) ────────────────── */
.about-nice {
  color: var(--color-yellow);
  font-weight: var(--font-bold);
}

/* ── Links inside bio body ───────────────────────────────── */
.about-bio__body a {
  color: var(--color-lavender);
  text-decoration: underline;
  text-decoration-color: rgba(182, 161, 205, 0.35);
  text-underline-offset: 3px;
  transition: color var(--duration-fast) var(--ease-out-expo),
              text-decoration-color var(--duration-fast) var(--ease-out-expo);
}

.about-bio__body a:hover {
  color: rgba(255, 255, 255, 0.88);
  text-decoration-color: rgba(255, 255, 255, 0.4);
}

/* ── Bio body paragraphs ─────────────────────────────────── */
.about-bio__body {
  font-family: var(--font-mono);
  font-size: var(--text-base);
  font-weight: var(--font-regular);
  line-height: var(--leading-relaxed);
  color: var(--color-lavender);
  opacity: 0.75;
  text-align: justify;
  hyphens: auto;
}

/* Paragraph spacing inside the bio (injected via data-i18n-html) */
.about-bio__body p {
  margin: 0;
}

.about-bio__body p + p {
  margin-top: var(--space-5);
}

/* ── Game placeholder section ────────────────────────────── */
.about-game {
  margin-top: var(--space-12);
  padding-top: var(--space-10);
  border-top: 1px solid rgba(182, 161, 205, 0.1);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.about-game__label {
  font-family: var(--font-mono);
  font-size: var(--text-2xl);
  font-weight: var(--font-bold);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-lavender);
}

/* ── Game frame: the future embedded game lives here ─────── */
.about-game__frame {
  width: 100%;
  height: 260px;
  border: 1px solid rgba(182, 161, 205, 0.15);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  position: relative;
  overflow: hidden;
  background: rgba(182, 161, 205, 0.03);
}

@media (min-width: 769px) {
  .about-game__frame {
    height: 360px;
  }
}

/* Subtle scanline shimmer */
.about-game__frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 3px,
    rgba(182, 161, 205, 0.02) 3px,
    rgba(182, 161, 205, 0.02) 4px
  );
  pointer-events: none;
}

.about-game__soon {
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  font-weight: var(--font-regular);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-lavender);
  opacity: 0.35;
  text-align: center;
  padding: 0 var(--space-6);
  position: relative;
}

/* Blinking cursor */
.about-game__soon::after {
  content: '_';
  animation: blink 1.1s step-end infinite;
}

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