/* css/layout.css — Glass Aurora Layout */

/* ═══════════════════════════════════════════════════
   APP SHELL
   ═══════════════════════════════════════════════════ */
.app-container {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.main-content {
  width: 100%;
  position: relative;
}

/* ═══════════════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem var(--container-padding);
  transition: background 0.4s var(--ease-out-quart),
    backdrop-filter 0.4s var(--ease-out-quart),
    border-color 0.4s,
    box-shadow 0.4s,
    padding 0.3s;
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(24px) saturate(1.8);
  -webkit-backdrop-filter: blur(24px) saturate(1.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 4px 30px rgba(255, 62, 154, 0.05);
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.navbar .logo {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  z-index: 2;
}

.navbar .logo .cursive-xl {
  font-size: 1.75rem;
  line-height: 1;
}

.nav-center {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-link {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.75rem;
  color: var(--color-text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  position: relative;
  padding: 0.5rem 0;
  transition: color 0.3s;
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-primary);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--color-primary);
  border-radius: 1px;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s var(--ease-out-quart);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 2;
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  width: 32px;
  height: 32px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-text);
  border-radius: 1px;
  transition: all 0.3s var(--ease-out-quart);
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(2.5px, 2.5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(2.5px, -2.5px);
}

/* Mobile nav overlay */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(255, 245, 250, 0.97);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease-out-expo),
    visibility 0.4s;
}

.mobile-nav.open {
  opacity: 1;
  visibility: visible;
}

.mobile-nav .mobile-nav-link {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text);
  transition: color 0.3s;
}

.mobile-nav .mobile-nav-link:hover {
  color: var(--color-primary);
}

/* ═══════════════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════════════ */
#hero-pin-wrapper {
  position: relative;
  width: 100%;
  min-height: 100dvh;
  isolation: isolate;
  z-index: 1;
  direction: ltr;
}

.hero-bg-system {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-video-wrapper {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-parallax-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

/* Light cinematic overlay — soft gradient instead of dark */
.hero-dark-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(255, 245, 250, 0.15) 0%,
      rgba(255, 245, 250, 0.3) 30%,
      rgba(255, 245, 250, 0.65) 70%,
      var(--color-bg) 100%);
  z-index: 1;
}

/* Side vignette — soft */
.hero-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center,
      transparent 50%,
      rgba(255, 245, 250, 0.4) 100%);
  z-index: 2;
  pointer-events: none;
}

/* Ambient glow */
.hero-glow {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 60%;
  background: radial-gradient(ellipse, rgba(255, 62, 154, 0.1) 0%, transparent 70%);
  z-index: 2;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  direction: ltr;
  justify-content: center;
  padding-top: 6rem;
  padding-bottom: 4rem;
}

.hero-text-block {
  max-width: 700px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: var(--radius-pill);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-primary);
  margin-bottom: 2rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 16px rgba(255, 62, 154, 0.06);
}

.hero-title {
  margin-bottom: 1.5rem;
  /* Text shadow for readability on video */
  text-shadow: 0 2px 20px rgba(255, 245, 250, 0.5);
}

.hero-title .line {
  display: block;
  overflow: hidden;
}

.hero-title .line .word {
  display: inline-block;
  transform: translateY(100%);
}

.hero-subtitle {
  margin-bottom: 2rem;
  text-shadow: 0 2px 10px rgba(255, 245, 250, 0.5);
}

.hero-description {
  color: var(--color-text-secondary);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 2.5rem;
  text-shadow: 0 1px 8px rgba(255, 245, 250, 0.6);
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.hero-scroll-hint {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-text-muted);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: auto;
}

.hero-scroll-hint .scroll-line {
  width: 40px;
  height: 1px;
  background: rgba(255, 62, 154, 0.2);
  position: relative;
  overflow: hidden;
}

.hero-scroll-hint .scroll-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--color-primary);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% {
    left: -100%;
  }

  50% {
    left: 0;
  }

  100% {
    left: 100%;
  }
}

