/* ═══════════════════════════════════════════════════════════════
   ETM GAMES — Futuristic Gaming Portfolio CSS
   Design: Glassmorphism · Neon · Cyberpunk · Premium
   ═══════════════════════════════════════════════════════════════ */

/* ─── FONTS ─── */
@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400&display=swap');

/* ─── DESIGN TOKENS ─── */
:root {
  /* Core Colors */
  --col-bg: #ffffff;
  --col-surface: rgba(255, 255, 255, 0.92);
  --col-glass: rgba(255, 255, 255, 0.86);
  --col-glass-border: rgba(15, 23, 42, 0.1);
  --col-text: #0f172a;
  --col-muted: #64748b;

  /* Neon Palette */
  --neon-cyan: #0284c7;
  --neon-violet: #4f46e5;
  --neon-pink: #db2777;
  --neon-orange: #f97316;
  --neon-green: #10b981;

  /* Gradients */
  --grad-primary: linear-gradient(135deg, var(--neon-cyan), var(--neon-violet));
  --grad-secondary: linear-gradient(135deg, var(--neon-orange), var(--neon-pink));
  --grad-hero-mesh:
    radial-gradient(ellipse 80% 60% at 20% 50%, rgba(124, 58, 237, 0.35) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 80% 30%, rgba(0, 245, 255, 0.2) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 60% 80%, rgba(249, 115, 22, 0.15) 0%, transparent 50%);

  /* Typography */
  --font-base: 'Nunito', system-ui, sans-serif;
  --font-display: 'Nunito', var(--font-base);

  /* Spacing */
  --sp-xs: 0.5rem;
  --sp-sm: 1rem;
  --sp-md: 1.5rem;
  --sp-lg: 2.5rem;
  --sp-xl: 2rem;
  --sp-2xl: 3rem;

  /* Radius */
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-pill: 999px;

  /* Transitions */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --t-fast: 0.2s var(--ease-out);
  --t-med: 0.4s var(--ease-out);
  --t-slow: 0.7s var(--ease-out);

  /* Shadows */
  --shadow-neon-cyan: 0 10px 28px rgba(2, 132, 199, 0.18);
  --shadow-neon-violet: 0 10px 28px rgba(79, 70, 229, 0.18);
  --shadow-card: 0 14px 40px rgba(15, 23, 42, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

/* ─── RESET ─── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

html {
  scroll-behavior: smooth;
  font-size: 16px
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  font-family: var(--font-base);
  color: var(--col-text);
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 42%, #ffffff 100%);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
/* Ensure main content expands */
body > *:not(footer) {
  flex: 1;
}

img {
  max-width: 100%;
  display: block
}

a {
  color: inherit;
  text-decoration: none
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font: inherit
}

ul {
  list-style: none
}

.integration-content ul {
  list-style: none;
  padding-left: 0;
}

.integration-content ul li {
  display: flex;
  align-items: flex-start;
}

.integration-content ul li::before {
  content: "★";
  margin-right: 0.6rem;
  color: var(--neon-cyan);
}

input {
  font: inherit
}

/* ─── CANVAS BG ─── */
#particle-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

/* ─── CURSOR ─── */
#cursor-dot {
  position: fixed;
  width: 8px;
  height: 8px;
  background: var(--neon-cyan);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s, background 0.2s;
  box-shadow: var(--shadow-neon-cyan);
}

#cursor-ring {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(0, 245, 255, 0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.18s var(--ease-out),
    width 0.3s, height 0.3s, border-color 0.3s;
}

body.cursor-hover #cursor-dot {
  transform: translate(-50%, -50%) scale(0);
}

body.cursor-hover #cursor-ring {
  width: 56px;
  height: 56px;
  border-color: var(--neon-cyan);
  background: rgba(0, 245, 255, 0.08);
}

/* Cursor trail effect */
.cursor-trail {
  position: fixed;
  width: 20px;
  height: 20px;
  background: var(--neon-cyan);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9997;
  transform: translate(-50%, -50%);
  opacity: 0.6;
  animation: trail-fade 0.6s forwards;
}

@keyframes trail-fade {
  from {
    opacity: 0.6;
    transform: translate(-50%, -50%) scale(1);
  }

  to {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.5);
  }
}

/* ─── LAYOUT ─── */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--sp-lg);
  position: relative;
  z-index: 1;
}

/* ─── GLASS CARD ─── */
.glass-card {
  background: var(--col-glass);
  border: 1px solid var(--col-glass-border);
  border-radius: var(--r-lg);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  box-shadow: var(--shadow-card);
  padding: var(--sp-lg);
}

/* ─── GRADIENT TEXT ─── */
.gradient-text {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-2 {
  background: var(--grad-secondary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── SCROLL REVEAL ─── */
[data-sr] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity var(--t-slow), transform var(--t-slow);
}

[data-sr="fade-down"] {
  transform: translateY(-40px)
}

[data-sr="fade-right"] {
  transform: translateX(-60px)
}

[data-sr="fade-left"] {
  transform: translateX(60px)
}

[data-sr].sr-visible {
  opacity: 1;
  transform: translate(0);
}

/* ─── NAV ─── */
#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: linear-gradient(180deg, #0a0f1e 0%, #060b18 100%);
  border-top: 1px solid rgba(0, 245, 255, 0.12);
  padding: 1rem 0;
  transition: background 0.4s, box-shadow 0.4s, padding 0.4s;
}

#nav.scrolled {
  background: rgba(5, 5, 8, 0.85);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06);
  padding: 0.6rem 0;
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--sp-lg);
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.logo-icon {
  max-height: 2rem;
  width: auto;
  /* Preserve gradient text effect if used for SVG/text logos */
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo-accent {
  color: var(--neon-cyan)
}

.nav-links {
  display: flex;
  gap: 0.25rem;
  margin-left: auto;
}

.nav-link {
  padding: 0.45rem 0.85rem;
  border-radius: var(--r-sm);
  font-size: 0.9rem;
  font-weight: 500;
  color: white;
  transition: color var(--t-fast), background var(--t-fast);
}

.nav-link:hover {
  color: var(--col-text);
  background: rgba(255, 255, 255, 0.989);
}

.nav-actions {
  display: flex;
  gap: 0.75rem;
  align-items: center
}

/* ─── BUTTONS ─── */
/* ─── VIDEO SECTION STYLES ─── */
.video-section {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: var(--sp-lg);
  margin: var(--sp-xl) 0;
}

.video-left {
  flex: 0 0 513.29px;
  /* fixed small width */
  height: 524.16px;
  /* maintain 16:9 approx */
  overflow: hidden;
  border-radius: var(--r-sm);
}

width: 100%;
height: 100%;
object-fit: cover;
/* crop */
}

.video-right {
  flex: 1;
}

.video-right h2 {
  margin-top: 0;
  font-size: 1.5rem;
  color: var(--col-text);
}

/* Centered larger video for How Does section */
.video-section.centered {
  justify-content: center;
  margin: 4rem 0;
  position: relative;
  z-index: 2;
}

.video-section.centered video.video-cropped.larger-video {
  width: 720px;
  max-width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  pointer-events: auto;
  position: relative;
  z-index: 3;
}

.video-right p {
  margin-top: 0.5rem;
  font-size: 1rem;
  color: var(--col-muted);
}

@media (max-width: 768px) {
  .video-section {
    flex-direction: column;
    align-items: center;
  }

  .video-left {
    width: 100%;
    flex: none;
    height: auto;
  }
}

