:root {
  color-scheme: dark;
  --bg: #0e131e;
  --card-bg: #1b1f2b;
  --surface: #252a36;
  --text-primary: #cfc2d6;
  --text-secondary: #dae2fd;
  --text-muted: #ecb2ff;
  --brand: #ecb2ff;
  --font-body: "Be Vietnam Pro", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-display: "Inter", "Be Vietnam Pro", sans-serif;
  --radius-sm: 8px;
  --radius-md: 40px;
  --radius-lg: 9999px;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { background: var(--bg); }
body { background: var(--bg); color: var(--text-primary, #fff); font-family: var(--font-body, system-ui, sans-serif); -webkit-font-smoothing: antialiased; min-height: 100vh; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
.page { max-width: 1280px; margin: 0 auto; }
.page > section { width: 100%; }

.s0-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 16px 64px;
      background: transparent;
    }

    .s0-logo {
      color: #DDB7FF;
      font-family: Montserrat, sans-serif;
      font-size: 32px;
      font-weight: 700;
      line-height: 38px;
      text-decoration: none;
    }

    .s0-nav-container {
      display: flex;
      padding: 10px 20px;
      justify-content: center;
      align-items: center;
      border-radius: 50px;
      background: rgba(255, 255, 255, 0.2);
    }

    .s0-nav {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 20px;
      list-style: none;
      margin: 0;
      padding: 0;
    }

    .s0-nav a {
      color: #FFF;
      font-family: "DM Sans", sans-serif;
      font-size: 14px;
      font-weight: 400;
      text-decoration: none;
      white-space: nowrap;
    }

    .s0-nav a:hover {
      opacity: 0.8;
    }

    .s0-burger {
      display: none;
      background: rgba(255, 255, 255, 0.2);
      border: none;
      border-radius: 8px;
      padding: 10px 12px;
      cursor: pointer;
      flex-direction: column;
      gap: 4px;
    }

    .s0-burger span {
      width: 24px;
      height: 2px;
      background: #FFF;
      display: block;
      transition: all 0.3s;
    }

    @media (max-width: 768px) {
      .s0-header {
        padding: 16px 32px;
      }

      .s0-logo {
        font-size: 28px;
      }

      .s0-burger {
        display: flex;
      }

      .s0-nav-container {
        position: fixed;
        top: 71px;
        right: -100%;
        width: 250px;
        flex-direction: column;
        padding: 20px;
        transition: right 0.3s;
        background: rgba(45, 52, 73, 0.98);
      }

      .s0-nav-container.is-open {
        right: 0;
      }

      .s0-nav {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        width: 100%;
      }

      .s0-nav a {
        font-size: 16px;
        padding: 8px 0;
        width: 100%;
      }
    }

    @media (max-width: 480px) {
      .s0-header {
        padding: 16px 20px;
      }

      .s0-logo {
        font-size: 24px;
        line-height: 32px;
      }
    }

.s1-main {
  background: transparent;
  color: #CFC2D6;
  font-family: 'Be Vietnam Pro', sans-serif;
}

.s1-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 45px 64px;
  gap: 16px;
  min-height: 529px;
}

.s1-hero-content {
  max-width: 512px;
}

.s1-hero-eyebrow {
  color: #DDB7FF;
  font-family: 'JetBrains Mono', monospace;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.s1-hero-title {
  color: #A855F7;
  text-shadow: 0 4px 24px rgba(169, 85, 247, 0.35);
  font-family: 'Montserrat', sans-serif;
  font-size: 80px;
  font-weight: 900;
  line-height: 70px;
  letter-spacing: -3.2px;
  margin-bottom: 16px;
}

.s1-hero-desc {
  color: #CFC2D6;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  margin-bottom: 24px;
}

.s1-hero-cta {
  display: inline-flex;
  padding: 17px 32px;
  align-items: center;
  gap: 8px;
  border-radius: 9999px;
  background: #A855F7;
  box-shadow: 0 4px 54px 0 #A955F7;
  color: #FFF;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.s1-hero-cta img {
  width: 16px;
  height: 14px;
}

.s1-hero-image {
  flex-shrink: 0;
}

.s1-hero-image img {
  max-width: 663px;
  height: auto;
  display: block;
}

.s1-features {
  background: #131B2E;
  padding: 70px 64px 96px;
}

.s1-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1152px;
}

.s1-feature-card {
  padding: 48px;
  border-radius: 40px;
  background: #2D3449;
}

.s1-feature-card.large {
  grid-column: span 1;
}

.s1-feature-icon {
  display: flex;
  width: 48px;
  height: 48px;
  justify-content: center;
  align-items: center;
  border-radius: 12px;
  margin-bottom: 16px;
}

.s1-feature-icon.purple {
  background: rgba(221, 183, 255, 0.20);
}

.s1-feature-icon.pink {
  background: rgba(255, 176, 205, 0.20);
}

.s1-feature-icon.blue {
  background: rgba(173, 198, 255, 0.20);
}

.s1-feature-icon img {
  width: 24px;
  height: auto;
}

.s1-feature-eyebrow {
  color: #DDB7FF;
  font-family: 'JetBrains Mono', monospace;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.s1-feature-title {
  color: #DAE2FD;
  font-family: 'Montserrat', sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 58px;
  letter-spacing: -0.96px;
  margin-bottom: 16px;
}

.s1-feature-title.medium {
  font-size: 32px;
  line-height: 38px;
  text-align: center;
}

.s1-feature-desc {
  color: #CFC2D6;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.s1-feature-card.center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.s1-feature-card.horizontal {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.s1-feature-card.horizontal .s1-feature-content {
  max-width: 448px;
}

.s1-feature-visual {
  width: 192px;
  height: 192px;
  border-radius: 9999px;
  border: 4px solid rgba(221, 183, 255, 0.20);
  background: #222A3D;
  overflow: hidden;
  flex-shrink: 0;
}

.s1-feature-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.s1-games {
  background: #0B1326;
  padding: 35px 25px;
}

.s1-games-container {
  max-width: 1230px;
  margin: 0 auto;
}

.s1-games-header {
  text-align: center;
  margin-bottom: 64px;
}

.s1-games-eyebrow {
  color: #DDB7FF;
  font-family: 'JetBrains Mono', monospace;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.s1-games-title {
  color: #DAE2FD;
  font-family: 'Montserrat', sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 58px;
  letter-spacing: -0.96px;
  margin-bottom: 15px;
}

.s1-games-desc {
  color: #CFC2D6;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  max-width: 672px;
  margin: 0 auto;
}

.s1-games-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.s1-game-card {
  border-radius: 12px;
  border: 1px solid #303541;
  background: #1B1F2B;
  overflow: hidden;
}

.s1-game-image {
  position: relative;
  aspect-ratio: 387/218;
  overflow: hidden;
}

.s1-game-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.s1-game-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, #A855F7 0%, rgba(14, 19, 30, 0.00) 50%, rgba(14, 19, 30, 0.00) 100%);
  opacity: 0.8;
}

.s1-game-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 1.5px 8px;
  border-radius: 9999px;
  background: #00EEFC;
  color: #00686F;
  font-family: 'Nimbus Sans', sans-serif;
  font-size: 10px;
  font-weight: 700;
  line-height: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.s1-game-content {
  padding: 24px;
}

.s1-game-title {
  color: #ECB2FF;
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  margin-bottom: 4px;
}

.s1-game-desc {
  color: #D4C0D7;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  opacity: 0.8;
  margin-bottom: 20px;
}

.s1-game-cta {
  display: flex;
  padding: 16px 0;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 8px;
  border: 1px solid rgba(236, 178, 255, 0.30);
  background: transparent;
  color: #ECB2FF;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: 0.7px;
  text-decoration: none;
  cursor: pointer;
}

.s1-game-cta img {
  width: 12px;
  height: 12px;
}

.s1-philosophy {
  display: flex;
  padding: 70px 64px 96px;
  gap: 64px;
  align-items: center;
}

.s1-philosophy-image {
  flex-shrink: 0;
}

.s1-philosophy-image img {
  width: 544px;
  height: 600px;
  object-fit: cover;
  border-radius: 24px;
}

.s1-philosophy-content {
  max-width: 544px;
}

.s1-philosophy-eyebrow {
  color: #DDB7FF;
  font-family: 'JetBrains Mono', monospace;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.s1-philosophy-title {
  color: #DAE2FD;
  font-family: 'Montserrat', sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 58px;
  letter-spacing: -0.96px;
  margin-bottom: 24px;
}

.s1-philosophy-text {
  color: #CFC2D6;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  margin-bottom: 24px;
}

.s1-philosophy-checklist {
  list-style: none;
  padding: 0;
  margin: 24px 0;
}

.s1-philosophy-checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #DAE2FD;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 16px;
}

.s1-philosophy-checklist li img {
  width: 14px;
  height: 10px;
}

.s1-philosophy-quote {
  padding: 24px;
  border-radius: 12px;
  background: rgba(45, 52, 73, 0.5);
  margin-top: 40px;
}

.s1-philosophy-quote-text {
  color: #CFC2D6;
  font-size: 16px;
  font-style: italic;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 16px;
}

.s1-philosophy-quote-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.s1-philosophy-quote-avatar {
  display: flex;
  width: 40px;
  height: 40px;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: rgba(221, 183, 255, 0.20);
  color: #DDB7FF;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
}

.s1-philosophy-quote-name {
  color: #DAE2FD;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
}

.s1-philosophy-quote-title {
  color: #CFC2D6;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
}

.s1-about {
  display: flex;
  padding: 70px 64px 96px;
  gap: 64px;
  align-items: center;
}

.s1-about-content {
  max-width: 544px;
}

.s1-about-eyebrow {
  color: #DDB7FF;
  font-family: 'JetBrains Mono', monospace;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.s1-about-title {
  color: #DAE2FD;
  font-family: 'Montserrat', sans-serif;
  font-size: 61px;
  font-weight: 800;
  line-height: 58px;
  letter-spacing: -0.96px;
  margin-bottom: 24px;
}

.s1-about-text {
  color: #CFC2D6;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  margin-bottom: 24px;
}

.s1-about-cta {
  display: inline-flex;
  padding: 17px 32px;
  align-items: center;
  gap: 8px;
  border-radius: 9999px;
  border: 2px solid #A855F7;
  background: transparent;
  color: #A855F7;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  text-decoration: none;
  cursor: pointer;
  margin-top: 24px;
}

.s1-about-image {
  flex-shrink: 0;
}

.s1-about-image img {
  width: 544px;
  height: 400px;
  object-fit: cover;
  border-radius: 24px;
}

.s1-testimonials {
  padding: 70px 64px 96px;
  text-align: center;
}

.s1-testimonials-header {
  margin-bottom: 64px;
}

.s1-testimonials-eyebrow {
  color: #DDB7FF;
  font-family: 'JetBrains Mono', monospace;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.s1-testimonials-title {
  color: #DAE2FD;
  font-family: 'Montserrat', sans-serif;
  font-size: 68px;
  font-weight: 800;
  line-height: 58px;
  letter-spacing: -0.96px;
}

.s1-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1152px;
  margin: 0 auto;
}

.s1-testimonial-card {
  padding: 32px;
  border-radius: 12px;
  background: #2D3449;
  text-align: left;
}

.s1-testimonial-stars {
  margin-bottom: 16px;
}

.s1-testimonial-stars img {
  width: 299px;
  height: 20px;
}

.s1-testimonial-text {
  color: #CFC2D6;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 24px;
}

.s1-testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.s1-testimonial-avatar {
  display: flex;
  width: 40px;
  height: 40px;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: rgba(221, 183, 255, 0.20);
  color: #DDB7FF;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
}

.s1-testimonial-name {
  color: #DAE2FD;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
}

.s1-testimonial-title {
  color: #CFC2D6;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

@media (max-width: 1024px) {
  .s1-hero {
    padding: 40px 48px;
  }
  
  .s1-hero-title {
    font-size: 64px;
    line-height: 60px;
  }
  
  .s1-hero-image img {
    max-width: 500px;
  }
  
  .s1-features {
    padding: 60px 48px 80px;
  }
  
  .s1-philosophy,
  .s1-about {
    padding: 60px 48px 80px;
  }
  
  .s1-games-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .s1-testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .s1-hero {
    flex-direction: column;
    padding: 32px 24px;
    text-align: center;
  }
  
  .s1-hero-content {
    max-width: 100%;
  }
  
  .s1-hero-title {
    font-size: 48px;
    line-height: 48px;
  }
  
  .s1-hero-image img {
    max-width: 400px;
  }
  
  .s1-features {
    padding: 48px 24px 64px;
  }
  
  .s1-features-grid {
    grid-template-columns: 1fr;
  }
  
  .s1-feature-card.horizontal {
    flex-direction: column;
    text-align: center;
  }
  
  .s1-feature-card.horizontal .s1-feature-content {
    max-width: 100%;
  }
  
  .s1-games-grid {
    grid-template-columns: 1fr;
  }
  
  .s1-philosophy,
  .s1-about {
    flex-direction: column;
    padding: 48px 24px 64px;
  }
  
  .s1-philosophy-image img,
  .s1-about-image img {
    width: 100%;
    height: auto;
  }
  
  .s1-testimonials {
    padding: 48px 24px 64px;
  }
  
  .s1-testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .s1-testimonials-title {
    font-size: 48px;
  }
}

@media (max-width: 480px) {
  .s1-hero-title {
    font-size: 40px;
    line-height: 40px;
  }
  
  .s1-hero-desc {
    font-size: 16px;
    line-height: 24px;
  }
  
  .s1-feature-title {
    font-size: 32px;
    line-height: 38px;
  }
  
  .s1-feature-title.medium {
    font-size: 24px;
    line-height: 32px;
  }
  
  .s1-games-title,
  .s1-philosophy-title,
  .s1-testimonials-title {
    font-size: 32px;
    line-height: 38px;
  }
  
  .s1-about-title {
    font-size: 40px;
    line-height: 44px;
  }
}

.s2-footer {
      padding: 52px 24px;
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      gap: 48px;
      background: transparent;
    }

    .s2-brand-container {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 8px;
      max-width: 341px;
    }

    .s2-brand-name {
      color: #D4C0D7;
      font-family: Montserrat, sans-serif;
      font-size: 24px;
      font-weight: 700;
      line-height: 32px;
    }

    .s2-copyright {
      color: #D4C0D7;
      font-family: Inter, sans-serif;
      font-size: 16px;
      font-weight: 400;
      line-height: 24px;
      opacity: 0.8;
    }

    .s2-contact-container {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 24px;
    }

    .s2-contact-info {
      color: #D4C0D7;
      font-family: Inter, sans-serif;
      font-size: 16px;
      font-weight: 400;
      line-height: 24px;
      text-align: center;
      white-space: pre-line;
    }

    .s2-footer-links {
      display: flex;
      align-items: center;
      gap: 24px;
    }

    .s2-footer-link {
      color: #D4C0D7;
      font-family: Inter, sans-serif;
      font-size: 16px;
      font-weight: 400;
      line-height: 24px;
      text-decoration: none;
      opacity: 0.8;
      transition: opacity 0.2s;
    }

    .s2-footer-link:hover {
      opacity: 1;
    }

    @media (max-width: 1024px) {
      .s2-footer {
        padding: 48px 24px;
        gap: 40px;
      }
    }

    @media (max-width: 768px) {
      .s2-footer {
        flex-direction: column;
        align-items: center;
        padding: 40px 20px;
        gap: 32px;
      }

      .s2-brand-container {
        align-items: center;
        text-align: center;
      }

      .s2-contact-container {
        align-items: center;
      }

      .s2-footer-links {
        flex-wrap: wrap;
        justify-content: center;
      }
    }

    @media (max-width: 480px) {
      .s2-footer {
        padding: 32px 16px;
        gap: 24px;
      }

      .s2-footer-links {
        flex-direction: column;
        gap: 16px;
      }

      .s2-brand-name {
        font-size: 20px;
        line-height: 28px;
      }

      .s2-copyright,
      .s2-contact-info,
      .s2-footer-link {
        font-size: 14px;
        line-height: 20px;
      }
    }

.s3-hero {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 40px 20px 60px;
      background: transparent;
      min-height: 767px;
    }

    .s3-mascot {
      width: 347px;
      height: auto;
      margin-bottom: 20px;
    }

    .s3-content {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 16px;
      max-width: 507px;
    }

    .s3-eyebrow {
      color: #DDB7FF;
      text-align: center;
      font-family: "JetBrains Mono", monospace;
      font-size: 16px;
      font-weight: 500;
      line-height: 24px;
      letter-spacing: 1.6px;
      text-transform: uppercase;
    }

    .s3-heading {
      color: #A855F7;
      text-align: center;
      text-shadow: 0 4px 24px rgba(169, 85, 247, 0.35);
      font-family: Montserrat, sans-serif;
      font-size: 51px;
      font-weight: 900;
      line-height: 47px;
      letter-spacing: -3.2px;
      margin: 0;
    }

    .s3-description {
      max-width: 360px;
      color: var(--text-primary, #2D3449);
      text-align: center;
      font-family: "Be Vietnam Pro", sans-serif;
      font-size: 16px;
      font-weight: 400;
      line-height: 28px;
      margin: 8px 0 0;
    }

    .s3-cta-wrapper {
      display: flex;
      justify-content: center;
      align-items: center;
      padding-top: 24px;
    }

    .s3-cta-button {
      display: inline-flex;
      padding: 17px 32px;
      align-items: center;
      gap: 8px;
      border-radius: 9999px;
      background: #A855F7;
      box-shadow: 0 4px 54px 0 #A955F7;
      color: #FFF;
      text-align: center;
      font-family: "Be Vietnam Pro", sans-serif;
      font-size: 16px;
      font-weight: 500;
      line-height: 24px;
      text-decoration: none;
      border: none;
      cursor: pointer;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .s3-cta-button:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 64px 0 #A955F7;
    }

    .s3-cta-icon {
      width: 16px;
      height: 14px;
    }

    @media (max-width: 1024px) {
      .s3-mascot {
        width: 300px;
      }

      .s3-heading {
        font-size: 46px;
        line-height: 44px;
      }

      .s3-description {
        font-size: 15px;
        line-height: 26px;
      }
    }

    @media (max-width: 768px) {
      .s3-hero {
        padding: 30px 16px 50px;
      }

      .s3-mascot {
        width: 260px;
      }

      .s3-heading {
        font-size: 40px;
        line-height: 38px;
        letter-spacing: -2.5px;
      }

      .s3-eyebrow {
        font-size: 14px;
        letter-spacing: 1.4px;
      }

      .s3-description {
        font-size: 15px;
        line-height: 25px;
        max-width: 340px;
      }

      .s3-cta-button {
        padding: 15px 28px;
        font-size: 15px;
      }
    }

    @media (max-width: 480px) {
      .s3-hero {
        padding: 20px 16px 40px;
      }

      .s3-mascot {
        width: 220px;
      }

      .s3-heading {
        font-size: 34px;
        line-height: 32px;
        letter-spacing: -2px;
      }

      .s3-eyebrow {
        font-size: 13px;
        letter-spacing: 1.3px;
      }

      .s3-description {
        font-size: 14px;
        line-height: 24px;
        max-width: 100%;
      }

      .s3-cta-button {
        padding: 14px 24px;
        font-size: 14px;
        width: 100%;
        max-width: 280px;
        justify-content: center;
      }
    }

.s4-features-grid {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 25px;
      max-width: 1440px;
      margin: 0 auto;
      padding: 35px 25px;
    }

    .s4-feature-card {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      width: 100%;
      max-width: 340px;
      padding: 48px;
      border-radius: 40px;
      background: #2D3449;
    }

    .s4-feature-card-center {
      align-items: center;
      justify-content: center;
    }

    .s4-badge-wrapper {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 16px;
    }

    .s4-badge-icon {
      display: flex;
      width: 48px;
      height: 48px;
      justify-content: center;
      align-items: center;
      border-radius: 12px;
      background: rgba(221, 183, 255, 0.20);
    }

    .s4-badge-icon img {
      width: 16px;
      height: 18px;
    }

    .s4-badge-text {
      color: #DDB7FF;
      font-family: "JetBrains Mono", monospace;
      font-size: 16px;
      font-weight: 400;
      line-height: 24px;
      letter-spacing: 1.6px;
      text-transform: uppercase;
    }

    .s4-feature-title {
      color: var(--text-secondary);
      text-align: center;
      font-family: Montserrat, sans-serif;
      font-size: 31px;
      font-weight: 700;
      line-height: normal;
      letter-spacing: -0.96px;
      margin: 0 0 16px 0;
    }

    .s4-feature-title-large {
      font-size: 32px;
      line-height: 38px;
    }

    .s4-feature-description {
      color: var(--text-primary);
      text-align: center;
      font-family: "Be Vietnam Pro", sans-serif;
      font-size: 16px;
      font-weight: 400;
      line-height: 24px;
      margin: 0;
      max-width: 250px;
    }

    .s4-icon-wrapper {
      display: flex;
      width: 64px;
      height: 64px;
      justify-content: center;
      align-items: center;
      border-radius: 16px;
      margin-bottom: 32px;
    }

    .s4-icon-shield {
      background: rgba(255, 176, 205, 0.20);
    }

    .s4-icon-hub {
      background: rgba(173, 198, 255, 0.20);
    }

    .s4-icon-wrapper img {
      width: 24px;
      height: 24px;
    }

    .s4-card-markets {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 25px;
      padding: 48px;
    }

    .s4-artifact-wrapper {
      display: flex;
      width: 139px;
      height: 139px;
      justify-content: center;
      align-items: center;
      border-radius: 9999px;
      border: 4px solid rgba(221, 183, 255, 0.20);
      background: #222A3D;
      overflow: hidden;
    }

    .s4-artifact-wrapper img {
      width: 131px;
      height: 131px;
      object-fit: cover;
    }

    .s4-markets-content {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 16px;
      max-width: 244px;
    }

    .s4-markets-title {
      color: var(--text-secondary);
      font-family: Montserrat, sans-serif;
      font-size: 31px;
      font-weight: 700;
      line-height: 38px;
      margin: 0;
      text-align: center;
    }

    .s4-markets-description {
      color: var(--text-primary);
      text-align: center;
      font-family: "Be Vietnam Pro", sans-serif;
      font-size: 16px;
      font-weight: 400;
      line-height: 24px;
      margin: 0;
      max-width: 244px;
    }

    @media (max-width: 1024px) {
      .s4-features-grid {
        gap: 20px;
        padding: 30px 20px;
      }

      .s4-feature-card {
        padding: 40px;
      }
    }

    @media (max-width: 768px) {
      .s4-features-grid {
        gap: 16px;
        padding: 24px 16px;
      }

      .s4-feature-card {
        padding: 32px;
        max-width: 100%;
      }

      .s4-feature-title {
        font-size: 28px;
      }

      .s4-feature-title-large {
        font-size: 28px;
      }

      .s4-markets-title {
        font-size: 28px;
      }
    }

    @media (max-width: 480px) {
      .s4-features-grid {
        gap: 16px;
        padding: 20px 16px;
      }

      .s4-feature-card {
        padding: 24px;
      }

      .s4-badge-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
      }

      .s4-feature-title {
        font-size: 24px;
      }

      .s4-feature-title-large {
        font-size: 24px;
      }

      .s4-markets-title {
        font-size: 24px;
      }

      .s4-feature-description,
      .s4-markets-description {
        font-size: 14px;
        line-height: 21px;
      }

      .s4-artifact-wrapper {
        width: 120px;
        height: 120px;
      }

      .s4-artifact-wrapper img {
        width: 112px;
        height: 112px;
      }
    }

.s5-featured-games {
      background: transparent;
      padding: 60px 20px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 35px;
    }

    .s5-header {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 15px;
      max-width: 672px;
      width: 100%;
    }

    .s5-eyebrow {
      color: #DDB7FF;
      text-align: center;
      font-family: "JetBrains Mono", monospace;
      font-size: 16px;
      font-weight: 400;
      line-height: 24px;
      letter-spacing: 1.6px;
      text-transform: uppercase;
    }

    .s5-title {
      color: #ECB2FF;
      text-align: center;
      font-family: Montserrat, sans-serif;
      font-size: 48px;
      font-weight: 700;
      line-height: 58px;
      letter-spacing: -0.96px;
      margin: 0;
    }

    .s5-description {
      color: #CFC2D6;
      text-align: center;
      font-family: "Be Vietnam Pro", sans-serif;
      font-size: 16px;
      font-weight: 400;
      line-height: 24px;
      max-width: 346px;
    }

    .s5-games-grid {
      display: flex;
      flex-direction: column;
      gap: 24px;
      width: 100%;
      max-width: 340px;
    }

    .s5-game-card {
      display: flex;
      flex-direction: column;
      border-radius: 12px;
      border: 1px solid rgba(212, 192, 215, 0.10);
      background: rgba(27, 31, 43, 0.80);
      backdrop-filter: blur(6px);
      overflow: hidden;
    }

    .s5-game-image-wrapper {
      position: relative;
      height: 192px;
      overflow: hidden;
    }

    .s5-game-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .s5-game-badge {
      position: absolute;
      top: 8px;
      right: 8px;
      padding: 4px 8px;
      border-radius: 9999px;
      background: #00EEFC;
      color: #00686F;
      font-family: Inter, sans-serif;
      font-size: 14px;
      font-weight: 600;
      line-height: 20px;
      letter-spacing: 0.7px;
    }

    .s5-game-content {
      padding: 16px;
      display: flex;
      flex-direction: column;
      gap: 4px;
    }

    .s5-game-title {
      color: #DAE2FD;
      font-family: Montserrat, sans-serif;
      font-size: 24px;
      font-weight: 700;
      line-height: 32px;
      margin: 0;
    }

    .s5-game-description {
      color: #D4C0D7;
      font-family: Inter, sans-serif;
      font-size: 16px;
      font-weight: 400;
      line-height: 24px;
      margin: 0 0 12px;
    }

    .s5-game-button {
      display: flex;
      padding: 8px 0;
      justify-content: center;
      align-items: center;
      border-radius: 8px;
      background: #BD00FF;
      box-shadow: 0 0 15px 0 rgba(189, 0, 255, 0.30);
      color: #FFF;
      text-align: center;
      font-family: Inter, sans-serif;
      font-size: 14px;
      font-weight: 600;
      line-height: 20px;
      letter-spacing: 0.7px;
      border: none;
      cursor: pointer;
      text-decoration: none;
      transition: transform 0.2s, box-shadow 0.2s;
    }

    .s5-game-button:hover {
      transform: translateY(-2px);
      box-shadow: 0 0 20px 0 rgba(189, 0, 255, 0.50);
    }

    @media (max-width: 1024px) {
      .s5-featured-games {
        padding: 50px 20px;
      }

      .s5-title {
        font-size: 42px;
        line-height: 50px;
      }
    }

    @media (max-width: 768px) {
      .s5-featured-games {
        padding: 40px 16px;
        gap: 30px;
      }

      .s5-title {
        font-size: 36px;
        line-height: 44px;
      }

      .s5-eyebrow {
        font-size: 14px;
      }

      .s5-description {
        font-size: 15px;
      }
    }

    @media (max-width: 480px) {
      .s5-featured-games {
        padding: 32px 16px;
      }

      .s5-title {
        font-size: 32px;
        line-height: 38px;
      }

      .s5-games-grid {
        max-width: 100%;
      }

      .s5-game-image-wrapper {
        height: 180px;
      }
    }

.s6-philosophy {
      background: transparent;
      padding: 60px 25px;
      max-width: 1440px;
      margin: 0 auto;
    }

    .s6-container {
      display: flex;
      flex-direction: column;
      gap: 25px;
    }

    .s6-eyebrow {
      color: #DDB7FF;
      font-family: "JetBrains Mono", monospace;
      font-size: 16px;
      font-weight: 500;
      line-height: 24px;
      letter-spacing: 1.6px;
      text-transform: uppercase;
    }

    .s6-heading {
      color: var(--text-secondary);
      font-family: Montserrat, sans-serif;
      font-size: 48px;
      font-weight: 700;
      line-height: 57.6px;
      letter-spacing: -0.96px;
      margin: 15px 0 0;
    }

    .s6-intro {
      color: var(--text-primary);
      font-family: "Be Vietnam Pro", sans-serif;
      font-size: 18px;
      font-weight: 400;
      line-height: 28px;
      margin: 15px 0 0;
    }

    .s6-body {
      color: var(--text-primary);
      font-family: "Be Vietnam Pro", sans-serif;
      font-size: 18px;
      font-weight: 400;
      line-height: 28px;
      margin: 15px 0 0;
    }

    .s6-features {
      display: flex;
      flex-direction: column;
      gap: 16px;
      margin-top: 25px;
    }

    .s6-feature-item {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .s6-feature-item img {
      width: 14px;
      height: 10px;
      flex-shrink: 0;
    }

    .s6-feature-item span {
      color: var(--text-secondary);
      font-family: "Be Vietnam Pro", sans-serif;
      font-size: 16px;
      font-weight: 400;
      line-height: 24px;
    }

    .s6-showcase {
      margin-top: 25px;
      position: relative;
    }

    .s6-showcase img {
      width: 100%;
      height: auto;
      display: block;
      border-radius: 24px;
    }

    .s6-testimonial {
      margin-top: -97px;
      padding: 32px;
      border-radius: 24px;
      border: 1px solid #4D4354;
      background: rgba(45, 52, 73, 0.80);
      backdrop-filter: blur(6px);
      position: relative;
      z-index: 1;
    }

    .s6-quote {
      color: var(--text-primary);
      font-family: "Be Vietnam Pro", sans-serif;
      font-size: 15px;
      font-style: italic;
      font-weight: 400;
      line-height: 24px;
      margin: 0 0 16px;
    }

    .s6-author {
      display: flex;
      align-items: center;
      gap: 16px;
    }

    .s6-avatar {
      width: 40px;
      height: 40px;
      border-radius: 9999px;
      background: rgba(221, 183, 255, 0.20);
      display: flex;
      justify-content: center;
      align-items: center;
      flex-shrink: 0;
    }

    .s6-avatar span {
      color: #DDB7FF;
      font-family: "Be Vietnam Pro", sans-serif;
      font-size: 16px;
      font-weight: 700;
      line-height: 24px;
    }

    .s6-author-info {
      display: flex;
      flex-direction: column;
    }

    .s6-author-name {
      color: var(--text-secondary);
      font-family: "Be Vietnam Pro", sans-serif;
      font-size: 16px;
      font-weight: 700;
      line-height: 24px;
    }

    .s6-author-title {
      color: var(--text-primary);
      font-family: "Be Vietnam Pro", sans-serif;
      font-size: 12px;
      font-weight: 400;
      line-height: 16px;
    }

    @media (max-width: 1024px) {
      .s6-philosophy {
        padding: 50px 20px;
      }

      .s6-heading {
        font-size: 42px;
        line-height: 50px;
      }
    }

    @media (max-width: 768px) {
      .s6-philosophy {
        padding: 40px 20px;
      }

      .s6-heading {
        font-size: 36px;
        line-height: 43px;
      }

      .s6-intro,
      .s6-body {
        font-size: 16px;
        line-height: 26px;
      }

      .s6-testimonial {
        padding: 24px;
        margin-top: -80px;
      }
    }

    @media (max-width: 480px) {
      .s6-philosophy {
        padding: 30px 20px;
      }

      .s6-eyebrow {
        font-size: 14px;
      }

      .s6-heading {
        font-size: 32px;
        line-height: 38px;
      }

      .s6-intro,
      .s6-body {
        font-size: 15px;
        line-height: 24px;
      }

      .s6-feature-item span {
        font-size: 15px;
      }

      .s6-testimonial {
        padding: 20px;
        margin-top: -70px;
      }

      .s6-quote {
        font-size: 14px;
        line-height: 22px;
      }
    }

.s7-about {
      background: transparent;
      padding: 35px 25px;
      max-width: 1440px;
      margin: 0 auto;
    }

    .s7-about-container {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 25px;
      width: 100%;
    }

    .s7-about-hero {
      width: 100%;
      border-radius: 40px;
      overflow: hidden;
    }

    .s7-about-hero img {
      width: 100%;
      height: auto;
      display: block;
    }

    .s7-about-content {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 15px;
      width: 100%;
    }

    .s7-about-label {
      color: #DDB7FF;
      font-family: "JetBrains Mono", monospace;
      font-size: 16px;
      font-weight: 500;
      line-height: 24px;
      letter-spacing: 1.6px;
      text-transform: uppercase;
      margin: 0;
    }

    .s7-about-heading {
      color: var(--text-secondary);
      font-family: Montserrat, sans-serif;
      font-size: 46px;
      font-weight: 800;
      line-height: 58px;
      letter-spacing: -0.96px;
      margin: 0;
    }

    .s7-about-text {
      color: var(--text-primary);
      font-family: "Be Vietnam Pro", sans-serif;
      font-size: 18px;
      font-weight: 400;
      line-height: 28px;
      margin: 0;
      padding-top: 9px;
    }

    .s7-about-text + .s7-about-text {
      padding-top: 9px;
    }

    .s7-about-cta {
      display: inline-flex;
      padding: 12px 32px;
      justify-content: center;
      align-items: center;
      border-radius: 9999px;
      border: 2px solid #A855F7;
      background: transparent;
      color: #A855F7;
      text-align: center;
      font-family: "Be Vietnam Pro", sans-serif;
      font-size: 16px;
      font-weight: 500;
      line-height: 24px;
      text-decoration: none;
      margin-top: 15px;
      transition: all 0.3s ease;
      cursor: pointer;
    }

    .s7-about-cta:hover {
      background: #A855F7;
      color: #fff;
    }

    @media (max-width: 1024px) {
      .s7-about {
        padding: 30px 20px;
      }

      .s7-about-heading {
        font-size: 40px;
        line-height: 50px;
      }
    }

    @media (max-width: 768px) {
      .s7-about {
        padding: 25px 20px;
      }

      .s7-about-container {
        gap: 20px;
      }

      .s7-about-heading {
        font-size: 36px;
        line-height: 46px;
      }

      .s7-about-text {
        font-size: 16px;
        line-height: 26px;
      }

      .s7-about-label {
        font-size: 14px;
      }
    }

    @media (max-width: 480px) {
      .s7-about {
        padding: 20px 16px;
      }

      .s7-about-container {
        gap: 18px;
      }

      .s7-about-content {
        gap: 12px;
      }

      .s7-about-heading {
        font-size: 32px;
        line-height: 42px;
      }

      .s7-about-text {
        font-size: 16px;
        line-height: 25px;
      }

      .s7-about-cta {
        width: 100%;
        padding: 14px 32px;
      }
    }

.s8-testimonials {
      background: transparent;
      padding: 80px 24px;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .s8-container {
      max-width: 1440px;
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 35px;
    }

    .s8-header {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 15px;
      text-align: center;
    }

    .s8-label {
      color: #DDB7FF;
      font-family: "JetBrains Mono", monospace;
      font-size: 16px;
      font-weight: 400;
      line-height: 24px;
      letter-spacing: 1.6px;
      text-transform: uppercase;
    }

    .s8-heading {
      color: var(--text-secondary);
      font-family: Montserrat, sans-serif;
      font-size: 35px;
      font-weight: 800;
      line-height: 37.6px;
      letter-spacing: -0.96px;
    }

    .s8-testimonials-grid {
      display: flex;
      flex-direction: column;
      gap: 48px;
      width: 100%;
      max-width: 331px;
    }

    .s8-testimonial {
      background: #2D3449;
      border-radius: 24px;
      padding: 32px;
      display: flex;
      flex-direction: column;
      gap: 24px;
    }

    .s8-stars {
      width: 100%;
      height: 20px;
    }

    .s8-quote {
      color: var(--text-primary);
      font-family: "Be Vietnam Pro", sans-serif;
      font-size: 16px;
      font-weight: 400;
      line-height: 24px;
    }

    .s8-author {
      display: flex;
      align-items: center;
      gap: 16px;
    }

    .s8-avatar {
      width: 48px;
      height: 48px;
      border-radius: 9999px;
      border: 1px solid #988D9F;
      background: #222A3D;
      display: flex;
      justify-content: center;
      align-items: center;
      color: #DDB7FF;
      font-family: "Be Vietnam Pro", sans-serif;
      font-size: 16px;
      font-weight: 700;
      line-height: 24px;
    }

    .s8-author-info {
      display: flex;
      flex-direction: column;
    }

    .s8-author-name {
      color: var(--text-secondary);
      font-family: "Be Vietnam Pro", sans-serif;
      font-size: 16px;
      font-weight: 700;
      line-height: 24px;
    }

    .s8-author-name.s8-light {
      font-weight: 400;
    }

    .s8-author-title {
      color: var(--text-primary);
      font-family: "Be Vietnam Pro", sans-serif;
      font-size: 14px;
      font-weight: 400;
      line-height: 20px;
    }

    @media (max-width: 1024px) {
      .s8-testimonials {
        padding: 64px 24px;
      }

      .s8-container {
        gap: 32px;
      }

      .s8-testimonials-grid {
        gap: 40px;
      }
    }

    @media (max-width: 768px) {
      .s8-testimonials {
        padding: 48px 20px;
      }

      .s8-heading {
        font-size: 28px;
        line-height: 32px;
      }

      .s8-testimonials-grid {
        gap: 32px;
      }

      .s8-testimonial {
        padding: 24px;
      }
    }

    @media (max-width: 480px) {
      .s8-testimonials {
        padding: 40px 16px;
      }

      .s8-heading {
        font-size: 24px;
        line-height: 28px;
      }

      .s8-label {
        font-size: 14px;
      }

      .s8-testimonials-grid {
        gap: 24px;
      }

      .s8-testimonial {
        padding: 20px;
        gap: 20px;
      }

      .s8-quote {
        font-size: 15px;
        line-height: 22px;
      }
    }

.s9-games-library {
      background: transparent;
      padding: 64px 24px;
      max-width: 1280px;
      margin: 0 auto;
    }

    .s9-header {
      margin-bottom: 64px;
    }

    .s9-title {
      color: #DEE2F2;
      font-family: Montserrat, sans-serif;
      font-size: 48px;
      font-weight: 800;
      line-height: 56px;
      letter-spacing: -0.96px;
      margin: 0 0 16px 0;
    }

    .s9-description {
      color: #D4C0D7;
      font-family: Inter, sans-serif;
      font-size: 18px;
      font-weight: 400;
      line-height: 28px;
      margin: 0;
      max-width: 672px;
    }

    .s9-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 32px;
    }

    .s9-card {
      border-radius: 12px;
      border: 1px solid #303541;
      background: var(--card-bg, #1B1F2B);
      overflow: hidden;
      display: flex;
      flex-direction: column;
    }

    .s9-card-image {
      position: relative;
      width: 100%;
      aspect-ratio: 387/218;
      overflow: hidden;
    }

    .s9-card-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .s9-card-gradient {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(0deg, #BD00FF 0%, rgba(14, 19, 30, 0.00) 50%, rgba(14, 19, 30, 0.00) 100%);
      opacity: 0.8;
      pointer-events: none;
    }

    .s9-badge {
      position: absolute;
      top: 14px;
      right: 14px;
      background: #00EEFC;
      color: #00686F;
      font-family: "Nimbus Sans", sans-serif;
      font-size: 10px;
      font-weight: 700;
      line-height: 15px;
      letter-spacing: 1px;
      text-transform: uppercase;
      padding: 2px 8px;
      border-radius: 9999px;
    }

    .s9-card-content {
      padding: 24px;
      display: flex;
      flex-direction: column;
      gap: 4px;
      flex: 1;
    }

    .s9-card-title {
      color: var(--text-muted, #DEE2F2);
      font-family: Montserrat, sans-serif;
      font-size: 24px;
      font-weight: 700;
      line-height: 32px;
      margin: 0;
    }

    .s9-card-desc {
      color: #D4C0D7;
      font-family: Inter, sans-serif;
      font-size: 16px;
      font-weight: 400;
      line-height: 24px;
      margin: 0 0 20px 0;
      opacity: 0.8;
      flex: 1;
    }

    .s9-card-button {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 16px 0;
      border-radius: 8px;
      border: 1px solid rgba(236, 178, 255, 0.30);
      background: var(--surface, #2D3449);
      color: var(--text-muted, #DEE2F2);
      text-align: center;
      font-family: Inter, sans-serif;
      font-size: 14px;
      font-weight: 600;
      line-height: 20px;
      letter-spacing: 0.7px;
      text-decoration: none;
      transition: background 0.3s ease, border-color 0.3s ease;
    }

    .s9-card-button:hover {
      background: rgba(236, 178, 255, 0.1);
      border-color: rgba(236, 178, 255, 0.5);
    }

    .s9-card-button img {
      width: 12px;
      height: 12px;
    }

    @media (max-width: 1024px) {
      .s9-games-library {
        padding: 56px 24px;
      }

      .s9-title {
        font-size: 40px;
        line-height: 48px;
      }

      .s9-description {
        font-size: 16px;
        line-height: 26px;
      }

      .s9-grid {
        gap: 24px;
      }
    }

    @media (max-width: 768px) {
      .s9-games-library {
        padding: 48px 20px;
      }

      .s9-header {
        margin-bottom: 48px;
      }

      .s9-title {
        font-size: 32px;
        line-height: 40px;
      }

      .s9-description {
        font-size: 16px;
        line-height: 24px;
      }

      .s9-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
      }

      .s9-card-content {
        padding: 20px;
      }

      .s9-card-title {
        font-size: 20px;
        line-height: 28px;
      }

      .s9-card-desc {
        font-size: 14px;
        line-height: 22px;
      }
    }

    @media (max-width: 480px) {
      .s9-games-library {
        padding: 40px 16px;
      }

      .s9-header {
        margin-bottom: 32px;
      }

      .s9-title {
        font-size: 28px;
        line-height: 36px;
      }

      .s9-description {
        font-size: 14px;
        line-height: 22px;
      }

      .s9-grid {
        grid-template-columns: 1fr;
        gap: 16px;
      }

      .s9-card-content {
        padding: 16px;
      }

      .s9-card-title {
        font-size: 18px;
        line-height: 26px;
      }

      .s9-card-desc {
        font-size: 14px;
        line-height: 20px;
        margin-bottom: 16px;
      }

      .s9-card-button {
        padding: 14px 0;
        font-size: 13px;
      }
    }

.ext-cookie-banner {
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      z-index: 9999;
      display: none;
      align-items: center;
      justify-content: space-between;
      gap: 2rem;
      padding: 1.5rem 3rem;
      background: #2D3449;
      border-radius: 12px;
      margin: 1.5rem;
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    }
    .ext-cookie-banner.ext-cookie-show {
      display: flex;
    }
    .ext-cookie-content {
      display: flex;
      align-items: center;
      gap: 1rem;
      flex: 1;
    }
    .ext-cookie-icon {
      width: 40px;
      height: 40px;
      flex-shrink: 0;
    }
    .ext-cookie-text {
      font-family: 'Inter', sans-serif;
      font-size: 1.125rem;
      color: #ECB2FF;
      margin: 0;
    }
    .ext-cookie-actions {
      display: flex;
      align-items: center;
      gap: 1rem;
    }
    .ext-cookie-btn {
      font-family: 'Inter', sans-serif;
      font-size: 1rem;
      font-weight: 600;
      padding: 0.875rem 2rem;
      border: none;
      border-radius: 12px;
      cursor: pointer;
      transition: all 0.2s ease;
      white-space: nowrap;
    }
    .ext-cookie-btn-settings {
      background: transparent;
      color: #ECB2FF;
      padding: 0.875rem 1.5rem;
    }
    .ext-cookie-btn-settings:hover {
      color: #DDB7FF;
    }
    .ext-cookie-btn-accept {
      background: #ECB2FF;
      color: #1B1F2B;
    }
    .ext-cookie-btn-accept:hover {
      background: #DDB7FF;
    }
    .ext-cookie-btn-decline {
      background: #2D3449;
      color: #ECB2FF;
      border: 2px solid #ECB2FF;
    }
    .ext-cookie-btn-decline:hover {
      background: rgba(236, 178, 255, 0.1);
    }
    @media (max-width: 768px) {
      .ext-cookie-banner {
        flex-direction: column;
        align-items: stretch;
        padding: 1.5rem;
        margin: 1rem;
        gap: 1.5rem;
      }
      .ext-cookie-content {
        flex-direction: column;
        text-align: center;
      }
      .ext-cookie-text {
        font-size: 1rem;
      }
      .ext-cookie-actions {
        flex-direction: column;
        width: 100%;
      }
      .ext-cookie-btn {
        width: 100%;
      }
      .ext-cookie-btn-settings {
        order: 1;
      }
    }

.gd-page { width: 100%; }
.gd-hero-banner {
  width: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 0 0 24px 24px;
  margin-bottom: -100px;
}
.gd-hero-banner img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 600px;
  object-fit: cover;
}
.gd-hero-fade {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 220px;
  background: linear-gradient(180deg, transparent 0%, #0e131e 100%);
  pointer-events: none;
}
.gd-main {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 24px;
  padding: 0 64px 80px;
  align-items: start;
  position: relative;
  z-index: 2;
}
.gd-card {
  background: #1b1f2b;
  border: 1px solid rgba(236, 178, 255, 0.08);
  border-radius: 20px;
  padding: 32px;
  margin-top: 32px;
}
.gd-title-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
}
.gd-genre-badge {
  display: inline-block;
  padding: 6px 18px;
  border-radius: 9999px;
  background: rgba(0, 238, 252, 0.1);
  color: #00EEFC;
  font-family: var(--font-display, "Inter", sans-serif);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 18px;
}
.gd-title {
  font-family: var(--font-display, "Inter", sans-serif);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 800;
  margin: 0 0 14px;
  line-height: 1.1;
  background: linear-gradient(180deg, #ECB2FF 0%, #FFB7E3 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.gd-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--text-secondary, #dae2fd);
  font-size: 14px;
}
.gd-meta-rating { color: #00EEFC; font-weight: 600; }
.gd-meta-dot { opacity: 0.4; }
.gd-play-btn {
  background: linear-gradient(135deg, #ED2FFD 0%, #B026FF 100%);
  color: #ffffff;
  font-family: var(--font-display, "Inter", sans-serif);
  font-size: 20px;
  font-weight: 700;
  padding: 18px 48px;
  border: none;
  border-radius: 14px;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  box-shadow: 0 0 32px rgba(237, 47, 253, 0.4);
}
.gd-play-btn:hover { transform: translateY(-1px); }
.gd-section-title {
  font-family: var(--font-display, "Inter", sans-serif);
  font-size: 22px;
  font-weight: 700;
  color: #00EEFC;
  margin: 0 0 14px;
}
.gd-section-body {
  color: var(--text-primary, #cfc2d6);
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}
.gd-howto {
  border-left: 3px solid #00EEFC;
}
.gd-howto-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  color: #ffffff;
  font-weight: 700;
  margin: 0 0 12px;
}
.gd-features {
  position: sticky;
  top: 24px;
}
.gd-features-title {
  font-family: var(--font-display, "Inter", sans-serif);
  font-size: 24px;
  font-weight: 700;
  color: #ECB2FF;
  margin: 0 0 22px;
}
.gd-feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.gd-feature-item {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 14px;
  align-items: start;
}
.gd-feature-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: rgba(0, 238, 252, 0.1);
  display: flex; align-items: center; justify-content: center;
  color: #00EEFC;
  font-size: 18px;
}
.gd-feature-content { color: var(--text-secondary, #dae2fd); }
.gd-feature-name {
  font-weight: 600; color: #ffffff;
  font-size: 15px; margin-bottom: 2px;
}
.gd-feature-sub {
  font-size: 13px; color: var(--text-primary, #cfc2d6); opacity: 0.85;
}
@media (max-width: 960px) {
  .gd-main { grid-template-columns: 1fr; padding: 0 24px 60px; }
  .gd-features { position: static; }
  .gd-title-card { grid-template-columns: 1fr; gap: 18px; }
  .gd-play-btn { width: 100%; justify-content: center; }
}

.lp-section {
  padding: 60px 64px 100px;
  max-width: 1280px;
  margin: 0 auto;
}
.lp-title {
  font-family: var(--font-display, "Inter", sans-serif);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  margin: 0 0 12px;
  line-height: 1.1;
  background: linear-gradient(180deg, #ECB2FF 0%, #FFB7E3 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.lp-updated {
  color: var(--text-primary, #cfc2d6);
  font-size: 14px;
  margin: 0 0 18px;
}
.lp-divider {
  width: 120px;
  height: 4px;
  border-radius: 4px;
  margin: 8px 0 32px;
  background: linear-gradient(90deg, #00EEFC 0%, #ED2FFD 100%);
}
.lp-card {
  background: #1b1f2b;
  border: 1px solid rgba(236, 178, 255, 0.08);
  border-radius: 20px;
  padding: 40px 44px;
  color: var(--text-primary, #cfc2d6);
  font-size: 15px;
  line-height: 1.7;
}
.lp-card h2 {
  font-family: var(--font-display, "Inter", sans-serif);
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  margin: 28px 0 8px;
}
.lp-card h2:first-child { margin-top: 0; }
.lp-card p { margin: 0 0 12px; }
.lp-card ul {
  margin: 8px 0 16px;
  padding-left: 22px;
}
.lp-card li { margin-bottom: 8px; }
.lp-card a {
  color: #00EEFC;
  text-decoration: underline;
}
@media (max-width: 640px) {
  .lp-section { padding: 40px 16px 60px; }
  .lp-card { padding: 24px 20px; }
}