/* Right side floating info panel on hero */
.hero-info-panel {
  position: absolute;
  right: var(--container-padding);
  top: 50%;
  transform: translateY(-50%);
  width: 280px;
  z-index: 10;
}

.hero-info-card {
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(24px) saturate(1.5);
  -webkit-backdrop-filter: blur(24px) saturate(1.5);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  box-shadow: var(--shadow-card);
}

.hero-info-label {
  font-size: 0.6rem;
  font-weight: 700;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.35rem;
}

.hero-info-value {
  font-weight: 800;
  font-size: 1rem;
}

.hero-info-sub {
  font-size: 0.65rem;
  color: var(--color-text-secondary);
  font-weight: 600;
}

.hero-info-divider {
  height: 1px;
  background: rgba(255, 62, 154, 0.08);
  width: 100%;
}

/* ═══════════════════════════════════════════════════
   STATS MARQUEE
   ═══════════════════════════════════════════════════ */
.marquee-section {
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 62, 154, 0.06);
  border-bottom: 1px solid rgba(255, 62, 154, 0.06);
  overflow: hidden;
  position: relative;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 4rem;
  will-change: transform;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  white-space: nowrap;
  flex-shrink: 0;
}

.marquee-item .stat-number {
  font-family: var(--font-sans);
  font-weight: 900;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  color: var(--color-text);
  letter-spacing: -0.02em;
}

.marquee-item .stat-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.marquee-item .stat-dot {
  width: 6px;
  height: 6px;
  background: var(--color-primary);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════
   ABOUT SECTION
   ═══════════════════════════════════════════════════ */
.about-section {
  padding: var(--section-gap) 0;
  content-visibility: auto;
  contain-intrinsic-size: auto 800px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 3/4;
  box-shadow: var(--shadow-lg);
}

.about-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-image-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-xl);
  pointer-events: none;
}

.about-image-glow {
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle, rgba(255, 62, 154, 0.12) 0%, transparent 60%);
  z-index: -1;
}

.about-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-text .heading-section {
  margin-bottom: 0.5rem;
}

.about-text p {
  color: var(--color-text-secondary);
  font-size: 1rem;
  line-height: 1.8;
}

.about-signature {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
}

.about-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid white;
  box-shadow: var(--shadow-sm);
}

/* ═══════════════════════════════════════════════════
   GAME SPOTLIGHT
   ═══════════════════════════════════════════════════ */
.spotlight-section {
  padding: var(--section-gap) 0;
  position: relative;
  content-visibility: auto;
  contain-intrinsic-size: auto 500px;
}

.spotlight-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 21/9;
  box-shadow: var(--shadow-lg);
}

.spotlight-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 6s var(--ease-out-expo);
}

.spotlight-card:hover img {
  transform: scale(1.05);
}

.spotlight-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
      rgba(26, 26, 46, 0.85) 0%,
      rgba(26, 26, 46, 0.4) 50%,
      transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(2rem, 5vw, 4rem);
}

.spotlight-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.35rem 0.75rem;
  background: var(--color-primary);
  border-radius: var(--radius-pill);
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: white;
  width: fit-content;
  margin-bottom: 1rem;
}

.spotlight-title {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 0.5rem;
  color: white;
}

.spotlight-subtitle {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
  max-width: 400px;
}

/* ═══════════════════════════════════════════════════
   GAMES GALLERY
   ═══════════════════════════════════════════════════ */
.games-section {
  padding: var(--section-gap) 0;
  content-visibility: auto;
  contain-intrinsic-size: auto 600px;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.25rem;
}

.game-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  transition: transform 0.5s var(--ease-out-expo);
  box-shadow: var(--shadow-sm);
}

.game-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.game-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out-expo);
}

.game-card:hover img {
  transform: scale(1.08);
}

.game-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(26, 26, 46, 0.85) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
}