.btn-ghost {
  padding: 0.5rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--r-sm);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--col-text);
  transition: border-color var(--t-fast), background var(--t-fast), transform var(--t-fast);
}

.btn-ghost:hover {
  border-color: var(--neon-cyan);
  background: rgba(0, 245, 255, 0.08);
  transform: translateY(-1px);
}

.btn-primary {
  padding: 0.55rem 1.25rem;
  border-radius: var(--r-sm);
  background: var(--grad-primary);
  font-size: 0.88rem;
  font-weight: 700;
  color: #fff;
  transition: transform var(--t-fast), box-shadow var(--t-fast), opacity var(--t-fast);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--neon-violet), var(--neon-cyan));
  opacity: 0;
  transition: opacity var(--t-fast);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-neon-violet);
}

.btn-primary:hover::before {
  opacity: 1
}

.btn-primary span {
  position: relative;
  z-index: 1
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border: 1.5px solid rgba(0, 245, 255, 0.4);
  border-radius: var(--r-pill);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--neon-cyan);
  transition: background var(--t-fast), border-color var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast);
}

.btn-outline:hover {
  background: rgba(0, 245, 255, 0.08);
  border-color: var(--neon-cyan);
  transform: translateY(-2px);
  box-shadow: var(--shadow-neon-cyan);
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.9rem 2rem;
  background: var(--grad-primary);
  border-radius: var(--r-pill);
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  position: relative;
  overflow: hidden;
  transition: transform var(--t-fast), box-shadow var(--t-fast);
}

.btn-hero-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad-secondary);
  opacity: 0;
  transition: opacity var(--t-med);
}

.btn-hero-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 40px rgba(124, 58, 237, 0.5);
}

.btn-hero-primary:hover::after {
  opacity: 1
}

.btn-hero-primary>* {
  position: relative;
  z-index: 1
}

.btn-hero-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.9rem 2rem;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--r-pill);
  font-weight: 600;
  font-size: 1rem;
  color: var(--col-text);
  transition: border-color var(--t-fast), background var(--t-fast), transform var(--t-fast);
}

.btn-hero-ghost:hover {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-2px);
}

.play-circle {
  width: 36px;
  height: 36px;
  background: var(--grad-primary);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}

.btn-large {
  padding: 0.85rem 2rem;
  font-size: 1rem;
  border-radius: var(--r-pill);
}

.btn-full {
  width: 100%;
  justify-content: center;
  margin-top: var(--sp-sm)
}

.mt-2 {
  margin-top: var(--sp-md)
}

/* ─── HAMBURGER ─── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  margin-left: auto;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--col-text);
  border-radius: 2px;
  transition: transform var(--t-fast), opacity var(--t-fast);
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg)
}

.hamburger.open span:nth-child(2) {
  opacity: 0
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg)
}

/* ─── MOBILE MENU ─── */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(5, 5, 8, 0.97);
  backdrop-filter: blur(20px);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-med);
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center
}

.mobile-menu .nav-link {
  font-size: 1.4rem;
  font-weight: 600;
  padding: 0.5rem 1rem
}

/* ─── SECTION SHARED ─── */

.section-header {
  text-align: center;
  margin-bottom: calc(var(--sp-xl) * 0.01);
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  margin-bottom: var(--sp-sm);
}

.section-header p {
  color: var(--col-muted);
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto;
}

.section-tag {
  display: inline-block;
  padding: 0.35rem 1rem;
  border: 1px solid rgba(0, 245, 255, 0.3);
  border-radius: var(--r-pill);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--neon-cyan);
  margin-bottom: var(--sp-sm);
  background: rgba(0, 245, 255, 0.06);
}

/* ════════════════════════════════
   HERO
   ════════════════════════════════ */

/* ════════════════════════════════
   AD FORMATS
   ════════════════════════════════ */

.section-ad-formats {
  position: relative;
  z-index: 1;
}

.ad-formats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: var(--sp-xl);
}

.ad-format-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--col-glass);
  border: 1px solid var(--col-glass-border);
  box-shadow: var(--shadow-card);
  transition: transform var(--t-med), box-shadow var(--t-med), border-color var(--t-med);
  line-height: normal;
}

.ad-format-card:hover {
  transform: translateY(-6px);
  border-color: rgba(2, 132, 199, 0.5);
  box-shadow: var(--shadow-neon-cyan);
}

/* ── Image Wrapper ── */
.ad-format-img-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: rgba(0, 167, 216, 0.05);
  border-bottom: 1px solid var(--col-glass-border);
}

.ad-format-img-wrap img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  transition: transform 0.5s ease;
}

.ad-format-card:hover .ad-format-img-wrap img {
  transform: scale(1.03);
}

/* ── Card Body ── */
.ad-format-body {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding: 1.5rem 1.5rem 1.75rem;
  flex: 1;
}

.ad-format-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: rgba(2, 132, 199, 0.15);
  border: 1px solid rgba(2, 132, 199, 0.35);
  border-radius: 999px;
  color: #38bdf8;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  width: fit-content;
}

.ad-format-body h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--col-text-primary, #030506);
  margin: 0;
  line-height: 1.3;
}

.ad-format-body p {
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--col-text-muted, #94a3b8);
  margin: 0;
}

@media (max-width: 900px) {
  .ad-formats-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* ─── INTEGRATION SECTION ─── */
.section-integration .integration-content ul {
  list-style: none;
  padding: 0;
  margin: var(--sp-sm) 0;
}

.section-integration .integration-content ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: var(--sp-sm);
  line-height: 1.4;
}

.section-integration .container {
  background: var(--col-glass);
  border: 1px solid var(--col-glass-border);
  border-radius: var(--r-lg);
  padding: var(--sp-lg);
  box-shadow: var(--shadow-card);
  margin-bottom: var(--sp-xl);
}

/* Integration Flex Layout */
.integration-flex {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-lg);
  align-items: center;
}

.integration-video video {
  width: 100%;
  height: auto;
  border-radius: var(--r-sm);
}

.integration-text ul {
  list-style: none;
  padding-left: 0;
}

.section-integration .integration-content ul li::before {
  content: "➤";
  display: inline-block;
  margin-right: 0.6rem;
  color: var(--neon-cyan);
  font-size: 1rem;
  line-height: 1;
}

.section-integration .elementor-widget-heading h5 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: var(--sp-sm);
  color: var(--col-text);
}

.section-integration .elementor-widget-text-editor p {
  margin: 0;
}

/* Modern bullet list */
.modern-bullets {
  display: flex;
  flex-direction: column;
  gap: var(--sp-md);
  padding: var(--sp-lg);
  background: var(--col-glass);
  border: 1px solid var(--col-glass-border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-card);
}

.modern-bullets li {
  position: relative;
  padding-left: 2rem;
  font-size: 1.1rem;
  line-height: 1.5;
  color: var(--col-text);
}

.modern-bullets li::before {
  content: '\2022';
  position: absolute;
  left: 0;
  top: 0.2rem;
  font-size: 2rem;
  line-height: 1;
  color: var(--neon-cyan);
  transform: rotate(15deg);
}


#hero {
  position: relative;
  isolation: isolate;
  min-height: 78vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 130px var(--sp-xl) 4rem;
  width: 100%;
  max-width: none;
  margin: 0 auto;
  z-index: 1;
  overflow: hidden;
}

#hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 120%;
  background-image: url('../images/bg1.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.72;
  animation: heroImageDrift 34s linear infinite alternate;
  will-change: transform;
  pointer-events: none;
}

#hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.82) 0%, rgba(255, 255, 255, 0.68) 44%, rgba(255, 255, 255, 0.36) 100%),
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.48), rgba(255, 255, 255, 0.08) 64%, rgba(255, 255, 255, 0.56) 100%);
  pointer-events: none;
}

#hero .hero-grid-overlay::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  z-index: 2;
  height: 140px;
  background: linear-gradient(180deg, transparent, #fff 88%);
  pointer-events: none;
}

@keyframes heroImageDrift {
  0% {
    transform: translateX(0)
  }

  100% {
    transform: translateX(-16%)
  }
}

.hero-bg-mesh {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 48% 42% at 22% 35%, rgba(2, 132, 199, 0.16), transparent 68%),
    radial-gradient(ellipse 42% 40% at 82% 34%, rgba(79, 70, 229, 0.13), transparent 68%);
  mix-blend-mode: multiply;
  opacity: 0.75;
  pointer-events: none;
}

.hero-aurora {
  position: absolute;
  top: -20%;
  left: -10%;
  width: 80%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(79, 70, 229, 0.12), transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
  animation: auroraFloat 12s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes auroraFloat {
  0% {
    transform: translate(0, 0) scale(1)
  }

  100% {
    transform: translate(8%, 5%) scale(1.15)
  }
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 2;
  opacity: 0.45;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent);
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: rgba(0, 245, 255, 0.08);
  border: 1px solid rgba(0, 245, 255, 0.25);
  border-radius: var(--r-pill);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--neon-cyan);
  margin-bottom: 1.5rem;
}

.badge-dot {
  width: 7px;
  height: 7px;
  background: var(--neon-cyan);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--neon-cyan);
  animation: pulse 2s ease infinite;
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 0 6px var(--neon-cyan)
  }

  50% {
    box-shadow: 0 0 18px var(--neon-cyan), 0 0 32px rgba(0, 245, 255, 0.4)
  }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  color: #0b1220;
  text-shadow: 0 2px 18px rgba(255, 255, 255, 0.95);
}

.title-line {
  display: block
}

.hero-sub {
  color: #334155;
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 650px;
  margin-bottom: 2rem;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 1px 12px rgba(255, 255, 255, 0.9);
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 0;
}

.hero-stats-band {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 var(--sp-md) 3rem;
  margin-top: -2rem;
}

.hero-stats-ad {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  width: min(1080px, 100%);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.1);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  width: min(1080px, 100%);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.1);
}

.hero-stat {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 132px;
  padding: 1.4rem 1rem;
  text-align: center;
}

.hero-stat:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 24px;
  right: 0;
  bottom: 24px;
  width: 1px;
  background: rgba(15, 23, 42, 0.1);
}

.stat-value {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.18rem;
  margin-bottom: 0.35rem;
}

.stat-n {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1;
  font-weight: 900;
  color: var(--col-text);
}

.stat-suffix {
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 1.5vw, 1.3rem);
  font-weight: 900;
  color: var(--neon-cyan);
}

.stat-n+span {
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 1.5vw, 1.3rem);
  font-weight: 900;
  color: var(--neon-cyan);
}

.stat-l {
  font-size: 0.78rem;
  color: var(--col-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.hero-stat-divider {
  display: none
}

/* Hero Visual / Dashboard */
.hero-visual {
  position: relative;
  z-index: 2;
}

.hero-dashboard {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.dashboard-card {
  background: rgba(15, 15, 25, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r-lg);
  padding: 1.1rem;
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
  transition: transform var(--t-med), box-shadow var(--t-med);
}

.dashboard-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--grad-primary);
  opacity: 0.6;
}

.dashboard-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-neon-cyan);
}

.dc-label {
  font-size: 0.72rem;
  color: var(--col-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.35rem
}

.dc-value {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--col-text);
  margin-bottom: 0.5rem
}

.dc-chart svg {
  height: 40px;
  width: 100%;
  display: block
}

.dc-badge {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  border-radius: var(--r-pill);
  font-size: 0.72rem;
  font-weight: 700;
  margin-top: 0.4rem;
}

.dc-badge.green {
  background: rgba(16, 185, 129, 0.15);
  color: #10b981;
  border: 1px solid rgba(16, 185, 129, 0.25)
}

.dc-badge.blue {
  background: rgba(0, 245, 255, 0.1);
  color: var(--neon-cyan);
  border: 1px solid rgba(0, 245, 255, 0.2)
}

/* Session dots */
.session-dots {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  margin: 0.5rem 0
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--neon-cyan);
  opacity: 0.5;
  animation: dotBlink 2s ease infinite;
}

.dot.a1 {
  opacity: 1;
  animation-delay: 0s
}

.dot.a2 {
  opacity: 0.8;
  animation-delay: 0.3s
}

.dot.a3 {
  opacity: 0.9;
  animation-delay: 0.6s
}

.dot.a4 {
  opacity: 0.6;
  animation-delay: 0.9s
}

.dot.a5 {
  opacity: 0.4;
  animation-delay: 1.2s
}

.dot.a6 {
  opacity: 0.7;
  animation-delay: 1.5s
}

@keyframes dotBlink {

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

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

/* Game preview mini */
.game-preview-mini {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0.4rem 0 0.6rem
}

.game-thumb {
  font-size: 1.8rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center
}

.game-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--col-text)
}

.game-plays {
  font-size: 0.72rem;
  color: var(--col-muted)
}

.mini-progress {
  height: 3px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 3px;
  overflow: hidden;
  margin-top: 0.5rem
}

.mini-bar {
  height: 100%;
  background: var(--grad-primary);
  border-radius: 3px
}

/* Geo grid */
.geo-grid {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-top: 0.5rem
}

.geo-item {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--col-muted);
  padding: 0.2rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.geo-item span {
  color: var(--neon-cyan);
  font-weight: 600
}

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(var(--neon-cyan), transparent);
  animation: scrollPulse 2s ease infinite;
}

@keyframes scrollPulse {

  0%,
  100% {
    opacity: 0.3;
    transform: scaleY(0.8)
  }

  50% {
    opacity: 1;
    transform: scaleY(1)
  }
}

.hero-scroll-hint span {
  font-size: 0.7rem;
  color: var(--col-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ════════════════════════════════
   TRUST STRIP
   ════════════════════════════════ */
.trust-strip {
  position: relative;
  z-index: 1;
  padding: 1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
}

.trust-label {
  text-align: center;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--col-muted);
  margin-bottom: 1.5rem;
}

.trust-logos {
  overflow: hidden
}

.logo-track {
  display: flex;
  gap: 2rem;
  align-items: center;
  animation: logoScroll 20s linear infinite;
  width: max-content;
}

.logo-track img {
  height: 34px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
  filter: grayscale(1) contrast(0.9);
  opacity: 0.78;
  transition: opacity var(--t-fast), filter var(--t-fast), transform var(--t-fast);
}

.logo-track img:hover {
  opacity: 1;
  filter: none;
  transform: translateY(-1px);
}

@keyframes logoScroll {
  0% {
    transform: translateX(0)
  }

  100% {
    transform: translateX(-50%)
  }
}

/* ════════════════════════════════
   WHY SECTION — BENTO GRID
   ════════════════════════════════ */
.section-why {
  position: relative;
  z-index: 1;
  padding: var(--sp-2xl) 0;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1.25rem;
}

.bento-card {
  background: var(--col-glass);
  border: 1px solid var(--col-glass-border);
  border-radius: var(--r-lg);
  backdrop-filter: blur(16px);
  padding: 1.75rem;
  position: relative;
  overflow: hidden;
  transition: transform var(--t-med), box-shadow var(--t-med), border-color var(--t-med);
}

.bento-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--glow-color, transparent);
  opacity: 0;
  transition: opacity var(--t-med);
  border-radius: inherit;
}

