:root {
  color-scheme: dark;
  --bg: #ffffff;
  --text-primary: #0f0f0f;
  --brand: #f5c402;
  --accent: #ff6f87;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --radius-sm: 30px;
  --radius-md: 80px;
  --radius-lg: 80px;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body { background: var(--bg); color: var(--text-primary, #fff); font-family: var(--font-body, system-ui, sans-serif); -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
.page { max-width: 1368px; margin: 0 auto; }
.page > section { width: 100%; }

.s0-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
      height: 30px;
      background: transparent;
    }

    .s0-logo-wrapper {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .s0-logo-icon {
      width: 30px;
      height: 30px;
    }

    .s0-logo-text {
      color: var(--text-primary);
      font-family: Inter;
      font-size: 24px;
      font-style: normal;
      font-weight: 900;
      line-height: normal;
      text-transform: uppercase;
    }

    .s0-nav {
      display: flex;
      align-items: center;
      gap: 30px;
    }

    .s0-nav a {
      color: var(--text-primary);
      font-family: Inter;
      font-size: 14px;
      font-style: normal;
      font-weight: 400;
      line-height: normal;
      text-decoration: none;
    }

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

    .s0-burger {
      display: none;
      flex-direction: column;
      gap: 4px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 4px;
    }

    .s0-burger span {
      width: 20px;
      height: 2px;
      background: var(--text-primary);
      transition: all 0.3s;
    }

    @media (max-width: 768px) {
      .s0-nav {
        position: fixed;
        top: 50px;
        right: -100%;
        flex-direction: column;
        background: var(--bg);
        padding: 20px;
        border-radius: 8px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.2);
        transition: right 0.3s;
        z-index: 100;
      }

      .s0-nav.is-open {
        right: 20px;
      }

      .s0-burger {
        display: flex;
      }

      .s0-logo-text {
        font-size: 20px;
      }
    }

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

      .s0-logo-icon {
        width: 24px;
        height: 24px;
      }

      .s0-logo-text {
        font-size: 18px;
      }

      .s0-nav {
        top: 45px;
      }
    }

.s1-hero {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 30px;
      padding: 60px 120px;
      position: relative;
      overflow: hidden;
    }

    .s1-hero-top {
      display: flex;
      align-items: flex-start;
      gap: 254px;
      width: 100%;
    }

    .s1-hero-left {
      display: flex;
      flex-direction: column;
      gap: 30px;
      max-width: 628px;
    }

    .s1-hero-title {
      color: var(--text-primary);
      font-family: Inter, sans-serif;
      font-size: 90px;
      font-weight: 900;
      line-height: 100%;
      text-transform: uppercase;
      margin: 0;
    }

    .s1-hero-desc {
      color: var(--text-primary);
      text-align: justify;
      font-family: Inter, sans-serif;
      font-size: 14px;
      font-weight: 400;
      line-height: normal;
      max-width: 223px;
      margin: 0;
    }

    .s1-hero-right {
      color: var(--text-primary);
      text-align: justify;
      font-family: Inter, sans-serif;
      font-size: 14px;
      font-weight: 400;
      line-height: normal;
      max-width: 318px;
      margin: 0;
    }

    .s1-hero-cta {
      display: flex;
      padding: 26px 60px;
      justify-content: center;
      align-items: center;
      border-radius: 80px;
      background: linear-gradient(90deg, var(--accent) 0%, var(--brand) 43.75%, var(--accent) 100%);
      border: none;
      cursor: pointer;
      transition: transform 0.2s;
    }

    .s1-hero-cta:hover {
      transform: scale(1.05);
    }

    .s1-hero-cta-text {
      color: var(--text-primary);
      text-align: justify;
      font-family: Inter, sans-serif;
      font-size: 18px;
      font-weight: 900;
      line-height: normal;
      text-transform: uppercase;
      margin: 0;
    }

    .s1-hero-barcode {
      position: absolute;
      bottom: 0;
      left: 120px;
      width: 233px;
      height: 115px;
    }

    .s1-hero-character {
      position: absolute;
      right: 0;
      bottom: 0;
      width: 649px;
      height: 592px;
      pointer-events: none;
    }

    @media (max-width: 1024px) {
      .s1-hero {
        padding: 50px 80px;
        gap: 25px;
      }

      .s1-hero-top {
        gap: 100px;
      }

      .s1-hero-title {
        font-size: 72px;
      }

      .s1-hero-character {
        width: 520px;
        height: 474px;
      }

      .s1-hero-barcode {
        left: 80px;
        width: 186px;
        height: 92px;
      }
    }

    @media (max-width: 768px) {
      .s1-hero {
        padding: 40px 40px;
        gap: 20px;
      }

      .s1-hero-top {
        flex-direction: column;
        gap: 30px;
      }

      .s1-hero-title {
        font-size: 56px;
        max-width: 100%;
      }

      .s1-hero-right {
        max-width: 100%;
      }

      .s1-hero-desc {
        max-width: 100%;
      }

      .s1-hero-character {
        width: 400px;
        height: 365px;
        right: -50px;
      }

      .s1-hero-barcode {
        left: 40px;
        width: 150px;
        height: 74px;
      }

      .s1-hero-cta {
        padding: 22px 50px;
      }
    }

    @media (max-width: 480px) {
      .s1-hero {
        padding: 30px 20px;
        gap: 20px;
        min-height: 600px;
      }

      .s1-hero-title {
        font-size: 40px;
      }

      .s1-hero-right,
      .s1-hero-desc {
        font-size: 13px;
      }

      .s1-hero-cta {
        padding: 20px 40px;
        width: 100%;
      }

      .s1-hero-cta-text {
        font-size: 16px;
      }

      .s1-hero-character {
        width: 300px;
        height: 274px;
        right: -30px;
        bottom: 50px;
      }

      .s1-hero-barcode {
        left: 20px;
        width: 120px;
        height: 59px;
      }
    }

.s2-trouble {
      background: linear-gradient(90deg, #FF6F87 0%, #F5C402 43.75%, #FF6F87 100%);
      padding: 50px 84px;
      display: flex;
      flex-direction: column;
      gap: 30px;
    }

    .s2-trouble-heading {
      color: var(--text-primary);
      font-family: Inter, sans-serif;
      font-size: 60px;
      font-weight: 900;
      line-height: 100%;
      text-transform: uppercase;
      margin: 0;
      max-width: 1098px;
    }

    .s2-trouble-grid {
      display: flex;
      gap: 20px;
      align-items: flex-start;
    }

    .s2-trouble-card {
      display: flex;
      padding: 20px;
      align-items: center;
      gap: 10px;
      border-radius: 30px;
      border: 1px solid #FFF;
      flex: 1;
      min-width: 0;
    }

    .s2-trouble-card-inner {
      display: flex;
      width: 100%;
      flex-direction: column;
      align-items: center;
      gap: 15px;
    }

    .s2-trouble-icon {
      width: 100px;
      height: 100px;
      object-fit: contain;
    }

    .s2-trouble-content {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 10px;
      width: 100%;
    }

    .s2-trouble-title {
      color: var(--text-primary);
      text-align: center;
      font-family: Inter, sans-serif;
      font-size: 20px;
      font-weight: 900;
      line-height: 100%;
      text-transform: uppercase;
      margin: 0;
    }

    .s2-trouble-desc {
      color: var(--text-primary);
      text-align: center;
      font-family: Inter, sans-serif;
      font-size: 14px;
      font-weight: 400;
      line-height: normal;
      margin: 0;
    }

    @media (max-width: 1024px) {
      .s2-trouble {
        padding: 40px 60px;
      }

      .s2-trouble-heading {
        font-size: 48px;
      }

      .s2-trouble-grid {
        gap: 16px;
      }

      .s2-trouble-card {
        padding: 16px;
      }

      .s2-trouble-icon {
        width: 80px;
        height: 80px;
      }

      .s2-trouble-title {
        font-size: 18px;
      }

      .s2-trouble-desc {
        font-size: 13px;
      }
    }

    @media (max-width: 768px) {
      .s2-trouble {
        padding: 32px 40px;
        gap: 24px;
      }

      .s2-trouble-heading {
        font-size: 36px;
      }

      .s2-trouble-grid {
        flex-wrap: wrap;
        gap: 16px;
      }

      .s2-trouble-card {
        flex: 1 1 calc(50% - 8px);
        min-width: 200px;
      }
    }

    @media (max-width: 480px) {
      .s2-trouble {
        padding: 24px 20px;
        gap: 20px;
      }

      .s2-trouble-heading {
        font-size: 28px;
      }

      .s2-trouble-grid {
        flex-direction: column;
      }

      .s2-trouble-card {
        width: 100%;
        flex: 1 1 auto;
      }

      .s2-trouble-card-inner {
        gap: 12px;
      }

      .s2-trouble-icon {
        width: 70px;
        height: 70px;
      }

      .s2-trouble-title {
        font-size: 16px;
      }

      .s2-trouble-desc {
        font-size: 12px;
      }
    }

.s3-section {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 30px;
      padding: 40px 80px;
      max-width: 1440px;
      margin: 0 auto;
    }

    .s3-content {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 30px;
      max-width: 580px;
    }

    .s3-title {
      color: var(--text-primary);
      font-family: Inter, sans-serif;
      font-size: 60px;
      font-weight: 900;
      line-height: 100%;
      text-transform: uppercase;
      margin: 0;
    }

    .s3-description {
      color: var(--text-primary);
      font-family: Inter, sans-serif;
      font-size: 14px;
      font-weight: 400;
      line-height: normal;
      margin: 0;
      white-space: pre-line;
    }

    .s3-cta {
      display: inline-flex;
      padding: 26px 60px;
      justify-content: center;
      align-items: center;
      border-radius: 80px;
      background: linear-gradient(90deg, #FFD700 0%, #FF0080 43.75%, #FFD700 100%);
      border: none;
      cursor: pointer;
      text-decoration: none;
      transition: transform 0.2s, box-shadow 0.2s;
    }

    .s3-cta:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(255, 0, 128, 0.3);
    }

    .s3-cta:active {
      transform: translateY(0);
    }

    .s3-cta-text {
      color: var(--text-primary);
      font-family: Inter, sans-serif;
      font-size: 18px;
      font-weight: 900;
      text-transform: uppercase;
      margin: 0;
    }

    .s3-image {
      width: 590px;
      height: 373px;
      object-fit: cover;
      border-radius: 30px;
      flex-shrink: 0;
    }

    @media (max-width: 1024px) {
      .s3-section {
        padding: 40px 60px;
        gap: 40px;
      }

      .s3-content {
        max-width: 500px;
      }

      .s3-title {
        font-size: 48px;
      }

      .s3-image {
        width: 450px;
        height: 285px;
      }
    }

    @media (max-width: 768px) {
      .s3-section {
        flex-direction: column;
        padding: 40px;
        gap: 30px;
      }

      .s3-content {
        max-width: 100%;
      }

      .s3-title {
        font-size: 40px;
      }

      .s3-description {
        font-size: 13px;
      }

      .s3-cta {
        padding: 22px 50px;
      }

      .s3-cta-text {
        font-size: 16px;
      }

      .s3-image {
        width: 100%;
        height: auto;
        order: -1;
      }
    }

    @media (max-width: 480px) {
      .s3-section {
        padding: 30px 20px;
        gap: 24px;
      }

      .s3-content {
        gap: 24px;
      }

      .s3-title {
        font-size: 32px;
      }

      .s3-description {
        font-size: 12px;
      }

      .s3-cta {
        padding: 20px 40px;
        width: 100%;
      }

      .s3-cta-text {
        font-size: 15px;
      }
    }

.s4-section {
      position: relative;
      width: 100%;
      max-width: 1368px;
      margin: 0 auto;
      padding: 60px 20px;
      box-sizing: border-box;
      overflow: hidden;
    }

    .s4-left-img {
      position: absolute;
      left: 0;
      top: 21px;
      width: 342px;
      height: 779px;
      object-fit: contain;
      pointer-events: none;
    }

    .s4-right-img {
      position: absolute;
      right: 0;
      top: 358px;
      width: 342px;
      height: 442px;
      object-fit: contain;
      pointer-events: none;
    }

    .s4-content {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 30px;
      max-width: 644px;
      margin: 0 auto;
      position: relative;
      z-index: 1;
    }

    .s4-heading {
      color: var(--text-primary);
      text-align: center;
      font-family: Inter, sans-serif;
      font-size: 60px;
      font-weight: 900;
      line-height: 100%;
      text-transform: uppercase;
      margin: 0;
    }

    .s4-description {
      color: var(--text-primary);
      text-align: center;
      font-family: Inter, sans-serif;
      font-size: 14px;
      font-weight: 400;
      line-height: normal;
      margin: 0;
      white-space: pre-line;
    }

    .s4-games-grid {
      display: flex;
      flex-direction: column;
      gap: 20px;
      width: 100%;
      max-width: 580px;
    }

    .s4-games-row {
      display: flex;
      gap: 20px;
      justify-content: center;
    }

    .s4-game-card {
      width: 180px;
      height: 180px;
      border-radius: 30px;
      overflow: hidden;
      flex-shrink: 0;
    }

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

    .s4-cta {
      display: flex;
      padding: 26px 60px;
      justify-content: center;
      align-items: center;
      border-radius: 80px;
      background: linear-gradient(90deg, var(--accent) 0%, var(--brand) 43.75%, var(--accent) 100%);
      border: none;
      cursor: pointer;
      text-decoration: none;
      transition: transform 0.2s, box-shadow 0.2s;
    }

    .s4-cta:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    }

    .s4-cta-text {
      color: var(--text-primary);
      font-family: Inter, sans-serif;
      font-size: 18px;
      font-weight: 900;
      line-height: normal;
      text-transform: uppercase;
      margin: 0;
    }

    @media (max-width: 1024px) {
      .s4-left-img,
      .s4-right-img {
        width: 280px;
        height: auto;
      }

      .s4-heading {
        font-size: 48px;
      }

      .s4-content {
        max-width: 560px;
      }

      .s4-games-grid {
        max-width: 500px;
      }

      .s4-game-card {
        width: 150px;
        height: 150px;
      }
    }

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

      .s4-left-img,
      .s4-right-img {
        display: none;
      }

      .s4-heading {
        font-size: 36px;
      }

      .s4-description {
        font-size: 13px;
      }

      .s4-games-grid {
        gap: 16px;
      }

      .s4-games-row {
        gap: 16px;
      }

      .s4-game-card {
        width: 120px;
        height: 120px;
        border-radius: 20px;
      }

      .s4-cta {
        padding: 20px 48px;
      }

      .s4-cta-text {
        font-size: 16px;
      }
    }

    @media (max-width: 480px) {
      .s4-section {
        padding: 30px 16px;
      }

      .s4-content {
        gap: 24px;
      }

      .s4-heading {
        font-size: 28px;
      }

      .s4-description {
        font-size: 12px;
      }

      .s4-games-grid {
        gap: 12px;
      }

      .s4-games-row {
        gap: 12px;
        flex-wrap: wrap;
        justify-content: center;
      }

      .s4-game-card {
        width: 100px;
        height: 100px;
        border-radius: 16px;
      }

      .s4-cta {
        padding: 18px 40px;
        width: 100%;
      }

      .s4-cta-text {
        font-size: 14px;
      }
    }