.game-card-name {
  font-weight: 800;
  font-size: 0.9rem;
  text-transform: uppercase;
  color: white;
}

.game-card-tag {
  font-size: 0.6rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ═══════════════════════════════════════════════════
   HIGHLIGHTS
   ═══════════════════════════════════════════════════ */
.highlights-section {
  padding: var(--section-gap) 0;
  content-visibility: auto;
  contain-intrinsic-size: auto 600px;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}

.highlight-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/9;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}

.highlight-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out-expo);
}

.highlight-card:hover img {
  transform: scale(1.05);
}

.highlight-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 46, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.highlight-card:hover .highlight-card-overlay {
  background: rgba(26, 26, 46, 0.15);
}

.highlight-play-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  transition: all 0.3s var(--ease-spring);
}

.highlight-card:hover .highlight-play-btn {
  transform: scale(1.15);
  background: var(--color-primary);
  border-color: var(--color-primary);
}

.highlight-duration {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  color: white;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 700;
}

/* ═══════════════════════════════════════════════════
   LIVE SCHEDULE — Simple beautiful banner
   ═══════════════════════════════════════════════════ */
.live-schedule-section {
  padding: var(--section-gap) 0;
  content-visibility: auto;
  contain-intrinsic-size: auto 500px;
}

.live-schedule-card {
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(24px) saturate(1.5);
  -webkit-backdrop-filter: blur(24px) saturate(1.5);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-xl);
  padding: clamp(2.5rem, 5vw, 4rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}

.live-schedule-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
}

.live-schedule-left {
  flex: 1;
  min-width: 0;
}

.live-schedule-left .heading-sm {
  margin-bottom: 0.75rem;
}

.live-schedule-title {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 0.75rem;
}

.live-schedule-desc {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 450px;
}

.live-schedule-time {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
  padding: 0.6rem 1.25rem;
  background: rgba(255, 62, 154, 0.08);
  border: 1px solid rgba(255, 62, 154, 0.12);
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-primary);
}

.live-schedule-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.live-pulse-ring {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(255, 62, 154, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.live-pulse-ring::before,
.live-pulse-ring::after {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px solid rgba(255, 62, 154, 0.15);
  animation: livePulseRing 3s ease-in-out infinite;
}

.live-pulse-ring::after {
  inset: -18px;
  animation-delay: 0.5s;
  border-color: rgba(255, 62, 154, 0.08);
}

@keyframes livePulseRing {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.08);
    opacity: 0.5;
  }
}

.live-pulse-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  box-shadow: 0 4px 20px rgba(255, 62, 154, 0.3);
}

/* ═══════════════════════════════════════════════════
   FAN CLUB CTA
   ═══════════════════════════════════════════════════ */
.cta-section {
  padding: var(--section-gap) 0;
  content-visibility: auto;
  contain-intrinsic-size: auto 700px;
}

/* ─── Base Card & Animations ─── */
@keyframes ctaGradShift {
  0% {
    transform: scale(1) translate(0%, 0%);
  }

  50% {
    transform: scale(1.12) translate(-2%, 2%);
  }

  100% {
    transform: scale(1) translate(0%, 0%);
  }
}

@keyframes ctaGlowPulse {
  0% {
    transform: scale(1) translate(0, 0);
    opacity: 0.45;
  }

  50% {
    transform: scale(1.1) translate(15px, -15px);
    opacity: 0.65;
  }

  100% {
    transform: scale(0.95) translate(-10px, 10px);
    opacity: 0.4;
  }
}

@keyframes floatAvatar {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-6px);
  }
}

@keyframes dotPulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(0.85);
  }
}

@keyframes ctaParticleFloat {
  0% {
    transform: translateY(0px) scale(0.9);
    opacity: 0.03;
  }

  50% {
    transform: translateY(-14px) scale(1.1);
    opacity: 0.09;
  }

  100% {
    transform: translateY(5px) scale(0.95);
    opacity: 0.04;
  }
}