.bento-card:hover {
  transform: translateY(-6px);
  border-color: var(--glow-border, rgba(255, 255, 255, 0.2));
}

.bento-card:hover::before {
  opacity: 1
}

.feature-glow-blue {
  --glow-color: rgba(0, 245, 255, 0.05);
  --glow-border: rgba(0, 245, 255, 0.3)
}

.feature-glow-pink {
  --glow-color: rgba(240, 171, 252, 0.05);
  --glow-border: rgba(240, 171, 252, 0.3)
}

.feature-glow-green {
  --glow-color: rgba(16, 185, 129, 0.05);
  --glow-border: rgba(16, 185, 129, 0.3)
}

.feature-glow-orange {
  --glow-color: rgba(249, 115, 22, 0.05);
  --glow-border: rgba(249, 115, 22, 0.3)
}

.bento-large {
  grid-column: span 2
}

.bento-wide {
  grid-column: span 2
}

.bento-icon {
  font-size: 2rem;
  margin-bottom: 1rem
}

.bento-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--col-text);
}

.bento-card p {
  font-size: 0.9rem;
  color: var(--col-muted);
  line-height: 1.65
}

.bento-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--neon-cyan);
  transition: gap var(--t-fast);
}

.bento-link:hover {
  gap: 0.7rem
}

/* Game mini cards (large bento) */
.bento-visual-games {
  display: flex;
  gap: 0.5rem;
  margin-top: 1.25rem;
  flex-wrap: wrap;
}

.mini-game-card {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  transition: transform var(--t-fast), background var(--t-fast);
  animation: floatCard 4s ease-in-out infinite;
  animation-delay: calc(var(--d)*0.4s);
}

.mini-game-card:hover {
  transform: scale(1.2);
  background: rgba(0, 245, 255, 0.1)
}

@keyframes floatCard {

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

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

/* Revenue bars */
.revenue-bars {
  display: flex;
  gap: 0.6rem;
  align-items: flex-end;
  height: 70px;
  margin-top: 1.25rem;
}

.rev-bar {
  flex: 1;
  background: var(--c, var(--neon-cyan));
  height: var(--h, 50%);
  border-radius: 4px 4px 0 0;
  font-size: 0.65rem;
  color: #fff;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 4px;
  transition: height 1s var(--ease-out);
  opacity: 0.85;
}

.rev-bar:hover {
  opacity: 1;
  filter: brightness(1.2)
}

/* Code snippet */
.code-snippet {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r-sm);
  padding: 0.75rem 1rem;
  margin-top: 1.25rem;
  font-family: 'Courier New', monospace;
  font-size: 0.8rem;
  color: var(--neon-green);
  overflow: auto;
}

/* Analytics mini */
.analytics-mini {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 1rem
}

.am-bar {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 0.5rem;
  align-items: center;
  font-size: 0.78rem;
  color: var(--col-muted)
}

.amb {
  height: 4px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  overflow: hidden;
  position: relative
}

.amb::after {
  content: '';
  position: absolute;
  inset: 0;
  width: var(--w, 0%);
  background: var(--grad-primary);
  border-radius: 4px;
  transition: width 1.5s var(--ease-out);
}

.am-bar b {
  color: var(--col-text);
  font-size: 0.82rem
}

/* Targeting pills */
.targeting-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem
}

.targeting-pills span {
  padding: 0.3rem 0.8rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--r-pill);
  font-size: 0.78rem;
  color: var(--col-text);
  transition: background var(--t-fast), border-color var(--t-fast);
}

.targeting-pills span:hover {
  background: rgba(124, 58, 237, 0.15);
  border-color: var(--neon-violet)
}

/* ════════════════════════════════
   TIMELINE — PUBLISHER JOURNEY
   ════════════════════════════════ */
.section-timeline {
  position: relative;
  z-index: 1;
  padding: var(--sp-2xl) 0;
  background: linear-gradient(180deg, transparent, rgba(124, 58, 237, 0.05), transparent);
}

.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 0;
}

.timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--neon-violet), var(--neon-cyan), transparent);
  transform: translateX(-50%);
}

.timeline-line::before,
.timeline-line::after {
  content: '';
  position: absolute;
  left: -3px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--neon-cyan);
  box-shadow: var(--shadow-neon-cyan);
}

.timeline-line::before {
  top: 0
}

.timeline-line::after {
  bottom: 0
}

.timeline-item {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: center;
  margin-bottom: 1.5rem;
  position: relative;
}

.tl-left .tl-content {
  grid-column: 1;
  text-align: justify;
  text-align-last: left
}

.tl-left .tl-dot {
  grid-column: 2
}

.tl-left .tl-visual {
  grid-column: 3
}

.tl-right .tl-visual {
  grid-column: 1
}

.tl-right .tl-dot {
  grid-column: 2
}

.tl-right .tl-content {
  grid-column: 3;
  text-align: justify;
  text-align-last: left
}

.tl-dot {
  width: 16px;
  height: 16px;
  background: var(--neon-cyan);
  border-radius: 50%;
  box-shadow: var(--shadow-neon-cyan);
  z-index: 2;
  position: relative;
  flex-shrink: 0;
}

.tl-dot::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid rgba(0, 245, 255, 0.3);
  animation: dotRing 2s ease infinite;
}

@keyframes dotRing {
  0% {
    transform: scale(1);
    opacity: 1
  }

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

.tl-content {
  background: var(--col-glass);
  border: 1px solid var(--col-glass-border);
  border-radius: var(--r-lg);
  backdrop-filter: blur(16px);
  padding: 1.5rem;
  transition: transform var(--t-med), box-shadow var(--t-med);
}

.tl-content:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-neon-cyan);
}

.tl-num {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--neon-cyan);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  opacity: 0.7;
}

.tl-content h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--col-text);
  text-align: justify;
  text-align-last: left;
}

.tl-content p {
  font-size: 0.88rem;
  color: var(--col-muted);
  line-height: 1.65;
  text-align: justify;
  text-align-last: left;
}

.tl-visual {
  position: relative;
  min-height: 230px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--r-lg);
  background:
    radial-gradient(circle at 22% 20%, rgba(0, 245, 255, 0.16), transparent 34%),
    radial-gradient(circle at 78% 74%, rgba(124, 58, 237, 0.18), transparent 38%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025));
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  isolation: isolate;
}

.tl-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(110deg, transparent 20%, rgba(255, 255, 255, 0.14) 42%, transparent 64%);
  transform: translateX(-120%);
  animation: tlImageLoading 1.35s ease-in-out infinite;
}

.tl-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(5, 8, 20, 0), rgba(5, 8, 20, 0.22));
  mix-blend-mode: soft-light;
}

.tl-visual.is-loaded::before {
  opacity: 0;
  animation: none
}

.tl-visual img {
  width: 100%;
  height: 100%;
  min-height: 230px;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.04);
  filter: saturate(0.96) contrast(0.98);
  mix-blend-mode: screen;
  transition: opacity 0.55s ease, transform 0.75s ease, filter 0.55s ease;
}

.tl-visual.is-loaded img {
  opacity: 0.86;
  transform: scale(1);
}

.tl-visual:hover img {
  filter: saturate(1.08) contrast(1.04);
}

@keyframes tlImageLoading {
  100% {
    transform: translateX(120%)
  }
}

