 :root {
        --ice-white: #e8f4fd;
        --snow-white: #f0f8ff;
        --frost-blue: #c8e6f5;
        --glacier-blue: #7ec8e3;
        --deep-ice: #2a5f8f;
        --arctic-dark: #0d2137;
        --crystal-blue: #a8d8ea;
        --winter-accent: #4fc3f7;
        --gold: #ffd700;
        --gold-light: #ffe564;
        --green-cta: #00c853;
        --green-dark: #1b5e20;
        --teal: #00acc1;
        --white: #ffffff;
        --text-dark: #0a1929;
        --text-mid: #1e3a5f;
      }

      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }

      body {
        font-family: "Poppins", sans-serif;
        background: var(--snow-white);
        color: var(--text-dark);
        overflow-x: hidden;
      }

      /* ===== SNOWFALL ===== */
      #snow-canvas {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        pointer-events: none;
        z-index: 9999;
      }

      /* ===== FLOATING SOCIAL ===== */
      .social-float {
        position: fixed;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        z-index: 999;
        display: flex;
        flex-direction: column;
        gap: 2px;
      }
      .social-float a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        text-decoration: none;
        font-size: 18px;
        border-radius: 6px 0 0 6px;
        transition: transform 0.2s;
      }
      .social-float a:hover {
        transform: translateX(-4px);
      }
      .s-wa {
        background: #25d366;
      }
      .s-yt {
        background: #ff0000;
      }
      .s-tg {
        background: #0088cc;
      }
      .s-tw {
        background: #1da1f2;
      }
      .s-ig {
        background: linear-gradient(
          45deg,
          #f09433,
          #e6683c,
          #dc2743,
          #cc2366,
          #bc1888
        );
      }
      .s-pt {
        background: #e60023;
      }
      .s-ch {
        background: #00acc1;
      }

      /* ===== TOP BANNER ===== */
      .top-banner {
        background: linear-gradient(90deg, #0d47a1, #1565c0, #0288d1);
        color: white;
        text-align: center;
        padding: 8px;
        font-size: 13px;
        font-weight: 700;
        letter-spacing: 0.5px;
        animation: shimmer 3s infinite;
      }
      @keyframes shimmer {
        0%,
        100% {
          opacity: 1;
        }
        50% {
          opacity: 0.85;
        }
      }

      /* ===== NAV ===== */
      nav {
        background: rgba(13, 33, 55, 0.97);
        backdrop-filter: blur(10px);
        padding: 12px 24px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: sticky;
        top: 0;
        z-index: 100;
        border-bottom: 2px solid rgba(126, 200, 227, 0.3);
      }
      .nav-logo {
        display: flex;
        align-items: center;
        gap: 10px;
        text-decoration: none;
        color: white;
      }
      .nav-logo img {
        width: 226px;
        height: 40px;
        border-radius: 10px;
      }
      .nav-logo span {
        font-family: "Nunito", sans-serif;
        font-size: 22px;
        font-weight: 900;
        background: linear-gradient(135deg, #fff 0%, var(--glacier-blue) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
      }
      .nav-download {
        background: linear-gradient(135deg, #00c853, #1b5e20);
        color: white;
        padding: 10px 22px;
        border-radius: 25px;
        font-weight: 700;
        text-decoration: none;
        font-size: 14px;
        box-shadow: 0 4px 15px rgba(0, 200, 83, 0.4);
        transition:
          transform 0.2s,
          box-shadow 0.2s;
        display: flex;
        align-items: center;
        gap: 6px;
      }
      .nav-download:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(0, 200, 83, 0.5);
      }

      /* ===== HERO ===== */
      .hero {
        background: linear-gradient(
          160deg,
          #0d2137 0%,
          #0a3d6b 40%,
          #0d4d8a 70%,
          #0277bd 100%
        );
        position: relative;
        overflow: hidden;
        padding: 8rem;
        min-height: 520px;
        display: flex;
        align-items: center;
      }
      .hero::before {
        content: "";
        position: absolute;
        inset: 0;
        background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25' height='100%25'%3E%3Cdefs%3E%3CradialGradient id='g' cx='70%25' cy='50%25' r='50%25'%3E%3Cstop offset='0%25' stop-color='%23a8d8ea' stop-opacity='0.15'/%3E%3Cstop offset='100%25' stop-color='transparent'/%3E%3C/radialGradient%3E%3C/defs%3E%3Crect width='100%25' height='100%25' fill='url(%23g)'/%3E%3C/svg%3E");
      }
      /* Snowflake decorations */
      .hero::after {
        content: "❄ ❅ ❆ ❄ ❅";
        position: absolute;
        top: 20px;
        right: 60px;
        font-size: 28px;
        color: rgba(255, 255, 255, 0.15);
        letter-spacing: 20px;
      }
      .hero-content {
        position: relative;
        z-index: 2;
        max-width: 550px;
      }
      .hero-badge {
        display: inline-block;
        background: rgba(255, 215, 0, 0.15);
        border: 1px solid rgba(255, 215, 0, 0.4);
        color: var(--gold-light);
        padding: 6px 16px;
        border-radius: 20px;
        font-size: 12px;
        font-weight: 700;
        margin-bottom: 16px;
        letter-spacing: 1px;
      }
      .hero h1 {
        font-family: "Nunito", sans-serif;
        font-size: clamp(32px, 5vw, 52px);
        font-weight: 900;
        color: white;
        line-height: 1.1;
        margin-bottom: 12px;
      }
      .hero h1 span {
        background: linear-gradient(135deg, var(--gold), var(--gold-light));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
      }
      .hero-sub {
        color: rgba(255, 255, 255, 0.8);
        font-size: 16px;
        margin-bottom: 10px;
      }
      .hero-bonus {
        background: linear-gradient(
          90deg,
          rgba(255, 215, 0, 0.2),
          rgba(255, 215, 0, 0.05)
        );
        border-left: 3px solid var(--gold);
        color: var(--gold-light);
        padding: 8px 14px;
        border-radius: 0 8px 8px 0;
        font-size: 13px;
        font-weight: 700;
        margin-bottom: 28px;
        display: inline-block;
      }
      .hero-btns {
        display: flex;
        gap: 14px;
        flex-wrap: wrap;
        margin-bottom: 36px;
      }
      .btn-download {
        background: linear-gradient(135deg, #00c853, #00a844);
        color: white;
        padding: 14px 32px;
        border-radius: 30px;
        font-weight: 800;
        font-size: 15px;
        text-decoration: none;
        box-shadow: 0 6px 24px rgba(0, 200, 83, 0.5);
        transition: all 0.2s;
        display: flex;
        align-items: center;
        gap: 8px;
      }
      .btn-download:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 32px rgba(0, 200, 83, 0.6);
      }
      .hero-stats {
        display: flex;
        gap: 28px;
      }
      .hero-stat {
        display: flex;
        align-items: center;
        gap: 8px;
        color: rgba(255, 255, 255, 0.9);
        font-size: 13px;
      }
      .hero-stat-icon {
        background: rgba(255, 255, 255, 0.15);
        border-radius: 50%;
        width: 32px;
        height: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 16px;
      }
      .hero-img {
        position: absolute;
        right: 12%;
        top: 50%;
        transform: translateY(-50%);
        width: 420px;
        filter: drop-shadow(0 20px 60px rgba(0, 100, 200, 0.5));
        animation: float 4s ease-in-out infinite;
      }
      @keyframes float {
        0%,
        100% {
          transform: translateY(-50%) translateX(0);
        }
        50% {
          transform: translateY(-53%) translateX(5px);
        }
      }

      /* ===== PAYMENT STRIP ===== */
      .payment-strip {
        background: var(--white);
        border-bottom: 1px solid #e0eef8;
        padding: 16px 40px;
        display: flex;
        align-items: center;
        gap: 24px;
        flex-wrap: wrap;
        justify-content: center;
      }
      .payment-strip span {
        color: #555;
        font-size: 14px;
        font-weight: 600;
      }
      .payment-logos {
        display: flex;
        align-items: center;
        gap: 20px;
      }
      .pay-badge {
        background: linear-gradient(135deg, #0d2137, #1565c0);
        color: white;
        padding: 5px 14px;
        border-radius: 6px;
        font-size: 13px;
        font-weight: 800;
        letter-spacing: 1px;
      }
      .upi-badge {
        background: linear-gradient(135deg, #006400, #00a000);
        color: white;
        padding: 5px 14px;
        border-radius: 6px;
        font-size: 13px;
        font-weight: 800;
      }

      /* ===== SECTIONS ===== */
      section {
        padding: 60px 40px;
      }

      .section-title {
        text-align: center;
        font-family: "Nunito", sans-serif;
        font-size: clamp(24px, 4vw, 36px);
        font-weight: 900;
        color: var(--deep-ice);
        margin-bottom: 8px;
        position: relative;
      }
      .section-title::after {
        content: "";
        display: block;
        width: 60px;
        height: 4px;
        background: linear-gradient(
          90deg,
          var(--glacier-blue),
          var(--winter-accent)
        );
        margin: 10px auto 0;
        border-radius: 2px;
      }
      .section-sub {
        text-align: center;
        color: #607d8b;
        font-size: 15px;
        margin-bottom: 44px;
      }

      /* ===== FEATURES ===== */
      .features-section {
        background: linear-gradient(180deg, #e8f4fd 0%, #f0f8ff 100%);
        position: relative;
        overflow: hidden;
      }
      .features-section::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(
          90deg,
          var(--deep-ice),
          var(--glacier-blue),
          var(--winter-accent),
          var(--glacier-blue),
          var(--deep-ice)
        );
      }
      .features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 24px;
        max-width: 1100px;
        margin: 0 auto;
      }
      .feature-card {
        background: white;
        border-radius: 20px;
        padding: 28px 24px;
        box-shadow: 0 8px 32px rgba(42, 95, 143, 0.1);
        border: 1px solid rgba(200, 230, 245, 0.8);
        transition:
          transform 0.3s,
          box-shadow 0.3s;
        position: relative;
        overflow: hidden;
      }
      .feature-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(
          90deg,
          var(--glacier-blue),
          var(--winter-accent)
        );
      }
      .feature-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 16px 48px rgba(42, 95, 143, 0.18);
      }
      .feature-icon {
        width: 52px;
        height: 52px;
        background: linear-gradient(135deg, #e3f2fd, #bbdefb);
        border-radius: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 26px;
        margin-bottom: 14px;
      }
      .feature-card h3 {
        font-family: "Nunito", sans-serif;
        font-size: 17px;
        font-weight: 800;
        color: var(--deep-ice);
        margin-bottom: 12px;
      }
      .feature-card ul {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 7px;
      }
      .feature-card ul li {
        color: #546e7a;
        font-size: 13.5px;
        display: flex;
        align-items: flex-start;
        gap: 8px;
      }
      .feature-card ul li::before {
        content: "❄";
        color: var(--glacier-blue);
        font-size: 12px;
        margin-top: 2px;
        flex-shrink: 0;
      }

      /* ===== TOP GAMES ===== */
      .games-section {
        background: linear-gradient(160deg, #0d2137 0%, #0a3d6b 100%);
        position: relative;
        overflow: hidden;
      }
      .games-section::before {
        content: "❄❅❆❄❅❆❄❅❆";
        position: absolute;
        bottom: 10px;
        left: 0;
        right: 0;
        text-align: center;
        font-size: 20px;
        color: rgba(255, 255, 255, 0.05);
        letter-spacing: 20px;
      }
      .games-section .section-title {
        color: white;
      }
      .games-section .section-sub {
        color: rgba(255, 255, 255, 0.6);
      }
      .games-section .section-title::after {
        background: linear-gradient(90deg, var(--gold), var(--glacier-blue));
      }
      .games-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
        gap: 20px;
        max-width: 900px;
        margin: 0 auto 48px;
      }
      .game-card {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        cursor: pointer;
        transition: transform 0.3s;
      }
      .game-card:hover {
        transform: translateY(-8px) scale(1.05);
      }
      .game-card img {
        width: 85px;
        height: 85px;
        border-radius: 18px;
        box-shadow:
          0 6px 24px rgba(0, 0, 0, 0.4),
          0 0 0 2px rgba(200, 230, 245, 0.2);
        transition: box-shadow 0.3s;
      }
      .game-card:hover img {
        box-shadow:
          0 12px 36px rgba(79, 195, 247, 0.4),
          0 0 0 3px var(--glacier-blue);
      }
      .game-card span {
        color: rgba(255, 255, 255, 0.85);
        font-size: 12px;
        font-weight: 600;
        text-align: center;
        line-height: 1.3;
      }

      /* ===== GAMING EXPERIENCE ===== */
      .experience-section {
        background: linear-gradient(135deg, #e8f4fd 0%, #f0f8ff 100%);
      }
      .experience-inner {
        max-width: 1100px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 48px;
        align-items: center;
      }
      .experience-text h2 {
        font-family: "Nunito", sans-serif;
        font-size: 32px;
        font-weight: 900;
        color: var(--deep-ice);
        margin-bottom: 20px;
      }
      .exp-features {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        margin-bottom: 28px;
      }
      .exp-feature {
        display: flex;
        align-items: center;
        gap: 8px;
        background: white;
        padding: 10px 14px;
        border-radius: 10px;
        font-size: 13.5px;
        font-weight: 600;
        color: var(--deep-ice);
        box-shadow: 0 2px 10px rgba(42, 95, 143, 0.08);
        border: 1px solid rgba(200, 230, 245, 0.6);
      }
      .exp-feature::before {
        content: "✦";
        color: var(--glacier-blue);
      }
      .exp-image img {
        width: 100%;
        border-radius: 24px;
        /* box-shadow: 0 24px 64px rgba(42, 95, 143, 0.2); */
        filter: drop-shadow(0 0 30px rgba(79, 195, 247, 0.3));
      }

      /* ===== EARN MORE ===== */
      .earn-section {
        background: linear-gradient(
          160deg,
          #0d2137 0%,
          #0a3d6b 60%,
          #003d6b 100%
        );
        position: relative;
        overflow: hidden;
      }
      .earn-section::before {
        content: "";
        position: absolute;
        top: -100px;
        right: -100px;
        width: 400px;
        height: 400px;
        background: radial-gradient(
          circle,
          rgba(79, 195, 247, 0.1),
          transparent 70%
        );
        border-radius: 50%;
      }
      .earn-section .section-title {
        color: white;
      }
      .earn-section .section-sub {
        color: rgba(255, 255, 255, 0.6);
      }
      .earn-section .section-title::after {
        background: linear-gradient(90deg, var(--gold), var(--glacier-blue));
      }
      .earn-cards {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 24px;
        max-width: 900px;
        margin: 0 auto;
      }
      .earn-card {
        background: linear-gradient(
          135deg,
          rgba(255, 255, 255, 0.08),
          rgba(255, 255, 255, 0.04)
        );
        border: 1px solid rgba(200, 230, 245, 0.15);
        border-radius: 20px;
        padding: 32px 28px;
        display: flex;
        flex-direction: column;
        gap: 14px;
        backdrop-filter: blur(10px);
        transition:
          transform 0.3s,
          border-color 0.3s;
      }
      .earn-card:hover {
        transform: translateY(-6px);
        border-color: rgba(200, 230, 245, 0.4);
      }
      .earn-card-img {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        object-fit: cover;
        border: 3px solid rgba(200, 230, 245, 0.3);
      }
      .earn-card h3 {
        font-family: "Nunito", sans-serif;
        font-size: 22px;
        font-weight: 900;
        color: white;
      }
      .earn-card p {
        color: rgba(255, 255, 255, 0.65);
        font-size: 14px;
        line-height: 1.6;
      }
      .btn-know {
        display: inline-block;
        background: linear-gradient(135deg, var(--green-cta), #00a844);
        color: white;
        padding: 10px 24px;
        border-radius: 22px;
        font-weight: 700;
        font-size: 14px;
        text-decoration: none;
        align-self: flex-start;
        box-shadow: 0 4px 16px rgba(0, 200, 83, 0.35);
        transition: all 0.2s;
      }
      .btn-know:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(0, 200, 83, 0.5);
      }

      /* ===== RATINGS ===== */
      .ratings-section {
        background: linear-gradient(135deg, #e8f4fd 0%, #f0f8ff 100%);
        position: relative;
        overflow: hidden;
      }
      .ratings-inner {
        max-width: 1100px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 260px 1fr;
        gap: 48px;
        align-items: start;
      }
      .rating-score {
        background: white;
        border-radius: 20px;
        padding: 28px 24px;
        text-align: center;
        box-shadow: 0 8px 32px rgba(42, 95, 143, 0.12);
        border: 1px solid rgba(200, 230, 245, 0.6);
        position: sticky;
        top: 80px;
        height: 100%;
      }
      .score-number {
        font-family: "Nunito", sans-serif;
        font-size: 64px;
        font-weight: 900;
        color: var(--deep-ice);
        line-height: 1;
        margin-bottom: 6px;
      }
      .stars-row {
        color: var(--gold);
        font-size: 22px;
        margin-bottom: 6px;
      }
      .score-count {
        color: #90a4ae;
        font-size: 13px;
        margin-bottom: 16px;
      }
      .rating-bars {
        display: flex;
        flex-direction: column;
        gap: 6px;
        padding-top: 20px;
      }
      .rating-bar-row {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 12px;
        color: #607d8b;
      }
      .bar-track {
        flex: 1;
        height: 6px;
        background: #eceff1;
        border-radius: 3px;
        overflow: hidden;
      }
      .bar-fill {
        height: 100%;
        background: linear-gradient(
          90deg,
          var(--glacier-blue),
          var(--winter-accent)
        );
        border-radius: 3px;
      }
      .reviews-carousel {
        display: flex;
        flex-direction: column;
        gap: 16px;
        max-height: 440px;
        overflow-y: auto;
        scrollbar-width: thin;
        scrollbar-color: var(--glacier-blue) transparent;
      }
      .review-card {
        background: white;
        border-radius: 16px;
        padding: 20px 20px;
        box-shadow: 0 4px 16px rgba(42, 95, 143, 0.08);
        border: 1px solid rgba(200, 230, 245, 0.5);
        display: grid;
        grid-template-columns: 52px 1fr;
        gap: 14px;
      }
      .review-avatar {
        width: 52px;
        height: 52px;
        border-radius: 50%;
        object-fit: cover;
        border: 2px solid var(--glacier-blue);
      }
      .review-meta {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        margin-bottom: 4px;
      }
      .review-name {
        font-weight: 700;
        font-size: 14px;
        color: var(--deep-ice);
      }
      .review-won {
        background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
        color: var(--green-dark);
        font-size: 11px;
        font-weight: 700;
        padding: 3px 10px;
        border-radius: 12px;
      }
      .review-type {
        font-size: 12px;
        color: #90a4ae;
        margin-bottom: 6px;
      }
      .review-stars {
        color: var(--gold);
        font-size: 13px;
        margin-bottom: 6px;
      }
      .review-text {
        font-size: 13px;
        color: #546e7a;
        line-height: 1.55;
      }

      /* ===== DOWNLOAD CTA ===== */
      .download-section {
        background: linear-gradient(160deg, #0d2137 0%, #1565c0 100%);
        text-align: center;
        position: relative;
        overflow: hidden;
      }
      .download-section::before {
        content: "";
        position: absolute;
        top: -150px;
        left: 50%;
        transform: translateX(-50%);
        width: 600px;
        height: 400px;
        background: radial-gradient(
          ellipse,
          rgba(79, 195, 247, 0.15),
          transparent 70%
        );
      }
      .download-section .section-title {
        color: white;
      }
      .download-section .section-title::after {
        background: linear-gradient(90deg, var(--gold), var(--glacier-blue));
      }
      .download-tagline {
        font-family: "Nunito", sans-serif;
        font-size: 28px;
        font-weight: 900;
        color: white;
        margin-bottom: 36px;
      }
      .download-tagline span {
        color: var(--gold-light);
      }
      .game-types {
        display: flex;
        justify-content: center;
        gap: 24px;
        flex-wrap: wrap;
        margin-bottom: 36px;
      }
      .game-type {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
        color: white;
      }
      .game-type-icon {
        width: 64px;
        height: 64px;
        border-radius: 16px;
        background: rgba(255, 255, 255, 0.1);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 30px;
        border: 1px solid rgba(255, 255, 255, 0.15);
      }
      .game-type span {
        font-size: 13px;
        font-weight: 600;
      }
      .download-btn-big {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: linear-gradient(135deg, #00c853, #00a844);
        color: white;
        padding: 16px 44px;
        border-radius: 36px;
        font-size: 18px;
        font-weight: 800;
        text-decoration: none;
        box-shadow: 0 8px 32px rgba(0, 200, 83, 0.5);
        transition: all 0.2s;
        margin-bottom: 16px;
      }
      .download-btn-big:hover {
        transform: translateY(-3px);
        box-shadow: 0 14px 48px rgba(0, 200, 83, 0.6);
      }
      .download-sub {
        color: rgba(255, 255, 255, 0.55);
        font-size: 13px;
      }
      .download-sub span {
        color: var(--gold);
        font-weight: 700;
      }

      /* ===== ABOUT / GAMES LIST ===== */
      .about-section {
        background: var(--snow-white);
      }
      .about-inner {
        max-width: 1000px;
        margin: 0 auto;
      }
      .about-inner h1 {
        font-family: "Nunito", sans-serif;
        font-size: 30px;
        font-weight: 900;
        color: var(--deep-ice);
        margin-bottom: 16px;
      }
      .about-inner p {
        color: #546e7a;
        line-height: 1.75;
        margin-bottom: 16px;
        font-size: 15px;
      }
      .about-inner h2 {
        font-family: "Nunito", sans-serif;
        font-size: 22px;
        font-weight: 800;
        color: var(--deep-ice);
        margin: 28px 0 12px;
      }
      .about-inner h3 {
        font-family: "Nunito", sans-serif;
        font-size: 18px;
        font-weight: 800;
        color: var(--deep-ice);
        margin: 20px 0 10px;
      }
      .step-item {
        background: white;
        border-radius: 12px;
        padding: 14px 18px;
        margin-bottom: 10px;
        border-left: 4px solid var(--glacier-blue);
        box-shadow: 0 2px 8px rgba(42, 95, 143, 0.06);
      }
      .step-item strong {
        color: var(--deep-ice);
        font-weight: 700;
      }
      .about-inner ul {
        margin-left: 20px;
        color: #546e7a;
        display: flex;
        flex-direction: column;
        gap: 6px;
        font-size: 14px;
      }
      .about-inner ul li::marker {
        color: var(--glacier-blue);
      }

      /* ===== GAMES DETAIL LIST ===== */
      .games-list {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 20px;
        max-width: 1000px;
        margin: 0 auto 40px;
      }
      .game-detail {
        background: white;
        border-radius: 16px;
        padding: 20px;
        display: flex;
        gap: 14px;
        box-shadow: 0 4px 16px rgba(42, 95, 143, 0.08);
        border: 1px solid rgba(200, 230, 245, 0.5);
        transition: transform 0.2s;
      }
      .game-detail:hover {
        transform: translateY(-4px);
      }
      .game-detail img {
        width: 64px;
        height: 64px;
        border-radius: 12px;
        flex-shrink: 0;
      }
      .game-detail-info h4 {
        font-weight: 800;
        color: var(--deep-ice);
        margin-bottom: 4px;
        font-size: 15px;
      }
      .game-detail-info p {
        font-size: 12.5px;
        color: #78909c;
        line-height: 1.5;
        margin-bottom: 6px;
      }
      .game-read-more {
        color: var(--deep-ice);
        font-size: 12px;
        font-weight: 700;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 3px;
      }
      .game-read-more::after {
        content: "→";
      }

      /* ===== FOOTER ===== */
      footer {
        background: #06111e;
        color: rgba(255, 255, 255, 0.7);
        padding: 48px 40px 0;
      }
      .footer-grid {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: 40px;
        max-width: 1100px;
        margin: 0 auto;
        padding-bottom: 40px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
      }
      .footer-brand img {
        width: 48px;
        border-radius: 12px;
        margin-bottom: 12px;
      }
      .footer-brand p {
        font-size: 13px;
        line-height: 1.7;
        color: rgba(255, 255, 255, 0.5);
        margin-bottom: 20px;
      }
      .footer-social {
        display: flex;
        gap: 10px;
      }
      .footer-social a {
        width: 36px;
        height: 36px;
        background: rgba(255, 255, 255, 0.08);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        font-size: 15px;
        transition: background 0.2s;
      }
      .footer-social a:hover {
        background: var(--deep-ice);
      }
      .footer-col h4 {
        font-family: "Nunito", sans-serif;
        font-weight: 800;
        color: white;
        margin-bottom: 14px;
        font-size: 15px;
      }
      .footer-col a {
        display: block;
        color: rgba(255, 255, 255, 0.5);
        text-decoration: none;
        font-size: 13px;
        margin-bottom: 8px;
        transition: color 0.2s;
      }
      .footer-col a:hover {
        color: var(--glacier-blue);
      }
      .footer-payments {
        max-width: 1100px;
        margin: 28px auto;
        display: flex;
        align-items: center;
        gap: 20px;
        flex-wrap: wrap;
      }
      .footer-payments span {
        color: rgba(255, 255, 255, 0.5);
        font-size: 12px;
        font-weight: 600;
      }
      .pay-icon {
        background: rgba(255, 255, 255, 0.08);
        border-radius: 8px;
        padding: 5px 12px;
        font-size: 12px;
        color: rgba(255, 255, 255, 0.7);
        font-weight: 700;
      }
      .footer-trust {
        max-width: 1100px;
        margin: 0 auto;
        display: flex;
        gap: 32px;
        padding: 24px 0;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        flex-wrap: wrap;
      }
      .trust-item {
        display: flex;
        align-items: center;
        gap: 10px;
        color: rgba(255, 255, 255, 0.7);
        font-size: 13px;
      }
      .trust-item span.icon {
        font-size: 22px;
        color: var(--glacier-blue);
      }
      .trust-item strong {
        display: block;
        color: white;
        font-size: 13px;
      }
      .trust-item small {
        color: rgba(255, 255, 255, 0.5);
        font-size: 11px;
      }
      .footer-bottom {
        background: rgba(0, 0, 0, 0.3);
        text-align: center;
        padding: 16px;
        font-size: 12px;
        color: rgba(255, 255, 255, 0.3);
      }

      /* ===== BOTTOM STICKY ===== */
      .bottom-sticky {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(90deg, #0d2137, #1565c0);
        padding: 10px 24px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        z-index: 200;
        border-top: 2px solid var(--glacier-blue);
      }
      .bottom-sticky span {
        color: rgba(255, 255, 255, 0.8);
        font-size: 13px;
      }
      .bottom-sticky span strong {
        color: var(--gold);
      }
      .bottom-sticky a {
        background: linear-gradient(135deg, #00c853, #00a844);
        color: white;
        padding: 8px 20px;
        border-radius: 22px;
        font-weight: 700;
        font-size: 13px;
        text-decoration: none;
      }

      /* ===== ICE CRYSTALS BG ===== */
      .ice-bg {
        background-image:
          radial-gradient(
            circle at 20% 80%,
            rgba(79, 195, 247, 0.05) 0%,
            transparent 50%
          ),
          radial-gradient(
            circle at 80% 20%,
            rgba(200, 230, 245, 0.08) 0%,
            transparent 50%
          );
      }

      @media (max-width: 1200px) {
        .hero-img {
          right: 5%;
          width: 380px;
        }
        .hero {
          padding: 60px 40px;
        }
      }

      @media (max-width: 1024px) {
        .hero {
          padding: 80px 40px 60px;
          min-height: auto;
          flex-direction: column;
          align-items: center;
          text-align: center;
        }
        .hero-content {
          max-width: 100%;
          margin-bottom: 40px;
        }
        .hero-img {
          position: relative;
          right: auto;
          top: auto;
          transform: none;
          width: 100%;
          max-width: 380px;
          margin: 0 auto;
          animation: float-mobile 4s ease-in-out infinite;
        }
        .hero-btns {
          justify-content: center;
        }
        .hero-stats {
          justify-content: center;
        }
        .hero-bonus {
          border-left: none;
          border-top: 3px solid var(--gold);
          border-radius: 0 0 8px 8px;
        }
        .experience-inner {
          gap: 30px;
        }
        .ratings-inner {
          grid-template-columns: 1fr;
          gap: 32px;
        }
        .rating-score {
          position: static;
          width: 100%;
          max-width: 400px;
          margin: 0 auto;
        }
        .reviews-carousel {
          max-height: none;
          overflow-y: visible;
        }

        @keyframes float-mobile {
          0%,
          100% {
            transform: translateY(0);
          }
          50% {
            transform: translateY(-15px);
          }
        }
      }

      @media (max-width: 768px) {
        .hero {
          padding: 60px 24px;
        }
        .hero-badge {
          font-size: 11px;
        }
        .payment-strip {
          padding: 16px 20px;
        }
        .experience-inner {
          grid-template-columns: 1fr;
        }
        .footer-grid {
          grid-template-columns: 1fr 1fr;
        }
        section {
          padding: 48px 20px;
        }
        .bottom-sticky span {
          display: none;
        }
        .games-grid {
          grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
        }
      }

      @media (max-width: 480px) {
        .hero {
          padding: 50px 16px;
        }
        .hero h1 {
          font-size: 32px;
        }
        .hero-img {
          max-width: 300px;
        }
        .hero-stats {
          flex-direction: column;
          align-items: center;
          gap: 12px;
        }
        .hero-stat {
          width: 100%;
          justify-content: center;
        }
        .nav-logo img {
          width: 160px;
          height: auto;
        }
        .nav-download {
          padding: 8px 16px;
          font-size: 12px;
        }
        .footer-grid {
          grid-template-columns: 1fr;
        }
        .footer-trust {
          justify-content: center;
          gap: 20px;
        }
        .trust-item {
          width: 45%;
          min-width: 140px;
        }
      }