.s5-hero {
      display: grid;
      grid-template-columns: 590px 1fr;
      gap: 30px;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0;
      background: transparent;
    }

    .s5-hero__image {
      width: 590px;
      height: 518px;
      object-fit: cover;
      border-radius: 0;
    }

    .s5-hero__content {
      display: flex;
      flex-direction: column;
      gap: 30px;
      align-items: flex-start;
      justify-content: flex-start;
    }

    .s5-hero__title {
      color: var(--text-primary);
      font-family: Inter, sans-serif;
      font-size: 60px;
      font-weight: 900;
      line-height: 100%;
      text-transform: uppercase;
      margin: 0;
    }

    .s5-hero__text {
      color: var(--text-primary);
      font-family: Inter, sans-serif;
      font-size: 14px;
      font-weight: 400;
      line-height: normal;
      margin: 0;
      white-space: pre-line;
    }

    .s5-hero__cta {
      display: inline-flex;
      padding: 26px 60px;
      justify-content: center;
      align-items: center;
      gap: 10px;
      border-radius: 80px;
      background: linear-gradient(90deg, var(--accent) 0%, var(--brand) 43.75%, var(--accent) 100%);
      border: none;
      cursor: pointer;
      text-decoration: none;
      transition: transform 0.2s;
    }

    .s5-hero__cta:hover {
      transform: scale(1.02);
    }

    .s5-hero__cta-text {
      color: var(--text-primary);
      font-family: Inter, sans-serif;
      font-size: 18px;
      font-weight: 900;
      line-height: normal;
      text-transform: uppercase;
      margin: 0;
    }

    @media (max-width: 1024px) {
      .s5-hero {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
        padding: 0 20px;
      }

      .s5-hero__image {
        width: 100%;
        height: auto;
        aspect-ratio: 590 / 518;
      }

      .s5-hero__title {
        font-size: 48px;
      }

      .s5-hero__cta {
        padding: 22px 48px;
      }
    }

    @media (max-width: 768px) {
      .s5-hero {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .s5-hero__title {
        font-size: 36px;
      }

      .s5-hero__text {
        font-size: 13px;
      }

      .s5-hero__cta {
        padding: 20px 40px;
        font-size: 16px;
      }
    }

    @media (max-width: 480px) {
      .s5-hero {
        padding: 0 16px;
      }

      .s5-hero__title {
        font-size: 28px;
      }

      .s5-hero__text {
        font-size: 12px;
      }

      .s5-hero__cta {
        width: 100%;
        padding: 18px 32px;
      }

      .s5-hero__cta-text {
        font-size: 14px;
      }
    }

.s6-contacts {
      background: linear-gradient(90deg, #FF6F87 0%, #F5C402 43.75%, #FF6F87 100%);
      padding: 50px 84px;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .s6-container {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 30px;
      max-width: 1200px;
      width: 100%;
    }

    .s6-title {
      color: #0F0F0F;
      text-align: center;
      font-family: Inter, sans-serif;
      font-size: 60px;
      font-style: normal;
      font-weight: 900;
      line-height: 100%;
      text-transform: uppercase;
      margin: 0;
    }

    .s6-content {
      color: #0F0F0F;
      text-align: center;
      font-family: Inter, sans-serif;
      font-size: 20px;
      font-style: normal;
      font-weight: 900;
      line-height: normal;
      margin: 0;
      white-space: pre-line;
    }

    .s6-image {
      width: 590px;
      height: 320px;
      border-radius: 30px;
      object-fit: cover;
    }

    @media (max-width: 1024px) {
      .s6-contacts {
        padding: 40px 60px;
      }

      .s6-title {
        font-size: 48px;
      }

      .s6-content {
        font-size: 18px;
      }

      .s6-image {
        width: 500px;
        height: 270px;
      }
    }

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

      .s6-container {
        gap: 24px;
      }

      .s6-title {
        font-size: 36px;
      }

      .s6-content {
        font-size: 16px;
      }

      .s6-image {
        width: 100%;
        max-width: 450px;
        height: auto;
      }
    }

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

      .s6-container {
        gap: 20px;
      }

      .s6-title {
        font-size: 28px;
      }

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

      .s6-image {
        max-width: 100%;
      }
    }

.s7-footer {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 54px;
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto;
      background: transparent;
    }

    .s7-footer-brand {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .s7-footer-logo {
      width: 30px;
      height: 30px;
    }

    .s7-footer-title {
      color: var(--text-primary);
      font-family: Inter, sans-serif;
      font-size: 24px;
      font-weight: 900;
      text-transform: uppercase;
      margin: 0;
    }

    .s7-footer-nav {
      display: flex;
      align-items: center;
      gap: 30px;
      flex-wrap: wrap;
      justify-content: center;
    }

    .s7-footer-nav a {
      color: var(--text-primary);
      font-family: Inter, sans-serif;
      font-size: 14px;
      font-weight: 400;
      text-decoration: none;
      transition: opacity 0.2s;
    }

    .s7-footer-nav a:hover {
      opacity: 0.7;
    }

    .s7-footer-social {
      display: flex;
      align-items: center;
      gap: 20px;
      justify-content: center;
    }

    .s7-footer-social-icon {
      width: 50px;
      height: 50px;
      transition: transform 0.2s;
    }

    .s7-footer-social-icon:hover {
      transform: scale(1.1);
    }

    .s7-footer-copyright {
      color: rgba(15, 15, 15, 0.50);
      font-family: Inter, sans-serif;
      font-size: 14px;
      font-weight: 400;
      text-align: center;
      margin: 0;
    }

    @media (max-width: 768px) {
      .s7-footer {
        gap: 40px;
        padding: 30px 20px;
      }

      .s7-footer-nav {
        gap: 20px;
      }

      .s7-footer-title {
        font-size: 20px;
      }

      .s7-footer-nav a {
        font-size: 13px;
      }
    }

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

      .s7-footer-nav {
        flex-direction: column;
        gap: 16px;
      }

      .s7-footer-brand {
        gap: 8px;
      }

      .s7-footer-logo {
        width: 24px;
        height: 24px;
      }

      .s7-footer-title {
        font-size: 18px;
      }

      .s7-footer-social-icon {
        width: 40px;
        height: 40px;
      }

      .s7-footer-copyright {
        font-size: 12px;
      }
    }

.s8-games-section {
      position: relative;
      padding: 80px 20px;
      overflow: hidden;
      background: transparent;
    }

    .s8-container {
      max-width: 1368px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 60px;
    }

    .s8-left-image {
      width: 342px;
      height: auto;
      object-fit: contain;
    }

    .s8-content {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 30px;
      width: 644px;
    }

    .s8-heading {
      color: #0F0F0F;
      text-align: center;
      font-family: var(--font-display);
      font-size: 60px;
      font-weight: 900;
      line-height: 100%;
      text-transform: uppercase;
      margin: 0;
    }

    .s8-description {
      color: #0F0F0F;
      text-align: center;
      font-family: var(--font-body);
      font-size: 14px;
      font-weight: 400;
      line-height: normal;
      margin: 0;
    }

    .s8-games-grid {
      display: flex;
      flex-direction: column;
      gap: 20px;
      width: 100%;
    }

    .s8-games-row {
      display: flex;
      align-items: center;
      gap: 20px;
    }

    .s8-game-item {
      width: 180px;
      height: 180px;
      border-radius: 30px;
      overflow: hidden;
    }

    .s8-game-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .s8-right-image {
      width: 342px;
      height: auto;
      object-fit: contain;
    }

    @media (max-width: 1024px) {
      .s8-container {
        gap: 40px;
      }

      .s8-left-image,
      .s8-right-image {
        width: 280px;
      }

      .s8-content {
        width: 540px;
      }

      .s8-heading {
        font-size: 50px;
      }

      .s8-game-item {
        width: 160px;
        height: 160px;
      }

      .s8-games-row {
        gap: 16px;
      }
    }

    @media (max-width: 768px) {
      .s8-games-section {
        padding: 60px 16px;
      }

      .s8-container {
        flex-direction: column;
        gap: 30px;
      }

      .s8-left-image,
      .s8-right-image {
        width: 200px;
      }

      .s8-content {
        width: 100%;
        max-width: 600px;
      }

      .s8-heading {
        font-size: 40px;
      }

      .s8-game-item {
        width: 140px;
        height: 140px;
      }

      .s8-games-row {
        gap: 12px;
        justify-content: center;
      }
    }

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

      .s8-left-image,
      .s8-right-image {
        width: 150px;
      }

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

      .s8-description {
        font-size: 13px;
      }

      .s8-games-grid {
        gap: 16px;
      }

      .s8-games-row {
        flex-direction: column;
        gap: 16px;
        width: 100%;
      }

      .s8-game-item {
        width: 100%;
        max-width: 280px;
        height: 280px;
      }
    }