.tl-list {
  margin-top: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.tl-list li {
  font-size: 0.82rem;
  color: var(--col-muted)
}

.tl-metric {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
  justify-content: flex-start;
}

.tl-left .tl-metric {
  justify-content: flex-end
}

.metric-box {
  padding: 0.6rem 1rem;
  background: rgba(0, 245, 255, 0.07);
  border: 1px solid rgba(0, 245, 255, 0.2);
  border-radius: var(--r-sm);
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--neon-cyan);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.metric-box span {
  font-size: 0.68rem;
  color: var(--col-muted);
  font-family: var(--font-base);
  font-weight: 400;
  margin-top: 0.2rem
}

.tl-cta {
  text-align: center;
  margin-top: 2rem
}

/* ════════════════════════════════
   GAMES SHOWCASE
   ════════════════════════════════ */
.section-games {
  position: relative;
  z-index: 1;
  padding: var(--sp-2xl) 0;
}

.games-filter {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.filter-btn {
  padding: 0.45rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--r-pill);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--col-muted);
  transition: all var(--t-fast);
  background: rgba(255, 255, 255, 0.03);
}

.filter-btn:hover,
.filter-btn.active {
  border-color: var(--neon-cyan);
  color: var(--neon-cyan);
  background: rgba(0, 245, 255, 0.08);
}

.new-games-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.game-card {
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--col-glass);
  border: 1px solid var(--col-glass-border);
  transition: transform var(--t-med), box-shadow var(--t-med);
  cursor: pointer;
}

.game-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(0, 245, 255, 0.2);
}

.game-card-thumb {
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.game-emoji {
  font-size: 3.5rem;
  filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));
  transition: transform var(--t-med)
}

.game-card:hover .game-emoji {
  transform: scale(1.15)
}

.game-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--t-fast);
}

.game-card:hover .game-card-overlay {
  opacity: 1
}

.play-btn {
  padding: 0.7rem 1.5rem;
  background: var(--grad-primary);
  border-radius: var(--r-pill);
  font-weight: 700;
  font-size: 0.9rem;
  color: #fff;
  transition: transform var(--t-fast), box-shadow var(--t-fast);
}

.play-btn:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-neon-violet)
}

.game-featured-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.3rem 0.7rem;
  background: linear-gradient(90deg, var(--neon-orange), var(--neon-pink));
  border-radius: var(--r-pill);
  font-size: 0.72rem;
  font-weight: 700;
  color: #fff;
}

.featured-game {
  box-shadow: 0 0 0 1px rgba(249, 115, 22, 0.25);
}

.game-card-info {
  padding: 1rem
}

.game-card-info h4 {
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 0.35rem;
  color: var(--col-text)
}

.game-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem
}

.genre-tag {
  padding: 0.2rem 0.6rem;
  background: rgba(124, 58, 237, 0.15);
  border: 1px solid rgba(124, 58, 237, 0.25);
  border-radius: var(--r-pill);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--neon-pink);
}

.plays {
  font-size: 0.78rem;
  color: var(--col-muted)
}

.games-cta {
  text-align: center;
  margin-top: 3rem
}

/* ════════════════════════════════
   REVENUE CALCULATOR
   ════════════════════════════════ */
.section-calculator {
  position: relative;
  z-index: 1;
  padding: var(--sp-2xl) 0;
  overflow: hidden;
}

.calc-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 10% 50%, rgba(0, 245, 255, 0.07), transparent),
    radial-gradient(ellipse 50% 70% at 90% 50%, rgba(124, 58, 237, 0.07), transparent);
  pointer-events: none;
}

.calc-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-xl);
  align-items: start;
  position: relative;
}

.calc-left .section-tag {
  display: block;
  margin-bottom: 1rem
}

.calc-left h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.calc-left p {
  color: var(--col-muted);
  font-size: 1rem;
  margin-bottom: 2rem
}

.calc-inputs {
  display: flex;
  flex-direction: column;
  gap: 1.5rem
}

.calc-field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--col-muted);
  margin-bottom: 0.75rem
}

.range-wrapper {
  display: flex;
  align-items: center;
  gap: 1rem
}

.calc-range {
  flex: 1;
  -webkit-appearance: none;
  appearance: none;
  height: 4px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  outline: none;
  cursor: pointer;
}

.calc-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--grad-primary);
  cursor: pointer;
  box-shadow: var(--shadow-neon-cyan);
  transition: transform var(--t-fast);
}

.calc-range::-webkit-slider-thumb:hover {
  transform: scale(1.3)
}

.range-val {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--neon-cyan);
  min-width: 70px;
  text-align: right;
}

.calc-result {
  position: sticky;
  top: 100px;
  text-align: center;
  padding: 2.5rem;
}

.result-label {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--col-muted);
  margin-bottom: 1rem
}

.result-value {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 900;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
  transition: all 0.4s var(--ease-spring);
}

.logo-icon {
  max-height: 2rem;
  width: auto;
}

.result-breakdown {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  text-align: left;
}

.rb-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.88rem;
  color: var(--col-muted);
}

.rb-val {
  font-weight: 700;
  color: var(--col-text)
}

.result-note {
  font-size: 0.72rem;
  color: var(--col-muted);
  margin-bottom: 1.5rem
}

.section-calculator .calculator {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: var(--sp-lg);
  align-items: start;
  padding: clamp(1.25rem, 3vw, 2.5rem);
  overflow: visible;
}

.calc-intro .section-tag {
  display: block;
  margin-bottom: 1rem
}

.calc-intro h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.calc-intro>p {
  color: var(--col-muted);
  font-size: 1rem;
  margin-bottom: 2rem;
  max-width: 52ch;
}

.filter-row {
  margin-bottom: 1.35rem
}

.filter-label {
  margin: 0 0 0.65rem;
  color: var(--col-muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.custom-dropdown {
  position: relative;
  z-index: 5
}

.dropdown-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 54px;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  color: var(--col-text);
  cursor: pointer;
  transition: border-color var(--t-fast), box-shadow var(--t-fast), background var(--t-fast);
}

.dropdown-trigger:hover,
.dropdown-trigger.open {
  border-color: rgba(0, 245, 255, 0.45);
  background: rgba(0, 245, 255, 0.07);
  box-shadow: 0 0 24px rgba(0, 245, 255, 0.12);
}

.trigger-text {
  font-weight: 700
}

.dropdown-arrow {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: var(--neon-cyan);
  transition: transform var(--t-fast);
}

.dropdown-trigger.open .dropdown-arrow {
  transform: rotate(180deg)
}

.dropdown-options {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 8px);
  z-index: 20;
  display: none;
  margin: 0;
  padding: 0.45rem;
  list-style: none;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
}

.dropdown-options.open {
  position: relative;
  top: auto;
  display: block;
  margin-top: 8px;
}

.dropdown-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-height: 44px;
  padding: 0.7rem 0.75rem;
  border-radius: 6px;
  color: #334155;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--t-fast), color var(--t-fast);
}

.dropdown-option:hover {
  background: #f1f5f9;
  color: #0f172a
}

.dropdown-option.selected {
  color: #0f172a;
  background: #e0f7ff
}

.option-checkbox {
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border: 1px solid rgba(15, 23, 42, 0.18);
  border-radius: 5px;
  color: transparent;
  font-size: 0;
}

.dropdown-option.selected .option-checkbox {
  border-color: var(--neon-cyan);
  background: var(--grad-primary);
  box-shadow: 0 0 16px rgba(0, 245, 255, 0.24);
}