.cta-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: visible !important;
  padding: clamp(2.5rem, 5.5vw, 4.5rem);
  background: #08080c;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.35rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 25px 70px -15px rgba(0, 255, 136, 0.2),
    0 15px 50px -20px rgba(255, 62, 154, 0.25),
    0 10px 30px -5px rgba(0, 0, 0, 0.8),
    inset 0 1px 2px rgba(255, 255, 255, 0.2),
    inset 0 -1px 2px rgba(0, 0, 0, 0.6);
  transition: transform 300ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 300ms cubic-bezier(0.16, 1, 0.3, 1), background 0.3s ease;
  will-change: transform, box-shadow, opacity;
  z-index: 1;
}

/* Entrance Animation Override (700ms Once) */
.cta-card.reveal {
  opacity: 0;
  transform: translateY(40px) scale(0.96);
  transition: opacity 700ms cubic-bezier(0.16, 1, 0.3, 1), transform 700ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 300ms cubic-bezier(0.16, 1, 0.3, 1);
}

.cta-card.reveal.revealed {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.cta-card:hover,
.cta-card.reveal.revealed:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow:
    0 35px 85px -10px rgba(0, 255, 136, 0.32),
    0 25px 65px -12px rgba(255, 62, 154, 0.38),
    0 15px 40px -5px rgba(0, 0, 0, 0.95),
    inset 0 1px 2px rgba(255, 255, 255, 0.35),
    inset 0 -1px 2px rgba(0, 0, 0, 0.7);
}

/* ─── Background Layers & Mesh ─── */
.cta-bg-layers {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.cta-grad-mesh {
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle at 12% 25%, rgba(255, 62, 154, 0.32) 0%, transparent 48%),
    radial-gradient(circle at 88% 75%, rgba(0, 255, 136, 0.28) 0%, transparent 52%),
    radial-gradient(circle at 50% 15%, rgba(123, 97, 255, 0.18) 0%, transparent 45%),
    linear-gradient(135deg, #0d0914 0%, #06080e 50%, #04120e 100%);
  background-size: 150% 150%;
  animation: ctaGradShift 24s ease-in-out infinite;
  will-change: transform;
}

.cta-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
  pointer-events: none;
  will-change: transform, opacity;
}

.cta-glow-pink {
  top: -15%;
  left: -5%;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(255, 62, 154, 0.45) 0%, transparent 70%);
  animation: ctaGlowPulse 20s ease-in-out infinite alternate;
}

.cta-glow-green {
  bottom: -20%;
  right: -5%;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(0, 255, 136, 0.42) 0%, transparent 70%);
  animation: ctaGlowPulse 26s ease-in-out infinite alternate-reverse;
}

.cta-wave-lines {
  position: absolute;
  inset: 0;
  opacity: 0.85;
}

.cta-wave-svg {
  width: 100%;
  height: 100%;
}

.cta-glass-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.015) 30%, transparent 35%, transparent 100%);
}

.cta-particles {
  position: absolute;
  inset: 0;
}

.cta-particle,
.cta-sparkle {
  position: absolute;
  opacity: 0.07;
  animation: ctaParticleFloat 7s ease-in-out infinite alternate;
  will-change: transform, opacity;
}

.cta-particle {
  width: 4px;
  height: 4px;
  background: #ffffff;
  border-radius: 50%;
  box-shadow: 0 0 8px #ffffff, 0 0 12px #ff3e9a;
}

.cta-sparkle {
  font-size: 15px;
  color: #00ff88;
  filter: drop-shadow(0 0 6px rgba(0, 255, 136, 0.8));
}

.p1 {
  top: 22%;
  left: 18%;
  animation-delay: 0s;
}

.p2 {
  top: 68%;
  left: 38%;
  animation-delay: -2s;
  width: 3px;
  height: 3px;
}

.p3 {
  top: 35%;
  left: 65%;
  animation-delay: -4s;
}