.s9-game-hero {
      max-width: 996px;
      margin: 0 auto;
      padding: 60px 20px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 30px;
      background: transparent;
    }

    .s9-game-hero h1 {
      align-self: stretch;
      color: var(--text-primary);
      text-align: center;
      font-family: Inter, sans-serif;
      font-size: 60px;
      font-style: normal;
      font-weight: 900;
      line-height: 100%;
      text-transform: uppercase;
      margin: 0;
    }

    .s9-game-hero .s9-description {
      align-self: stretch;
      color: var(--text-primary);
      text-align: center;
      font-family: Inter, sans-serif;
      font-size: 14px;
      font-style: normal;
      font-weight: 400;
      line-height: normal;
      margin: 0;
    }

    .s9-game-hero .s9-game-icon {
      width: 180px;
      height: 180px;
      border-radius: 30px;
      display: block;
    }

    .s9-game-hero .s9-cta-button {
      display: flex;
      padding: 26px 60px;
      justify-content: center;
      align-items: center;
      gap: 10px;
      border-radius: 80px;
      background: linear-gradient(90deg, var(--accent) 0%, var(--brand) 43.75%, var(--accent) 100%);
      border: none;
      cursor: pointer;
      text-decoration: none;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .s9-game-hero .s9-cta-button:hover {
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }

    .s9-game-hero .s9-cta-button:active {
      transform: translateY(0);
    }

    .s9-game-hero .s9-cta-text {
      color: var(--text-primary);
      text-align: justify;
      font-family: Inter, sans-serif;
      font-size: 18px;
      font-style: normal;
      font-weight: 900;
      line-height: normal;
      text-transform: uppercase;
      margin: 0;
    }

    @media (max-width: 1024px) {
      .s9-game-hero {
        padding: 50px 20px;
        gap: 25px;
      }

      .s9-game-hero h1 {
        font-size: 50px;
      }

      .s9-game-hero .s9-game-icon {
        width: 160px;
        height: 160px;
      }
    }

    @media (max-width: 768px) {
      .s9-game-hero {
        padding: 40px 20px;
        gap: 20px;
      }

      .s9-game-hero h1 {
        font-size: 40px;
      }

      .s9-game-hero .s9-description {
        font-size: 13px;
      }

      .s9-game-hero .s9-game-icon {
        width: 140px;
        height: 140px;
      }

      .s9-game-hero .s9-cta-button {
        padding: 22px 50px;
      }

      .s9-game-hero .s9-cta-text {
        font-size: 16px;
      }
    }

    @media (max-width: 480px) {
      .s9-game-hero {
        padding: 30px 16px;
        gap: 20px;
      }

      .s9-game-hero h1 {
        font-size: 32px;
      }

      .s9-game-hero .s9-description {
        font-size: 12px;
      }

      .s9-game-hero .s9-game-icon {
        width: 120px;
        height: 120px;
      }

      .s9-game-hero .s9-cta-button {
        padding: 20px 40px;
      }

      .s9-game-hero .s9-cta-text {
        font-size: 14px;
      }
    }

.ext-cookie-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.5);
      z-index: 9999;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 20px;
      box-sizing: border-box;
    }
    .ext-cookie-overlay.ext-cookie-hidden {
      display: none;
    }
    .ext-cookie-banner {
      background: #ffffff;
      border-radius: 30px;
      padding: 48px 40px;
      max-width: 778px;
      width: 100%;
      text-align: center;
      box-sizing: border-box;
    }
    .ext-cookie-icon {
      width: 120px;
      height: 120px;
      margin: 0 auto 24px;
      background: linear-gradient(135deg, #D4A574 0%, #C89A5E 100%);
      border-radius: 50%;
      position: relative;
    }
    .ext-cookie-icon::before,
    .ext-cookie-icon::after {
      content: '';
      position: absolute;
      background: #8B6F47;
      border-radius: 50%;
    }
    .ext-cookie-icon::before {
      width: 24px;
      height: 24px;
      top: 30%;
      left: 25%;
    }
    .ext-cookie-icon::after {
      width: 20px;
      height: 20px;
      top: 45%;
      right: 28%;
    }
    .ext-cookie-title {
      font-family: Inter, sans-serif;
      font-size: 48px;
      font-weight: 700;
      color: #0F0F0F;
      margin: 0 0 24px 0;
      line-height: 1.2;
    }
    .ext-cookie-text {
      font-family: Inter, sans-serif;
      font-size: 18px;
      font-weight: 400;
      color: #0F0F0F;
      line-height: 1.6;
      margin: 0 0 32px 0;
    }
    .ext-cookie-btn-accept {
      display: block;
      width: 100%;
      max-width: 520px;
      margin: 0 auto 16px;
      padding: 24px;
      font-family: Inter, sans-serif;
      font-size: 20px;
      font-weight: 700;
      color: #0F0F0F;
      background: linear-gradient(90deg, #FF6B6B 0%, #FFA500 25%, #FFD700 50%, #FFA500 75%, #FF6B6B 100%);
      border: none;
      border-radius: 80px;
      cursor: pointer;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }
    .ext-cookie-btn-accept:hover {
      opacity: 0.9;
    }
    .ext-cookie-btn-settings {
      display: block;
      width: 100%;
      max-width: 520px;
      margin: 0 auto;
      padding: 24px;
      font-family: Inter, sans-serif;
      font-size: 20px;
      font-weight: 700;
      color: #0F0F0F;
      background: #ffffff;
      border: 3px solid #0F0F0F;
      border-radius: 80px;
      cursor: pointer;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }
    .ext-cookie-btn-settings:hover {
      background: #f5f5f5;
    }
    @media (max-width: 768px) {
      .ext-cookie-banner {
        padding: 32px 24px;
        max-width: 330px;
      }
      .ext-cookie-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 20px;
      }
      .ext-cookie-icon::before {
        width: 16px;
        height: 16px;
      }
      .ext-cookie-icon::after {
        width: 14px;
        height: 14px;
      }
      .ext-cookie-title {
        font-size: 32px;
        margin-bottom: 16px;
      }
      .ext-cookie-text {
        font-size: 16px;
        margin-bottom: 24px;
      }
      .ext-cookie-btn-accept,
      .ext-cookie-btn-settings {
        font-size: 18px;
        padding: 20px;
      }
    }

.s10-legal {
  width: 100%;
  padding: 80px 84px 100px;
  background: #FFFFFF;
  box-sizing: border-box;
}

.s10-legal-container {
  max-width: 900px;
  margin: 0 auto;
}

.s10-legal-title {
  font-family: 'Inter', sans-serif;
  font-size: 60px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  color: #0F0F0F;
  margin: 0 0 40px;
}

.s10-legal-content {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: #0F0F0F;
}

.s10-legal-content h2 {
  font-size: 20px;
  font-weight: 900;
  margin: 28px 0 8px;
  text-transform: uppercase;
}
.s10-legal-content h2:first-child { margin-top: 0; }

.s10-legal-content p { margin: 0 0 16px; }
.s10-legal-content ul {
  margin: 8px 0 18px;
  padding-left: 22px;
}
.s10-legal-content li { margin-bottom: 6px; }
.s10-legal-content a {
  color: #0F0F0F;
  text-decoration: underline;
}

@media (max-width: 760px) {
  .s10-legal { padding: 48px 24px 60px; }
  .s10-legal-title { font-size: 36px; margin-bottom: 24px; }
  .s10-legal-content { font-size: 15px; }
}

html, body { margin: 0; padding: 0; width: 100%; max-width: 100vw; overflow-x: hidden; }
.page { max-width: none !important; width: 100% !important; margin: 0 !important; }

.page > section, .s0-header {
  width: 100% !important;
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  box-sizing: border-box;
}

.s0-header {
  padding: 20px clamp(20px, 4vw, 84px) !important;
  height: auto !important;
  min-height: 70px;
}

.s1-hero {
  padding: 60px clamp(20px, 6vw, 120px) !important;
  padding-bottom: 240px !important; 
}

.s2-trouble {
  padding: 50px clamp(20px, 6vw, 84px) !important;
}

.s3-section {
  padding: 40px clamp(20px, 6vw, 80px) !important;
  max-width: none !important;
  width: 100% !important;
}

.s4-section {
  padding: 60px clamp(20px, 4vw, 80px) !important;
  max-width: none !important;
  width: 100% !important;
  margin: 0 !important;
}

.s5-hero {
  max-width: none !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 60px clamp(20px, 6vw, 84px) !important;
}

.s6-contacts {
  padding: 50px clamp(20px, 6vw, 84px) !important;
  width: 100% !important;
}
.s6-container {
  max-width: 1200px;
  margin: 0 auto;
}

.s7-footer {
  padding: 20px clamp(20px, 4vw, 84px) !important;
}

.s8-games-section {
  padding: 60px clamp(20px, 4vw, 80px) !important;
  width: 100% !important;
}

.s9-game-hero {
  padding: 60px clamp(20px, 6vw, 80px) !important;
}

.s1-hero-cta {
  position: relative;
  z-index: 5;
}
.s1-hero-barcode {
  position: absolute;
  bottom: 30px !important;
  left: clamp(20px, 6vw, 120px) !important;
  width: 200px !important;
  height: auto !important;
  z-index: 1;
}
.s1-hero-character {
  z-index: 2;
}

@media (max-width: 760px) {
  .s1-hero {
    padding: 32px 20px !important;
    padding-bottom: 32px !important;
  }
  .s1-hero-top { gap: 24px; }
  .s1-hero-title { font-size: clamp(36px, 9vw, 64px) !important; }
  .s1-hero-cta {
    width: 100% !important;
    max-width: 360px !important;
    margin: 0 auto !important;
  }
  
  .s1-hero-character {
    position: static !important;
    width: 100% !important;
    max-width: 320px !important;
    height: auto !important;
    margin: 24px auto 0 !important;
    display: block;
  }
  .s1-hero-barcode {
    position: static !important;
    width: 180px !important;
    height: auto !important;
    margin: 16px auto 0 !important;
    display: block;
  }
  .s2-trouble  { padding: 40px 20px !important; }
  .s2-trouble-heading { font-size: clamp(28px, 8vw, 48px) !important; }
  .s2-trouble-grid {
    flex-direction: column;
    gap: 16px;
  }
  .s3-section, .s4-section, .s5-hero, .s6-contacts, .s8-games-section, .s9-game-hero {
    padding: 32px 20px !important;
  }
  .s5-hero { grid-template-columns: 1fr !important; gap: 24px !important; }
  .s7-footer { padding: 24px 20px !important; }
}

@media (max-width: 1100px) and (min-width: 761px) {
  .s1-hero-character { width: 420px !important; height: auto !important; }
  .s1-hero { padding-bottom: 200px !important; }
}