.dropdown-option.selected .option-checkbox::before {
  content: "";
  width: 9px;
  height: 5px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg) translateY(-1px);
}

.dau-input-box,
.pct-input {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--col-text);
  font: inherit;
  font-weight: 800;
  outline: none;
}

.dau-input-box {
  width: 100%;
  min-height: 54px;
  padding: 0.9rem 1rem;
  margin-bottom: 1.2rem;
}

.dau-input-box:focus,
.pct-input:focus {
  border-color: var(--neon-cyan);
  box-shadow: 0 0 0 3px rgba(0, 245, 255, 0.12)
}

.slider-track-wrap {
  position: relative;
  padding-top: 2.2rem
}

.slider-tooltip {
  position: absolute;
  top: 0;
  left: 0;
  transform: translateX(-50%);
  min-width: 76px;
  padding: 0.35rem 0.5rem;
  border-radius: 6px;
  background: var(--grad-primary);
  color: white;
  font-size: 0.76rem;
  font-weight: 900;
  text-align: center;
  box-shadow: var(--shadow-neon-cyan);
  pointer-events: none;
}

.range-slider {
  width: 100%;
  height: 5px;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--neon-cyan) 0 var(--fill, 0%), rgba(255, 255, 255, 0.12) var(--fill, 0%) 100%);
  outline: none;
  cursor: pointer;
}

.range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border: 3px solid #fff;
  border-radius: 50%;
  background: var(--neon-cyan);
  box-shadow: var(--shadow-neon-cyan);
}

.range-slider::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border: 3px solid #fff;
  border-radius: 50%;
  background: var(--neon-cyan);
  box-shadow: var(--shadow-neon-cyan);
}

.slider-hint {
  margin: 0.8rem 0 0;
  color: var(--col-muted);
  font-size: 0.78rem;
}

.result-section {
  position: sticky;
  top: 100px;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border: 1px solid rgba(0, 245, 255, 0.18);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(0, 245, 255, 0.08), rgba(124, 58, 237, 0.1));
  text-align: center;
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.28);
}

.earnings-display {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0.7rem;
  margin-bottom: 0.8rem;
}

.earnings-prefix {
  margin-top: 0.7rem;
  color: var(--neon-cyan);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 900;
}

.earnings-value {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  font-weight: 900;
  line-height: 1;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.info-icon-wrap {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  margin-top: 0.75rem;
  color: var(--col-muted);
}

.info-icon-wrap svg {
  width: 100%;
  height: 100%
}

.info-box {
  position: absolute;
  right: 0;
  bottom: calc(100% + 10px);
  width: min(260px, 70vw);
  padding: 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(8, 12, 24, 0.98);
  color: var(--col-muted);
  font-size: 0.78rem;
  line-height: 1.5;
  text-align: left;
  opacity: 0;
  transform: translateY(6px);
  pointer-events: none;
  transition: opacity var(--t-fast), transform var(--t-fast);
}

.info-icon-wrap:hover .info-box {
  opacity: 1;
  transform: translateY(0)
}

.earnings-desc {
  color: var(--col-muted);
  font-size: 0.9rem;
  margin: 0 0 1.4rem
}

.percent-note {
  margin: 1rem 0 0;
  color: var(--col-muted);
  font-size: 0.78rem;
  line-height: 1.7;
}

.pct-input {
  width: 52px;
  min-height: 32px;
  margin: 0 0.25rem;
  padding: 0.25rem;
  text-align: center;
}

/* ════════════════════════════════
   ADVERTISERS
   ════════════════════════════════ */
.section-advertisers {
  position: relative;
  z-index: 1;
  padding: var(--sp-2xl) 0;
}

.adv-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.adv-stat-card {
  text-align: center;
  padding: 2rem 1rem;
  transition: transform var(--t-med), box-shadow var(--t-med);
}

.adv-stat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-neon-cyan);
}

.adv-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem
}

.adv-big {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.4rem;
}

.adv-label {
  font-size: 0.82rem;
  color: var(--col-muted)
}

.adv-formats {
  text-align: center
}

.adv-formats h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  color: var(--col-text);
}

.formats-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 2rem
}

.format-pill {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.2rem;
  background: var(--col-glass);
  border: 1px solid var(--col-glass-border);
  border-radius: var(--r-pill);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--col-text);
  backdrop-filter: blur(12px);
  transition: all var(--t-fast);
}

.format-pill:hover {
  border-color: rgba(0, 245, 255, 0.4);
  background: rgba(0, 245, 255, 0.07);
  transform: translateY(-2px);
}

/* ════════════════════════════════
   STATS
   ════════════════════════════════ */
.section-stats {
  position: relative;
  z-index: 1;
  padding: var(--sp-2xl) 0;
  overflow: hidden;
}

.stats-mesh {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(124, 58, 237, 0.1), transparent);
  pointer-events: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.stat-card-big {
  text-align: center;
  padding: 2.5rem 1rem;
  transition: transform var(--t-med), box-shadow var(--t-med);
  position: relative;
  overflow: hidden;
}

.stat-card-big::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--grad-primary);
}

.stat-card-big:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-neon-violet);
}

.stat-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem
}

.stat-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.stat-plus {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--neon-cyan);
  display: inline-block;
}

.stat-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--col-text);
  margin: 0.5rem 0 0.25rem
}

.stat-desc {
  font-size: 0.82rem;
  color: var(--col-muted)
}

/* ════════════════════════════════
   TESTIMONIALS
   ════════════════════════════════ */
.section-testimonials {
  position: relative;
  z-index: 1;
  padding: var(--sp-2xl) 0;
}

.testimonials-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testi-card {
  padding: 2rem;
  transition: transform var(--t-med), box-shadow var(--t-med);
  position: relative;
}

.testi-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-neon-cyan);
}

.featured-testi {
  border-color: rgba(0, 245, 255, 0.25);
  background: rgba(0, 245, 255, 0.04);
  transform: scale(1.02);
}

.featured-testi:hover {
  transform: scale(1.02) translateY(-6px)
}

.testi-stars {
  color: #f59e0b;
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 1rem
}

.testi-quote {
  font-size: 0.9rem;
  color: var(--col-muted);
  line-height: 1.75;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 1rem
}

.author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--grad-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.testi-author strong {
  display: block;
  font-size: 0.9rem;
  color: var(--col-text)
}

.testi-author span {
  font-size: 0.78rem;
  color: var(--col-muted)
}

/* ════════════════════════════════
   FAQ
   ════════════════════════════════ */
.section-faq {
  position: relative;
  z-index: 1;
  padding: var(--sp-2xl) 0;
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: var(--col-glass);
  border: 1px solid var(--col-glass-border);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color var(--t-fast);
}

.faq-item:hover,
.faq-item.open {
  border-color: rgba(0, 245, 255, 0.25)
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.25rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--col-text);
  text-align: left;
  transition: color var(--t-fast);
}

.faq-q:hover {
  color: var(--neon-cyan)
}

.faq-icon {
  font-size: 1.2rem;
  color: var(--neon-cyan);
  transition: transform var(--t-med);
  flex-shrink: 0;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg)
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--t-med);
}

.faq-item.open .faq-a {
  max-height: 300px
}

.faq-a p {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.88rem;
  color: var(--col-muted);
  line-height: 1.75;
}

/* ════════════════════════════════
   FINAL CTA
   ════════════════════════════════ */
.section-cta {
  position: relative;
  z-index: 1;
  padding: var(--sp-2xl) 0;
  overflow: hidden;
}