.p4 {
  top: 78%;
  left: 82%;
  animation-delay: -1s;
  width: 5px;
  height: 5px;
}

.s1 {
  top: 16%;
  left: 48%;
  animation-delay: -3s;
}

.s2 {
  top: 62%;
  left: 14%;
  animation-delay: -5s;
  color: #ff3e9a;
}

.s3 {
  top: 44%;
  left: 88%;
  animation-delay: -2s;
}

/* ─── Pill Badge ─── */
.cta-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-top: -0.90rem;
  margin-bottom: 1.25rem;
  background: rgba(15, 15, 24, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0.35rem 1rem 0.35rem 0.4rem;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5), inset 0 1px 1px rgba(255, 255, 255, 0.12);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  z-index: 2;
}

.cta-pill-badge:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 62, 154, 0.45);
  box-shadow: 0 6px 25px rgba(255, 62, 154, 0.28), inset 0 1px 1px rgba(255, 255, 255, 0.2);
}

.cta-pill-badge .badge-tag {
  background: linear-gradient(135deg, #ff3e9a, #e11d48);
  color: white;
  font-size: 0.72rem;
  font-weight: 850;
  padding: 0.22rem 0.65rem;
  border-radius: var(--radius-pill);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 2px 8px rgba(255, 62, 154, 0.4);
}

.cta-pill-badge .badge-label {
  color: rgba(255, 255, 255, 0.94);
  font-size: 0.84rem;
  font-weight: 650;
  letter-spacing: 0.01em;
}

.badge-online-dot {
  width: 8px;
  height: 8px;
  background-color: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 10px #22c55e, 0 0 4px #22c55e;
  animation: dotPulse 2s infinite;
}

/* ─── Typography & Copy ─── */
.cta-title {
  font-size: clamp(2.2rem, 5.2vw, 3.8rem);
  font-weight: 950;
  color: #ffffff;
  text-transform: uppercase;
  line-height: 0.94;
  letter-spacing: -0.02em;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.7);
  z-index: 2;
  max-width: 650px;
  position: relative;
}

.cta-title .cta-title-accent {
  color: #ff3e9a;
  background: linear-gradient(135deg, #ff52a6 0%, #ff1a80 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 20px rgba(255, 62, 154, 0.35));
}

.cta-text {
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(0.98rem, 1.4vw, 1.08rem);
  max-width: 420px;
  line-height: 1.62;
  font-weight: 400;
  letter-spacing: 0.01em;
  z-index: 2;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
}

/* ─── CTA Actions & Members Widget ─── */
.cta-actions-wrapper {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 3.5vw, 2.2rem);
  flex-wrap: wrap;
  z-index: 2;
  margin-top: 2.8rem;
}

.btn-cta-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: #ffffff !important;
  color: #111118 !important;
  font-weight: 850;
  font-size: 1.05rem;
  padding: 1.15rem 2.3rem;
  border-radius: var(--radius-pill);
  box-shadow: 0 10px 25px -5px rgba(255, 255, 255, 0.25), 0 0 20px rgba(34, 197, 94, 0.25);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.25s ease;
  text-decoration: none;
  letter-spacing: 0.02em;
  will-change: transform, box-shadow;
}

.btn-cta-whatsapp:hover {
  transform: scale(1.03) !important;
  box-shadow:
    0 16px 38px -5px rgba(255, 255, 255, 0.45),
    0 0 32px rgba(34, 197, 94, 0.45),
    0 0 32px rgba(255, 62, 154, 0.35) !important;
  background: #ffffff !important;
  color: #000000 !important;
}

.btn-cta-whatsapp .cta-btn-icon {
  font-size: 1.45rem;
  color: #22c55e;
  filter: drop-shadow(0 0 6px rgba(34, 197, 94, 0.6));
  transition: transform 0.25s ease;
}

.btn-cta-whatsapp:hover .cta-btn-icon {
  transform: scale(1.15) rotate(-6deg);
}

