/* 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: 48px;
        line-height: 1.2;
        margin-bottom: 24px;
        text-align: center;
      }
      h2 {
        font-weight: 800;
        font-size: 32px;
        margin-bottom: 16px;
      }
      h3 {
        font-weight: 700;
        font-size: 20px;
      }

      .h2-accent {
        display: inline-block;
        border-bottom: 4px solid var(--gold);
        padding-bottom: 8px;
        margin-bottom: 32px;
      }
      .text-sec {
        color: var(--text-sec);
      }
      .text-center {
        text-align: center;
      }
      .uppercase-track {
        text-transform: uppercase;
        letter-spacing: 1px;
        font-size: 13px;
        font-weight: 700;
        color: var(--gold);
        display: block;
        margin-bottom: 8px;
      }

      /* Layout & Utilities */
      .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 24px;
      }
      .section-pad {
        padding: 64px 0;
      }
      .flex-center {
        display: flex;
        justify-content: center;
        align-items: center;
      }

      /* Diagonal Slash Sections */
      .slash-section {
        position: relative;
        background-color: var(--card-bg);
        z-index: 1;
        margin: 40px 0;
        padding: 80px 0;
      }
      .slash-section.slash-top::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: inherit;
        transform: skewY(-4deg);
        transform-origin: top left;
        z-index: -1;
      }
      .slash-section.slash-both::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.active,
      .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;
      }

      /* SECTION 1: HERO */
      .hero {
        position: relative;
        min-height: 480px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        overflow: hidden;
        padding: 60px 24px;
      }
      .hero-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 0;
      }
      .hero-bg img {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }
      .hero-bg::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: var(--surface);
        opacity: 0.7;
      }
      .particles {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
        pointer-events: none;
      }
      .particle {
        position: absolute;
        background: #fff;
        border-radius: 50%;
        opacity: 0.1;
        animation: floatUp linear infinite;
      }
      @keyframes floatUp {
        0% {
          transform: translateY(100vh) scale(0);
          opacity: 0;
        }
        50% {
          opacity: 0.3;
        }
        100% {
          transform: translateY(-20vh) scale(1);
          opacity: 0;
        }
      }
      .hero-content {
        position: relative;
        z-index: 2;
        max-width: 680px;
        margin: 0 auto;
      }
      .hero-content p {
        font-size: 17px;
        margin-bottom: 32px;
        color: var(--text-sec);
      }
      .hero-ctas {
        display: flex;
        justify-content: center;
        gap: 16px;
      }

      /* SECTION 2: QUICK NAV */
      .quick-nav-wrap {
        position: sticky;
        top: 80px;
        z-index: 90;
        background: rgba(13, 31, 78, 0.95);
        backdrop-filter: blur(8px);
        border-bottom: 1px solid var(--border);
        padding: 16px 0;
      }
      .quick-nav {
        display: flex;
        justify-content: center;
        gap: 12px;
        flex-wrap: wrap;
      }
      .quick-nav a {
        background: var(--card-bg);
        border: 1px solid var(--border);
        border-radius: 24px;
        padding: 8px 24px;
        font-size: 14px;
        font-weight: 700;
        color: #fff;
        transition: all 0.2s;
        white-space: nowrap;
      }
      .quick-nav a:hover {
        border-color: var(--secondary);
      }
      .quick-nav a.active-tab {
        background: var(--gradient);
        border-color: transparent;
      }

      /* SECTION 3: SLOTS */
      .slots-intro {
        display: grid;
        grid-template-columns: 55% 45%;
        gap: 40px;
        align-items: center;
        margin-bottom: 40px;
      }
      .slots-intro img {
        border-radius: 12px;
        border: 1px solid var(--border);
      }
      .provider-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
        margin-bottom: 40px;
      }
      .provider-tag {
        border: 1px solid var(--border);
        border-radius: 4px;
        padding: 4px 12px;
        font-size: 12px;
        text-transform: uppercase;
        font-weight: 700;
        color: var(--text-sec);
      }
      .game-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
        margin-bottom: 40px;
      }
      .game-card {
        background: var(--card-bg);
        border: 1px solid var(--border);
        border-radius: 12px;
        overflow: hidden;
        transition:
          transform 0.3s,
          border-color 0.3s;
      }
      .game-card:hover {
        transform: scale(1.04);
        border-color: var(--gold);
      }
      .game-card img {
        aspect-ratio: 1/1;
        object-fit: cover;
        width: 100%;
      }
      .game-card-title {
        padding: 12px;
        font-family: var(--font-body);
        font-weight: 700;
        font-size: 13px;
        text-align: left;
      }

      /* SECTION 4: LIVE CASINO */
      .featured-banner {
        width: 100%;
        max-height: 300px;
        object-fit: cover;
        border-radius: 16px;
        margin-bottom: 48px;
        position: relative;
      }
      .banner-wrap {
        position: relative;
        display: inline-block;
        width: 100%;
        border-radius: 16px;
        overflow: hidden;
        margin-bottom: 48px;
      }
      .banner-wrap::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(13, 31, 78, 0.5);
        pointer-events: none;
      }
      .desc-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
        margin-bottom: 40px;
      }
      .desc-item {
        border-left: 3px solid var(--secondary);
        padding-left: 16px;
      }
      .desc-item h3 {
        font-family: var(--font-display);
        font-size: 15px;
        margin-bottom: 8px;
        color: #fff;
      }
      .desc-item p {
        font-size: 14px;
        color: var(--text-sec);
      }

      /* SECTION 5: FISHING */
      .fishing-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        align-items: start;
        margin-bottom: 40px;
      }
      .num-card {
        background: var(--card-bg);
        border: 1px solid var(--border);
        border-radius: 8px;
        padding: 16px;
        display: flex;
        gap: 16px;
        align-items: center;
        margin-bottom: 16px;
      }
      .num-card .num {
        font-family: var(--font-display);
        font-size: 32px;
        font-weight: 800;
        background: var(--gradient);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        min-width: 24px;
      }
      .num-card-content h3 {
        font-family: var(--font-display);
        font-size: 15px;
        margin-bottom: 4px;
      }
      .num-card-content p {
        font-size: 13px;
        color: var(--text-sec);
      }

      /* SECTION 6: SABONG & SPORTS */
      .split-section {
        display: grid;
        grid-template-columns: 1fr 1px 1fr;
        gap: 40px;
        margin-bottom: 40px;
      }
      .v-divider {
        background: var(--border);
        width: 1px;
        height: 100%;
      }
      .sports-badges {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
        margin-top: 16px;
      }
      .sport-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: var(--card-bg);
        border: 1px solid var(--border);
        border-radius: 50px;
        padding: 6px 16px;
        font-size: 14px;
        font-weight: 600;
      }
      .sport-badge svg {
        width: 16px;
        height: 16px;
        fill: var(--secondary);
      }

      /* SECTION 7: BINGO & TABLE */
      .bingo-table-grid {
        display: grid;
        grid-template-columns: 45% 55%;
        gap: 40px;
        margin-bottom: 40px;
      }
      .inline-tag {
        display: inline-block;
        background: rgba(240, 192, 64, 0.1);
        color: var(--gold);
        border: 1px solid var(--gold);
        border-radius: 4px;
        padding: 2px 8px;
        font-size: 13px;
        font-weight: 700;
        margin-right: 8px;
        margin-bottom: 8px;
      }
      .table-pills {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        margin-top: 24px;
      }
      .table-pill {
        display: flex;
        align-items: center;
        gap: 12px;
        background: var(--card-bg);
        border: 1px solid var(--border);
        border-radius: 8px;
        padding: 12px 16px;
        font-size: 13px;
        font-weight: 700;
      }
      .table-pill-icon {
        width: 20px;
        height: 20px;
        background: var(--secondary);
        border-radius: 4px;
      }

      /* SECTION 8: PROVIDERS */
      .provider-grid {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 20px;
      }
      .provider-card {
        background: var(--card-bg);
        border: 1px solid var(--border);
        border-radius: 10px;
        padding: 24px 16px;
        text-align: center;
        transition: all 0.3s;
      }
      .provider-card:hover {
        border-color: var(--secondary);
        box-shadow: 0 0 15px rgba(58, 159, 224, 0.1);
      }
      .provider-card h3 {
        font-size: 16px;
        margin-bottom: 8px;
      }
      .provider-card p {
        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: 300px;
      }

      /* 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) {
        .game-grid {
          grid-template-columns: repeat(2, 1fr);
        }
        .provider-grid {
          grid-template-columns: repeat(3, 1fr);
        }
        .footer-grid {
          grid-template-columns: repeat(2, 1fr);
        }
      }

      @media (max-width: 767px) {
        h1 {
          font-size: 30px;
        }
        .section-pad {
          padding: 40px 0;
        }
        .nav-links,
        .nav-actions {
          display: none;
        }
        .hamburger {
          display: block;
        }

        .hero {
          min-height: auto;
          padding: 80px 24px;
        }
        .hero-bg img {
          height: 260px;
        }
        .hero-ctas {
          flex-direction: column;
        }

        .quick-nav-wrap {
          position: static;
          padding: 12px 24px;
          overflow-x: auto;
          white-space: nowrap;
          border-bottom: none;
        }
        .quick-nav {
          justify-content: flex-start;
          flex-wrap: nowrap;
        }

        .slots-intro {
          grid-template-columns: 1fr;
        }
        .game-grid {
          display: flex;
          overflow-x: auto;
          scroll-snap-type: x mandatory;
          padding-bottom: 16px;
          gap: 16px;
        }
        .game-card {
          flex: 0 0 80%;
          scroll-snap-align: start;
        }

        .desc-grid {
          grid-template-columns: 1fr;
        }
        .fishing-grid {
          grid-template-columns: 1fr;
        }

        .split-section {
          grid-template-columns: 1fr;
          gap: 32px;
        }
        .v-divider {
          width: 100%;
          height: 1px;
        }

        .bingo-table-grid {
          grid-template-columns: 1fr;
        }
        .table-pills {
          grid-template-columns: 1fr;
        }
        .provider-grid {
          grid-template-columns: repeat(2, 1fr);
        }
        .footer-grid {
          grid-template-columns: 1fr;
        }

        .floating-cta {
          bottom: 0;
          right: 0;
          left: 0;
          border-radius: 0;
          width: 100%;
          height: 56px;
          animation: none;
        }
      }