.cta-aurora {
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(ellipse 60% 60% at 30% 50%, rgba(124, 58, 237, 0.2), transparent),
    radial-gradient(ellipse 50% 50% at 70% 50%, rgba(0, 245, 255, 0.15), transparent);
  filter: blur(40px);
  pointer-events: none;
}

.cta-content {
  position: relative;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.cta-badge {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: var(--r-pill);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--neon-green);
  margin-bottom: 1.5rem;
}

.cta-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.cta-content p {
  color: var(--col-muted);
  font-size: 1.05rem;
  margin-bottom: 2rem
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.5rem
}

.cta-sub {
  font-size: 0.82rem;
  color: var(--col-muted)
}

.cta-sub a {
  color: var(--neon-cyan)
}

/* ════════════════════════════════
   FOOTER
   ════════════════════════════════ */
/* ═══════════════════════════════════════════════════
   FOOTER  —  ETM Games  ·  Premium Business Style
═══════════════════════════════════════════════════ */

footer#footer,
#footer {
  position: relative;
  z-index: 1;
  background: linear-gradient(180deg, #0a0f1e 0%, #060b18 100%);
  border-top: 1px solid rgba(0, 245, 255, 0.12);
  padding: 2.5rem 0 0;
  color: #cbd5e1;
  overflow: hidden;
}

/* Subtle top glow line */
#footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 245, 255, 0.5), transparent);
  pointer-events: none;
}

/* Ambient neon glow behind content */
#footer::after {
  content: '';
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(0, 245, 255, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

/* ── Top row: brand + nav columns ── */
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 2fr;
  gap: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 0;
}

.footer-brand p {
  color: #d7dce3;
  font-size: 0.875rem;
  margin: 1rem 0 1.75rem;
  max-width: 260px;
  line-height: 1.8;
}

.footer-social {
  display: flex;
  gap: 0.6rem;
}

.footer-social a {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: #94a3b8;
  text-decoration: none;
  transition: all 0.22s ease;
}

.footer-social a:hover {
  background: rgba(0, 245, 255, 0.1);
  border-color: rgba(0, 245, 255, 0.35);
  color: #00f5ff;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 245, 255, 0.15);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.fl-col h4 {
  font-family: var(--font-display, 'Nunito', sans-serif);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(223, 21, 24, 0.7);
  margin-bottom: 1.25rem;
}

.fl-col a {
  display: block;
  font-size: 0.875rem;
  color: #e3e8f1;
  margin-bottom: 0.7rem;
  text-decoration: none;
  transition: color 0.18s ease, transform 0.18s ease;
}

.fl-col a:hover {
  color: #e2e8f0;
  transform: translateX(4px);
}

/* ── Address / contact band ── */
.footer-legal {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-legal .fl-col {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.fl-col p {
  font-family: var(--font-display, 'Nunito', sans-serif);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.941);
  margin: 0 0 0.25rem;
}

.footer-legal .fl-col h4 {
  font-family: var(--font-body, 'Nunito', sans-serif);
  font-size: 0.82rem;
  font-weight: 400;
  color: #94a3b8;
  line-height: 1.6;
  letter-spacing: 0;
  text-transform: none;
  margin-bottom: 0.75rem;
}

.footer-legal .fl-col a {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.18s ease;
  margin-bottom: 0;
}

.footer-links .fl-col a:hover {
  color: #00f5ff;
  transform: translateX(4px);
}

.elementor-icon-list-icon {
  display: flex;
  align-items: center;
  opacity: 0.75;
}

.elementor-icon-list-text {
  font-weight: 600;
  letter-spacing: 0.01em;
}

/* ── Bottom bar ── */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  font-size: 0.8rem;
  color: #475569;
  gap: 1rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom .footer-legal {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  padding: 0;
  border: none;
  grid-template-columns: unset;
}

.footer-bottom .footer-legal a {
  font-size: 0.8rem;
  font-weight: 500;
  color: #475569;
  text-decoration: none;
  transition: color 0.18s ease;
  margin: 0;
  display: inline;
}

.footer-bottom .footer-legal a:hover {
  color: #00f5ff;
  transform: none;
}

.footer-bottom .footer-legal .fl-col {
  gap: 0;
  flex-direction: row;
}

/* Light professional theme overrides */
#particle-canvas,
#smokey-fluid-canvas {
  opacity: 0.18;
}

#nav,
#nav.scrolled {
  background: linear-gradient(180deg, #27282c 0%, #252d41 100%);
  border-top: 1px solid rgba(26, 31, 31, 0.12);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.nav-link:hover {
  background: white;
}

.mobile-menu {
  background: rgba(255, 255, 255, 0.98);
}

.btn-ghost,
.btn-hero-ghost,
.btn-outline {
  border-color: rgba(15, 23, 42, 0.14);
  color: var(--col-text);
  background: rgba(255, 255, 255, 0.7);
}

.cta-aurora {
  opacity: 0.2;
}

.hero-bg-mesh {
  opacity: 0.75
}

.hero-aurora {
  opacity: 0.55
}

.hero-grid-overlay {
  background-image:
    linear-gradient(rgba(15, 23, 42, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.035) 1px, transparent 1px);
}

.hero-stat-divider,
.mini-progress,
.amb {
  background: rgba(15, 23, 42, 0.1);
}

.dashboard-card,
.bento-card,
.game-card,
.tl-content,
.faq-item,
.format-pill,
.glass-card {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(15, 23, 42, 0.1);
  box-shadow: var(--shadow-card);
}

.dashboard-card {
  backdrop-filter: blur(18px);
}

.bento-card:hover,
.game-card:hover,
.tl-content:hover {
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.12), 0 0 0 1px rgba(0, 154, 173, 0.12);
}

.trust-strip {
  background: #f8fafc;
  border-color: rgba(15, 23, 42, 0.08);
}

.section-timeline {
  background: linear-gradient(180deg, #ffffff, #f8fafc, #ffffff);
}

.section-calculator .calculator,
.result-section {
  background: #ffffff;
  border-color: rgba(15, 23, 42, 0.1);
}

.result-section {
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.1);
}

.dropdown-trigger,
.dau-input-box,
.pct-input {
  background: #ffffff;
  border-color: rgba(15, 23, 42, 0.14);
}

.range-slider {
  background: linear-gradient(90deg, var(--neon-cyan) 0 var(--fill, 0%), rgba(15, 23, 42, 0.12) var(--fill, 0%) 100%);
}

.info-box {
  background: #ffffff;
  border-color: rgba(15, 23, 42, 0.12);
  box-shadow: 0 16px 35px rgba(15, 23, 42, 0.14);
}

.code-snippet {
  background: #f8fafc;
  border-color: rgba(15, 23, 42, 0.1);
}

/* Footer social override handled in unified footer block above */

/* footer bg intentionally kept dark — see footer block above */

/* Stable, readable button states for the light theme */
.btn-primary,
.btn-hero-primary,
.btn-hero-ghost,
.btn-ghost,
.btn-outline,
.play-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 42px;
  line-height: 1.2;
  white-space: normal;
  text-align: center;
  position: relative;
  isolation: isolate;
  overflow: visible;
  transform: none;
}