.btn-cta-whatsapp .cta-btn-arrow {
  color: #ff3e9a;
  font-size: 1.15rem;
  transition: transform 0.25s ease;
}

.btn-cta-whatsapp:hover .cta-btn-arrow {
  transform: translateX(5px);
}

.cta-members-widget {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  background: rgba(255, 255, 255, 0.04);
  padding: 0.45rem 1rem 0.45rem 0.5rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.35);
  transition: border-color 0.25s ease, background 0.25s ease;
}

.cta-members-widget:hover {
  border-color: rgba(0, 255, 136, 0.3);
  background: rgba(255, 255, 255, 0.06);
}

.cta-avatar-group {
  display: flex;
  align-items: center;
}

.cta-avatar-group .avatar-circle,
.cta-avatar-group .avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid #08080c;
  margin-left: -10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), z-index 0.2s;
  cursor: pointer;
  position: relative;
}

.cta-avatar-group .avatar-circle:first-child,
.cta-avatar-group .avatar:first-child {
  margin-left: 0;
}

.cta-avatar-group .avatar-circle:hover,
.cta-avatar-group .avatar:hover {
  transform: translateY(-4px) scale(1.15);
  z-index: 10 !important;
}

.av-1 {
  background: linear-gradient(135deg, #ff3e9a, #9333ea);
  z-index: 4;
}

.av-2 {
  background: linear-gradient(135deg, #3b82f6, #06b6d4);
  z-index: 3;
}

.av-3 {
  background: linear-gradient(135deg, #10b981, #059669);
  z-index: 2;
}

.av-4 {
  background: linear-gradient(135deg, #f59e0b, #ea580c);
  z-index: 1;
}

.cta-members-text {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.86rem;
}

.cta-members-text strong {
  color: #ffffff;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.cta-members-text span.label {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

/* ─── WhatsApp Identity & Floating Speech Bubble ─── */
.cta-whatsapp-badge-group {
  position: absolute;
  top: 2.8rem;
  right: clamp(2.5rem, 8vw, 7rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  z-index: 3;
  pointer-events: none;
  animation: floatAvatar 6s ease-in-out infinite 0.6s;
}

.cta-wa-glow-icon {
  font-size: clamp(3.2rem, 5.5vw, 4.5rem);
  color: #22c55e;
  filter: drop-shadow(0 0 20px rgba(34, 197, 94, 0.75)) drop-shadow(0 10px 20px rgba(0, 0, 0, 0.6));
  line-height: 1;
}

.cta-wa-speech {
  background: linear-gradient(135deg, #ff3e9a, #d91c68);
  color: #ffffff;
  font-size: 0.76rem;
  font-weight: 750;
  padding: 0.42rem 0.9rem;
  border-radius: var(--radius-pill);
  box-shadow: 0 6px 20px rgba(255, 62, 154, 0.45), 0 3px 8px rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  gap: 0.45rem;
  white-space: nowrap;
  position: relative;
  letter-spacing: 0.02em;
}

.cta-wa-speech::after {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 0 6px 7px 6px;
  border-style: solid;
  border-color: transparent transparent #fb3090 transparent;
}

/* ─── Mascot Avatar ─── */
.cta-mascot {
  position: absolute;
  bottom: -25px;
  right: clamp(1.5rem, 4vw, 3.5rem);
  width: clamp(210px, 26vw, 300px);
  z-index: 2;
  opacity: 0.94;
  filter:
    drop-shadow(0 20px 35px rgba(0, 255, 136, 0.32)) drop-shadow(0 12px 24px rgba(0, 0, 0, 0.75)) drop-shadow(0 0 25px rgba(255, 62, 154, 0.28));
  animation: floatAvatar 5.5s ease-in-out infinite;
  will-change: transform;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), filter 0.3s ease, opacity 0.3s ease;
}

.cta-mascot:hover {
  transform: translateY(-9px) scale(1.03);
  filter:
    drop-shadow(0 25px 45px rgba(0, 255, 136, 0.45)) drop-shadow(0 15px 30px rgba(0, 0, 0, 0.85)) drop-shadow(0 0 35px rgba(255, 62, 154, 0.42));
  opacity: 1;
}

/* ═══════════════════════════════════════════════════
   LINKS SECTION
   ═══════════════════════════════════════════════════ */
.links-section {
  padding: var(--section-gap) 0;
  content-visibility: auto;
  contain-intrinsic-size: auto 500px;
}

.links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
}

/* ═══════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════ */
.site-footer {
  border-top: 1px solid rgba(255, 62, 154, 0.06);
  padding: 3rem 0 2rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-brand .cursive-md {
  font-size: 1.5rem;
}

.footer-tagline {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.footer-social-icon {
  font-size: 1.25rem;
  color: var(--color-text-secondary);
  transition: all 0.3s var(--ease-out-quart);
}

.footer-social-icon:hover {
  color: var(--color-primary);
  transform: translateY(-3px);
}

.footer-copyright {
  width: 100%;
  text-align: center;
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 62, 154, 0.06);
  font-size: 0.7rem;
  color: var(--color-text-muted);
  font-weight: 600;
  letter-spacing: 0.05em;
}

/* ═══════════════════════════════════════════════════
   SECTION HEADERS
   ═══════════════════════════════════════════════════ */
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.section-header .heading-sm {
  margin-bottom: 0.5rem;
}

.section-link {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: gap 0.3s var(--ease-out-quart);
}

.section-link:hover {
  gap: 0.6rem;
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════ */
@media (max-width: 1200px) {
  .hero-info-panel {
    display: none;
  }

  .about-grid {
    gap: 3rem;
  }
}

@media (max-width: 900px) {
  .nav-center {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .mobile-nav {
    display: flex;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-image-wrapper {
    aspect-ratio: 4/3;
    max-height: 400px;
  }

  .spotlight-card {
    aspect-ratio: 16/9;
  }

  .games-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }

  .cta-mascot {
    display: block;
    width: clamp(160px, 22vw, 210px);
    right: 0.5rem;
    bottom: -18px;
    opacity: 0.85;
    pointer-events: auto;
  }

  .cta-whatsapp-badge-group {
    top: 2rem;
    right: 2rem;
  }

  .cta-wa-speech {
    display: none;
    /* Keep layout clean on tablets */
  }

  .live-schedule-card {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .live-schedule-left {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .live-schedule-desc {
    text-align: center;
  }
}

@media (max-width: 600px) {
  .hero-content {
    padding-top: 5rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .games-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .highlights-grid {
    grid-template-columns: 1fr;
  }

  .links-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-card {
    text-align: left;
    padding: 2.2rem 1.5rem 3.5rem 1.5rem;
  }

  .cta-actions-wrapper {
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 1.25rem;
    margin-top: 2.5rem;
    width: 100%;
  }

  .btn-cta-whatsapp {
    width: fit-content;
    padding: 0.9rem 1.8rem;
    font-size: 0.9rem;
    justify-content: center;
  }

  .cta-whatsapp-badge-group {
    top: 1.5rem;
    right: 1.25rem;
  }

  .cta-wa-glow-icon {
    font-size: 2.4rem;
  }

  .cta-mascot {
    width: 135px;
    right: -8px;
    bottom: -12px;
    opacity: 0.78;
    pointer-events: none;
  }
}

@media (max-width: 400px) {
  .games-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Responsive Video */
@media (min-aspect-ratio: 1/1) {
  .hero-parallax-video {
    object-position: center 30%;
  }
}

@media (max-aspect-ratio: 1/1) {
  .hero-parallax-video {
    object-position: center center;
  }
}

/* ═══════════════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════════════ */
@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.5);
    opacity: 0.5;
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% center;
  }

  100% {
    background-position: 200% center;
  }
}