/* CSS Variables */
      :root {
        --primary: #1a3c8f;
        --secondary: #3a9fe0;
        --surface: #0d1f4e;
        --card-bg: #162654;
        --gradient: linear-gradient(135deg, #1a3c8f 0%, #3a9fe0 100%);
        --text-pri: #ffffff;
        --text-sec: #a8bfdf;
        --success: #2ecc71;
        --border: #243a6b;
        --gold: #f0c040;

        --font-display: "Poppins", sans-serif;
        --font-body: "Nunito", sans-serif;
      }

      /* Resets */
      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }
      body {
        font-family: var(--font-body);
        background-color: var(--surface);
        color: var(--text-pri);
        line-height: 1.6;
        overflow-x: hidden;
      }
      a {
        text-decoration: none;
        color: inherit;
      }
      img {
        max-width: 100%;
        height: auto;
        display: block;
      }
      ul {
        list-style: none;
      }

      /* Typography */
      h1,
      h2,
      h3,
      .poppins {
        font-family: var(--font-display);
      }
      h1 {
        font-weight: 800;
        font-size: 52px;
        line-height: 1.2;
        margin-bottom: 24px;
      }
      h2 {
        font-weight: 800;
        font-size: 36px;
        margin-bottom: 16px;
      }
      .h2-accent {
        display: inline-block;
        border-bottom: 4px solid var(--gold);
        padding-bottom: 8px;
        margin-bottom: 40px;
      }
      .text-sec {
        color: var(--text-sec);
      }
      .text-gradient {
        background: var(--gradient);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
      }

      /* Layout & Utilities */
      .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 24px;
      }
      .section-pad {
        padding: 80px 0;
      }

      /* Diagonal Slash Sections */
      .slash-section {
        position: relative;
        background-color: var(--card-bg);
        z-index: 1;
        margin: 40px 0;
        padding: 100px 0;
      }
      .slash-section::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: inherit;
        transform: skewY(-4deg);
        z-index: -1;
      }

      /* Buttons */
      .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-family: var(--font-body);
        font-weight: 700;
        font-size: 16px;
        padding: 14px 28px;
        transition: all 0.3s ease;
        cursor: pointer;
      }
      .btn-primary {
        background: var(--gradient);
        color: #fff;
        border-radius: 50px;
        border: none;
      }
      .btn-primary:hover {
        opacity: 0.9;
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(58, 159, 224, 0.4);
      }

      .btn-secondary {
        background: transparent;
        color: var(--secondary);
        border: 2px solid var(--secondary);
        border-radius: 6px;
      }
      .btn-secondary:hover {
        background: rgba(58, 159, 224, 0.1);
      }

      .btn-capsule-outline {
        border-radius: 50px;
      }

      /* Navbar */
      header {
        position: sticky;
        top: 0;
        z-index: 100;
        background: rgba(13, 31, 78, 0.9);
        backdrop-filter: blur(10px);
        border-bottom: 1px solid var(--border);
      }
      .nav-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 80px;
      }
      .logo {
        font-family: var(--font-display);
        font-weight: 800;
        font-size: 24px;
        color: #fff;
        display: flex;
        align-items: center;
        gap: 8px;
      }
      .logo svg {
        fill: var(--gold);
        width: 28px;
        height: 28px;
      }
      .nav-links {
        display: flex;
        gap: 32px;
      }
      .nav-links a {
        font-weight: 600;
        font-size: 15px;
        transition: color 0.2s;
      }
      .nav-links a:hover {
        color: var(--secondary);
      }
      .nav-actions {
        display: flex;
        gap: 16px;
        align-items: center;
      }
      .hamburger {
        display: none;
        background: none;
        border: none;
        color: #fff;
        font-size: 24px;
        cursor: pointer;
      }

      /* Mobile Menu */
      .mobile-menu {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--surface);
        border-bottom: 1px solid var(--border);
        padding: 24px;
        flex-direction: column;
        gap: 16px;
      }
      .mobile-menu.active {
        display: flex;
      }

      /* HERO */
      .hero {
        position: relative;
        display: flex;
        align-items: center;
        min-height: 560px;
        overflow: hidden;
      }
      .hero::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image: radial-gradient(
          circle at 70% 50%,
          rgba(58, 159, 224, 0.15) 0%,
          transparent 60%
        );
        z-index: 0;
        pointer-events: none;
      }
      .hero-grid {
        display: grid;
        grid-template-columns: 55% 45%;
        align-items: center;
        position: relative;
        z-index: 1;
        gap: 40px;
      }
      .hero-content p {
        font-size: 17px;
        max-width: 480px;
        margin-bottom: 32px;
      }
      .hero-ctas {
        display: flex;
        gap: 16px;
      }
      .hero-mascot {
        position: relative;
        transform: translateY(-20px);
        filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.5));
      }

      /* TRUST STATS */
      .stats-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        text-align: center;
        gap: 32px;
        margin-bottom: 40px;
      }
      .stat-num {
        font-size: 48px;
        line-height: 1;
        margin-bottom: 8px;
      }
      .stat-label {
        font-size: 14px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: var(--text-sec);
      }
      .stats-body {
        max-width: 640px;
        margin: 0 auto;
        text-align: center;
        font-size: 16px;
      }

      /* GAME CATEGORIES */
      .cat-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
      }
      .cat-card {
        background: var(--card-bg);
        border: 1px solid var(--border);
        border-radius: 12px;
        padding: 32px;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
      }
      .cat-card:hover {
        transform: translateY(-4px);
        box-shadow: inset 0 0 40px rgba(58, 159, 224, 0.1);
        border-color: var(--secondary);
      }
      .cat-icon {
        width: 32px;
        height: 32px;
        fill: var(--secondary);
        margin-bottom: 20px;
      }
      .cat-card h3 {
        font-size: 20px;
        margin-bottom: 12px;
      }
      .cat-card p {
        font-size: 15px;
        margin-bottom: 24px;
      }

      /* WHY CHOOSE */
      .banner-img {
        width: 100%;
        height: 220px;
        object-fit: cover;
        border-radius: 12px;
        margin-bottom: 40px;
        opacity: 0.8;
      }
      .trust-grid {
        display: grid;
        grid-template-columns: repeat(6, 1fr);
        gap: 24px;
        text-align: center;
      }
      .trust-item {
        display: flex;
        flex-direction: column;
        align-items: center;
      }
      .trust-icon {
        width: 40px;
        height: 40px;
        background: var(--secondary);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 16px;
      }
      .trust-icon svg {
        width: 20px;
        height: 20px;
        fill: #fff;
      }
      .trust-item h3 {
        font-size: 15px;
        margin-bottom: 8px;
      }
      .trust-item p {
        font-size: 13px;
        line-height: 1.4;
      }

      /* FEATURED GAMES */
      .featured-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
        margin-bottom: 40px;
      }
      .game-card {
        border-radius: 12px;
        overflow: hidden;
        border: 1px solid var(--border);
        transition: transform 0.3s;
        background: var(--card-bg);
      }
      .game-card:hover {
        transform: scale(1.03);
        border-color: var(--gold);
      }
      .game-card img {
        aspect-ratio: 1/1;
        object-fit: cover;
        width: 100%;
      }
      .game-title {
        padding: 12px;
        text-align: center;
        font-family: var(--font-body);
        font-weight: 700;
        font-size: 13px;
      }
      .center-cta {
        text-align: center;
        margin-top: 24px;
      }

      /* PROMOTIONS */
      .promo-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        align-items: center;
      }
      .promo-list {
        display: flex;
        flex-direction: column;
        gap: 24px;
        margin-bottom: 32px;
      }
      .promo-item {
        display: flex;
        gap: 16px;
        align-items: flex-start;
      }
      .promo-item-icon {
        color: var(--gold);
        font-size: 24px;
        line-height: 1;
      }
      .promo-item h3 {
        font-size: 16px;
        margin-bottom: 4px;
      }
      .promo-item p {
        font-size: 14px;
        color: var(--text-sec);
      }
      .promo-visual {
        position: relative;
        height: 100%;
        min-height: 300px;
        background: radial-gradient(
          circle,
          rgba(240, 192, 64, 0.1) 0%,
          transparent 70%
        );
      }
      .promo-visual::after {
        content: "";
        position: absolute;
        top: 20%;
        left: 20%;
        right: 20%;
        bottom: 20%;
        background-image: radial-gradient(var(--gold) 2px, transparent 2px);
        background-size: 20px 20px;
        opacity: 0.3;
        border-radius: 12px;
      }

      /* STEPS */
      .steps-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
        position: relative;
        margin-bottom: 40px;
      }
      .step-item {
        text-align: center;
        position: relative;
        z-index: 1;
      }
      .step-num {
        font-family: var(--font-display);
        font-weight: 800;
        font-size: 48px;
        background: var(--gradient);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        margin-bottom: 16px;
      }
      .step-item h3 {
        font-size: 16px;
        margin-bottom: 12px;
      }
      .step-item p {
        font-size: 15px;
      }
      .steps-grid::before {
        content: "";
        position: absolute;
        top: 35px;
        left: 16%;
        right: 16%;
        height: 1px;
        border-top: 1px dashed var(--secondary);
        z-index: 0;
      }

      /* PAYMENTS */
      .payments-wrap {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
        margin-bottom: 32px;
      }
      .payment-pill {
        display: flex;
        align-items: center;
        gap: 12px;
        background: var(--card-bg);
        border: 1px solid var(--border);
        border-radius: 8px;
        padding: 12px 20px;
        font-size: 13px;
        font-weight: 700;
      }
      .payment-circle {
        width: 20px;
        height: 20px;
        background: var(--text-sec);
        border-radius: 50%;
      }

      /* TESTIMONIALS */
      .testi-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
      }
      .testi-card {
        background: var(--card-bg);
        border-radius: 12px;
        padding: 32px;
        border: 1px solid var(--border);
        display: flex;
        flex-direction: column;
        position: relative;
      }
      .testi-featured {
        border: 2px solid transparent;
        background-image:
          linear-gradient(var(--card-bg), var(--card-bg)), var(--gradient);
        background-origin: border-box;
        background-clip: padding-box, border-box;
      }
      .top-review-badge {
        position: absolute;
        top: 16px;
        right: 16px;
        background: var(--gold);
        color: #000;
        font-size: 11px;
        font-weight: 700;
        padding: 4px 8px;
        border-radius: 4px;
        text-transform: uppercase;
      }
      .stars {
        color: var(--gold);
        font-size: 16px;
        margin-bottom: 16px;
        letter-spacing: 2px;
      }
      .quote {
        font-style: italic;
        font-size: 15px;
        margin-bottom: 24px;
        flex-grow: 1;
      }
      .author {
        font-family: var(--font-display);
        font-weight: 600;
        font-size: 14px;
      }
      .region {
        font-size: 12px;
        color: var(--text-sec);
      }

      /* FAQ */
      .faq-wrap {
        max-width: 780px;
        margin: 0 auto;
      }
      .faq-item {
        background: var(--card-bg);
        border-bottom: 1px solid var(--border);
      }
      .faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding: 24px;
        background: none;
        border: none;
        color: #fff;
        font-family: var(--font-display);
        font-weight: 600;
        font-size: 16px;
        cursor: pointer;
        text-align: left;
      }
      .faq-icon {
        transition: transform 0.3s ease;
        fill: var(--secondary);
        width: 24px;
        height: 24px;
      }
      .faq-item.active .faq-icon {
        transform: rotate(180deg);
      }
      .faq-answer {
        padding: 0 24px;
        max-height: 0;
        overflow: hidden;
        transition:
          max-height 0.3s ease,
          padding 0.3s ease;
        font-size: 15px;
        color: var(--text-sec);
      }
      .faq-item.active .faq-answer {
        padding: 0 24px 24px 24px;
        max-height: 200px;
      }

      /* FOOTER */
      footer {
        background: #0a1638;
        padding: 60px 0 30px;
        border-top: 1px solid var(--border);
        font-size: 14px;
      }
      .footer-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 40px;
        margin-bottom: 40px;
      }
      .footer-col h4 {
        font-family: var(--font-display);
        font-weight: 700;
        margin-bottom: 20px;
        color: #fff;
      }
      .footer-col ul {
        display: flex;
        flex-direction: column;
        gap: 12px;
      }
      .footer-col a {
        color: var(--text-sec);
        transition: color 0.2s;
      }
      .footer-col a:hover {
        color: var(--secondary);
      }
      .footer-bottom {
        border-top: 1px solid var(--border);
        padding-top: 24px;
        text-align: center;
        color: var(--text-sec);
        font-size: 12px;
      }
      .footer-bottom p {
        margin-bottom: 8px;
      }

      /* FLOATING CTA */
      .floating-cta {
        position: fixed;
        bottom: 20px;
        right: 20px;
        z-index: 90;
        animation: pulse 2s infinite ease-in-out;
      }
      @keyframes pulse {
        0% {
          transform: scale(1);
        }
        50% {
          transform: scale(1.05);
        }
        100% {
          transform: scale(1);
        }
      }

      /* RESPONSIVE */
      @media (max-width: 1023px) {
        .trust-grid {
          grid-template-columns: repeat(2, 1fr);
        }
        .featured-grid {
          grid-template-columns: repeat(2, 1fr);
        }
        .testi-grid {
          grid-template-columns: repeat(2, 1fr);
        }
        .footer-grid {
          grid-template-columns: repeat(2, 1fr);
        }
        .promo-grid {
          grid-template-columns: 1fr;
        }
        .promo-visual {
          display: none;
        }
      }

      @media (max-width: 767px) {
        h1 {
          font-size: 32px;
        }
        .section-pad {
          padding: 48px 0;
        }
        .slash-section {
          padding: 64px 0;
        }
        .nav-links,
        .nav-actions {
          display: none;
        }
        .hamburger {
          display: block;
        }

        .hero-grid {
          grid-template-columns: 1fr;
          text-align: center;
        }
        .hero-content p {
          margin: 0 auto 32px;
        }
        .hero-ctas {
          flex-direction: column;
          align-items: center;
        }
        .hero-mascot {
          max-width: 280px;
          margin: 0 auto;
          transform: none;
        }

        .stats-grid {
          grid-template-columns: 1fr;
        }
        .cat-grid {
          grid-template-columns: 1fr;
        }
        .trust-grid {
          grid-template-columns: 1fr;
        }

        .featured-grid {
          display: flex;
          overflow-x: auto;
          scroll-snap-type: x mandatory;
          gap: 16px;
          padding-bottom: 16px;
        }
        .game-card {
          flex: 0 0 80%;
          scroll-snap-align: start;
        }

        .steps-grid {
          grid-template-columns: 1fr;
        }
        .steps-grid::before {
          display: none;
        }

        .testi-grid {
          display: flex;
          overflow-x: auto;
          scroll-snap-type: x mandatory;
          gap: 16px;
          padding-bottom: 16px;
        }
        .testi-card {
          flex: 0 0 85%;
          scroll-snap-align: start;
        }

        .footer-grid {
          grid-template-columns: 1fr;
        }

        .floating-cta {
          bottom: 0;
          right: 0;
          left: 0;
          border-radius: 0;
          width: 100%;
          height: 56px;
          animation: none;
        }
      }