.btn-primary,
.btn-hero-primary,
.play-btn {
  color: #fff;
  background: linear-gradient(135deg, #0284c7, #4f46e5);
  box-shadow: 0 10px 24px rgba(2, 132, 199, 0.16);
}

.btn-primary::before,
.btn-hero-primary::after {
  display: none;
}

.btn-primary *,
.btn-hero-primary *,
.btn-hero-ghost *,
.btn-ghost *,
.btn-outline *,
.play-btn * {
  position: relative;
  z-index: 1;
}

.btn-primary:hover,
.btn-hero-primary:hover,
.play-btn:hover {
  color: #fff;
  background: linear-gradient(135deg, #0369a1, #4338ca);
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(79, 70, 229, 0.2);
}

.btn-hero-ghost:hover,
.btn-ghost:hover,
.btn-outline:hover {
  color: #0f172a;
  background: #f8fafc;
  border-color: rgba(2, 132, 199, 0.35);
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.08);
}

.nav-actions,
.hero-actions,
.cta-buttons,
.games-cta,
.tl-cta {
  gap: 1rem;
}

/* ════════════════════════════════
   MAGNETIC BUTTON WRAPPER
   ════════════════════════════════ */
[data-magnetic] {
  will-change: transform;
  transition: transform var(--t-fast)
}

/* ════════════════════════════════
   RESPONSIVE
   ════════════════════════════════ */
@media(max-width:1100px) {
  .bento-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .bento-large,
  .bento-wide {
    grid-column: span 2
  }

  .stats-grid,
  .adv-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .testimonials-track {
    grid-template-columns: 1fr
  }

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

@media(max-width:900px) {
  #hero {
    text-align: center;
    min-height: auto;
    padding: 110px var(--sp-md) 3rem;
  }

  .hero-content {
    text-align: center
  }

  .hero-sub {
    margin: 0 auto 2rem
  }

  .hero-actions {
    justify-content: center
  }

  .hero-stats-band {
    margin-top: 0;
    padding-bottom: 2rem
  }

  .hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr))
  }

  .hero-stat:nth-child(2)::after {
    display: none
  }

  .hero-visual {
    display: none
  }

  .hero-scroll-hint {
    display: none
  }

  .calc-wrapper {
    grid-template-columns: 1fr
  }

  .footer-top {
    grid-template-columns: 1fr
  }

  .footer-links {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(max-width:768px) {

  .nav-links,
  .nav-actions {
    display: none
  }

  .hamburger {
    display: flex
  }

  .mobile-menu {
    display: flex
  }

  .timeline-item {
    grid-template-columns: 1fr
  }

  .tl-left .tl-content,
  .tl-right .tl-content {
    grid-column: 1;
    text-align: left
  }

  .tl-left .tl-visual,
  .tl-right .tl-visual {
    grid-column: 1;
    min-height: 210px
  }

  .tl-visual img {
    min-height: 210px
  }

  .tl-left .tl-dot,
  .tl-right .tl-dot {
    display: none
  }

  .timeline-line {
    display: none
  }

  .bento-grid {
    grid-template-columns: 1fr
  }

  .bento-large,
  .bento-wide {
    grid-column: span 1
  }

  .games-grid {
    grid-template-columns: 1fr
  }

  .hero-dashboard {
    grid-template-columns: 1fr
  }

  .container {
    padding: 0 var(--sp-sm)
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center
  }

  .adv-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(max-width:480px) {

  .stats-grid,
  .adv-grid {
    grid-template-columns: 1fr
  }

  .hero-title {
    font-size: 2rem
  }

  .hero-stats {
    grid-template-columns: 1fr
  }

  .hero-stat {
    min-height: 112px
  }

  .hero-stat::after {
    display: none
  }

  .result-value {
    font-size: 2.5rem
  }
}

/* ─── VIDEO WRAPPER ─── */
.video-wrapper {
  max-width: 640px;
  /* limit width */
  margin: 2rem auto;
  /* center with spacing */
  overflow: hidden;
  border-radius: var(--r-sm);
  box-shadow: var(--shadow-card);
  background: var(--col-glass);
}

.video-wrapper video {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

/* ─── CERTIFIED PARTNER CARD ─── */
.certified-partner-card {
  display: flex;
  align-items: center;
  gap: var(--sp-lg);
  background: var(--col-glass);
  border: 1px solid var(--col-glass-border);
  border-radius: var(--r-lg);
  padding: var(--sp-lg);
  box-shadow: var(--shadow-card);
  max-width: 100%;
  margin: 2rem auto;
}

.certified-partner-card img {
  width: 220px;
  height: auto;
  object-fit: contain;
  border-radius: var(--r-sm);
}

.certified-partner-card .card-text {
  flex: 1;
  font-family: var(--font-base);
  color: var(--col-text);
}

@media (max-width: 768px) {
  .certified-partner-card {
    flex-direction: column;
    text-align: center;
  }

  .certified-partner-card img {
    margin-bottom: var(--sp-md);
  }
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  clip: rect(0, 0, 0, 0);
  overflow: hidden
}

*:focus-visible {
  outline: 2px solid var(--neon-cyan);
  outline-offset: 3px
}

/* ─── GAME CARD THUMBNAIL ─── */
.game-card-thumb {
  position: relative;
  width: 100%;
  /* 16:9 aspect ratio */
  padding-top: 56.25%;
  background-size: contain;
  /* show entire image */
  background-repeat: no-repeat;
  background-position: center;
  overflow: hidden;
  border-radius: var(--r-sm);
  transition: background-size var(--t-fast) ease;
}

/* Hover to slightly zoom */
.game-card:hover .game-card-thumb {
  background-size: contain;
}

/* unified footer styling above — no override needed */

/* ─── VIDEO CROPPED & RESPONSIVE FLEX ─── */
.video-cropped {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  /* ensure full video visible without cropping */
}

/* Ensure video and content columns stay equal */
.features-flex .video-section,
.features-flex .content-section {
  flex: 1 1 45%;
  max-width: 45%;
}

/* Stack columns on small screens */
@media (max-width: 768px) {
  .features-flex {
    flex-direction: column;
    align-items: center;
  }

  .features-flex .video-section,
  .features-flex .content-section {
    max-width: 100%;
    flex: 1 1 100%;
  }
}


/* ─── FEATURES FLEX LAYOUT & LOADING ANIMATION ─── */
.features-flex {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-lg);
  align-items: flex-start;
  justify-content: center;
}

/* Ensure video and content have matching dimensions */
.features-flex .video-section,
.features-flex .content-section {
  flex: 1 1 45%;
  max-width: 45%;
}

.publisher-work-video {
  display: block;
  width: 100%;
  max-width: 720px;
  margin: 4rem auto;
  position: relative;
  z-index: 10;
  transform: none;
  opacity: 1;
}

.publisher-work-video video {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  pointer-events: auto;
  position: relative;
  z-index: 11;
}

/* Loading spinner container */
.loading-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loading-container .spinner {
  width: 48px;
  height: 48px;
  border: 4px solid var(--col-glass);
  border-top: 4px solid var(--neon-cyan);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Footer legal address layout — handled in unified footer block above */
/* ── Footer responsive ── */
@media (max-width: 900px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-brand p {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  #footer {
    padding-top: 1.75rem;
  }

  .footer-links {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .footer-legal {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1.25rem 0;
  }

  .footer-bottom .footer-legal {
    flex-direction: column;
    gap: 0.4rem;
  }
}

/* ─── FOOTER SPACING FIX ─── */
/* Ensure no extra margin below footer */
footer#footer, #footer, .footer-bottom {
  margin: 0 !important;
  padding-bottom: 0 !important;
}
/* Ensure body takes full viewport height to avoid white space */
html, body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
/* Allow main content to grow and push footer down */
main {
  flex: 1;
}
/* Optional: remove any default bottom margin on the last element before footer */
section:last-of-type {
  margin-bottom: 0;
}