/* ===== RESET & BASE ===== */
    *,
    *::before,
    *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0
    }

    body {
      margin: 0;
      background: #1a1a2e;
      display: flex;
      justify-content: center;
      font-family: 'Inter', system-ui, -apple-system, sans-serif;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      color: #e0e0e0;
      line-height: 1.6;
      /* Anti-Copy */
      
      
      
      
      
    }

    /* Anti-Image Drag/Save */
    img {
      
      
      
    }

    /* ===== APP SHELL ===== */
    .app-shell {
      width: 100%;
      max-width: 430px;
      background: linear-gradient(180deg, #0d1117 0%, #111827 50%, #0d1117 100%);
      min-height: 100vh;
      position: relative;
      overflow-x: hidden;
      padding-bottom: 76px;
    }

    /* ===== STICKY HEADER ===== */
    .site-header {
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgba(13, 17, 23, 0.92);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border-bottom: 1px solid rgba(218, 165, 32, 0.15);
      padding: 10px 16px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .site-header .logo-wrap {
      display: flex;
      align-items: center;
      gap: 8px;
      text-decoration: none;
    }

    .site-header .logo-img {
      height: 32px;
      width: auto;
    }

    .header-cta {
      display: flex;
      gap: 8px;
    }

    .btn-login,
    .btn-register {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 8px 16px;
      border-radius: 8px;
      font-size: 13px;
      font-weight: 700;
      text-decoration: none;
      cursor: pointer;
      border: none;
      transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
      font-family: 'Inter', sans-serif;
    }

    .btn-login {
      background: transparent;
      color: #daa520;
      border: 1.5px solid rgba(218, 165, 32, 0.4);
    }

    .btn-login:hover {
      background: rgba(218, 165, 32, 0.1);
      border-color: #daa520;
    }

    .btn-register {
      background: linear-gradient(135deg, #daa520 0%, #f4c542 50%, #daa520 100%);
      color: #0d1117;
      box-shadow: 0 2px 12px rgba(218, 165, 32, 0.35);
    }

    .btn-register:hover {
      transform: translateY(-1px);
      box-shadow: 0 4px 20px rgba(218, 165, 32, 0.5);
    }

    /* ===== HERO SECTION ===== */
    .hero {
      position: relative;
      overflow: hidden;
    }

    .hero-banner {
      width: 100%;
      height: auto;
      display: block;
    }

    .hero-overlay {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 20px 16px;
      background: linear-gradient(transparent, rgba(13, 17, 23, 0.95));
    }

    .hero-overlay h1 {
      font-family: 'Outfit', sans-serif;
      font-size: 22px;
      font-weight: 900;
      color: #fff;
      line-height: 1.2;
      margin-bottom: 6px;
      text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
    }

    .hero-overlay h1 .gold {
      color: #f4c542;
    }

    .hero-overlay .hero-sub {
      font-size: 13px;
      color: rgba(255, 255, 255, 0.8);
      margin-bottom: 12px;
    }

    .hero-cta {
      display: flex;
      gap: 10px;
    }

    .btn-hero {
      flex: 1;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      padding: 12px 8px;
      border-radius: 10px;
      font-size: 14px;
      font-weight: 800;
      text-decoration: none;
      cursor: pointer;
      border: none;
      font-family: 'Inter', sans-serif;
      transition: all 0.3s ease;
    }

    .btn-hero.primary {
      background: linear-gradient(135deg, #daa520, #f4c542, #daa520);
      color: #0d1117;
      box-shadow: 0 4px 20px rgba(218, 165, 32, 0.4);
    }

    .btn-hero.primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 28px rgba(218, 165, 32, 0.55);
    }

    .btn-hero.secondary {
      background: rgba(255, 255, 255, 0.08);
      color: #f4c542;
      border: 1.5px solid rgba(218, 165, 32, 0.3);
      backdrop-filter: blur(8px);
    }

    .btn-hero.secondary:hover {
      background: rgba(218, 165, 32, 0.12);
      border-color: #daa520;
    }

    /* ===== TRUST BAR ===== */
    .trust-bar {
      display: flex;
      justify-content: center;
      gap: 20px;
      padding: 14px 16px;
      background: rgba(218, 165, 32, 0.06);
      border-top: 1px solid rgba(218, 165, 32, 0.08);
      border-bottom: 1px solid rgba(218, 165, 32, 0.08);
    }

    .trust-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 4px;
    }

    .trust-icon {
      font-size: 20px;
    }

    .trust-label {
      font-size: 10px;
      font-weight: 600;
      color: rgba(255, 255, 255, 0.6);
      text-transform: uppercase;
      letter-spacing: 0.5px;
      text-align: center;
    }

    /* ===== SECTION HEADERS ===== */
    .section {
      padding: 28px 16px;
    }

    .section-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 16px;
    }

    .section-header h2 {
      font-family: 'Outfit', sans-serif;
      font-size: 20px;
      font-weight: 800;
      color: #fff;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .section-header h2 .accent {
      color: #f4c542;
    }

    .section-link {
      font-size: 12px;
      color: #daa520;
      text-decoration: none;
      font-weight: 600;
      display: flex;
      align-items: center;
      gap: 4px;
      transition: color 0.2s;
    }

    .section-link:hover {
      color: #f4c542
    }

    .section-link::after {
      content: '→'
    }

    .section-desc {
      font-size: 14px;
      color: rgba(255, 255, 255, 0.65);
      margin-bottom: 18px;
      line-height: 1.65;
    }

    /* ===== PROMO CARDS CAROUSEL ===== */
    .promo-scroll {
      display: flex;
      gap: 12px;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
      padding-bottom: 8px;
      scrollbar-width: none;
    }

    .promo-scroll::-webkit-scrollbar {
      display: none
    }

    .promo-card {
      flex: 0 0 88%;
      scroll-snap-align: center;
      border-radius: 14px;
      overflow: hidden;
      position: relative;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
      transition: transform 0.3s ease;
    }

    .promo-card:hover {
      transform: scale(1.02)
    }

    .promo-card img {
      width: 100%;
      height: auto;
      display: block;
    }

    /* ===== GAME CATEGORY GRID ===== */
    .category-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 10px;
    }

    .category-card {
      background: linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
      border: 1px solid rgba(255, 255, 255, 0.06);
      border-radius: 14px;
      padding: 14px 8px;
      text-align: center;
      text-decoration: none;
      transition: all 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
    }

    .category-card:hover {
      background: rgba(218, 165, 32, 0.08);
      border-color: rgba(218, 165, 32, 0.25);
      transform: translateY(-3px);
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    }

    .category-icon {
      width: 52px;
      height: 52px;
      border-radius: 12px;
      overflow: hidden;
      background: rgba(0, 0, 0, 0.2);
    }

    .category-icon img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .category-card h3 {
      font-size: 11px;
      font-weight: 700;
      color: #fff;
      line-height: 1.3;
    }

    .category-card .count {
      font-size: 10px;
      color: rgba(255, 255, 255, 0.45);
      font-weight: 500;
    }

    /* ===== GAME GRID (SLOTS / LIVE / FISHING) ===== */
    .game-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 10px;
    }

    .game-card {
      border-radius: 12px;
      overflow: hidden;
      position: relative;
      background: rgba(0, 0, 0, 0.3);
      transition: all 0.3s ease;
      text-decoration: none;
    }

    .game-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 28px rgba(218, 165, 32, 0.2);
    }

    .game-card img {
      width: 100%;
      height: auto;
      display: block;
      aspect-ratio: 1/1;
      object-fit: cover;
    }

    .game-card .game-label {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 6px 8px;
      background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
      font-size: 10px;
      font-weight: 600;
      color: #fff;
      text-align: center;
    }

    .game-card .provider-badge {
      position: absolute;
      top: 6px;
      left: 6px;
      background: rgba(0, 0, 0, 0.7);
      backdrop-filter: blur(4px);
      padding: 2px 6px;
      border-radius: 4px;
      font-size: 9px;
      font-weight: 700;
      color: #f4c542;
    }

    /* ===== PROVIDER LOGOS ===== */
    .provider-row {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      justify-content: center;
      padding: 8px 0;
    }

    .provider-logo {
      width: 48px;
      height: 28px;
      object-fit: contain;
      opacity: 0.55;
      transition: opacity 0.3s;
      filter: grayscale(0);
    }

    .provider-logo:hover {
      opacity: 1
    }

    /* ===== LIVE CASINO CARDS ===== */
    .live-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 10px;
    }

    .live-card {
      border-radius: 14px;
      overflow: hidden;
      position: relative;
      background: rgba(0, 0, 0, 0.3);
      text-decoration: none;
      transition: all 0.3s ease;
    }

    .live-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 24px rgba(218, 165, 32, 0.2);
    }

    .live-card img {
      width: 100%;
      height: auto;
      display: block;
    }

    .live-card .live-badge {
      position: absolute;
      top: 8px;
      left: 8px;
      background: rgba(220, 38, 38, 0.9);
      color: #fff;
      font-size: 9px;
      font-weight: 800;
      padding: 3px 8px;
      border-radius: 4px;
      display: flex;
      align-items: center;
      gap: 4px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .live-badge::before {
      content: '';
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: #fff;
      animation: pulse-dot 1.5s infinite;
    }

    @keyframes pulse-dot {

      0%,
      100% {
        opacity: 1
      }

      50% {
        opacity: 0.3
      }
    }

    .live-card .live-label {
      padding: 10px;
      text-align: center;
    }

    .live-card h3 {
      font-size: 13px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 2px;
    }

    .live-card .live-sub {
      font-size: 10px;
      color: rgba(255, 255, 255, 0.5);
    }

    /* ===== FISHING SECTION ===== */
    .fishing-scroll {
      display: flex;
      gap: 10px;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      padding-bottom: 8px;
      scrollbar-width: none;
    }

    .fishing-scroll::-webkit-scrollbar {
      display: none
    }

    .fishing-card {
      flex: 0 0 42%;
      scroll-snap-align: start;
      border-radius: 14px;
      overflow: hidden;
      background: linear-gradient(145deg, rgba(14, 116, 144, 0.15), rgba(0, 0, 0, 0.3));
      border: 1px solid rgba(14, 116, 144, 0.15);
      text-decoration: none;
      transition: all 0.3s ease;
    }

    .fishing-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 24px rgba(14, 116, 144, 0.2);
    }

    .fishing-card img {
      width: 100%;
      height: auto;
      display: block;
    }

    .fishing-card .fish-info {
      padding: 10px;
    }

    .fishing-card h3 {
      font-size: 12px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 4px;
    }

    .fishing-card .fish-provider {
      font-size: 10px;
      color: rgba(255, 255, 255, 0.5);
    }

    /* ===== PAYMENT METHODS ===== */
    .payment-section {
      background: linear-gradient(145deg, rgba(218, 165, 32, 0.05), transparent);
      border-radius: 16px;
      padding: 20px 16px;
      margin: 0 16px;
      border: 1px solid rgba(218, 165, 32, 0.1);
    }

    .payment-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 10px;
      margin-bottom: 16px;
    }

    .payment-card {
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(255, 255, 255, 0.06);
      border-radius: 12px;
      padding: 14px;
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 10px;
      transition: all 0.3s ease;
    }

    .payment-card:hover {
      background: rgba(218, 165, 32, 0.06);
      border-color: rgba(218, 165, 32, 0.2);
    }

    .payment-icon {
      font-size: 24px;
      width: 36px;
      text-align: center;
    }

    .payment-card h3 {
      font-size: 13px;
      font-weight: 700;
      color: #fff;
    }

    .payment-card .payment-speed {
      font-size: 10px;
      color: #4ade80;
      font-weight: 600;
    }

    /* ===== SPORTS BETTING ===== */
    .sports-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 10px;
    }

    .sports-card {
      border-radius: 14px;
      overflow: hidden;
      position: relative;
      background: rgba(0, 0, 0, 0.3);
      text-decoration: none;
      transition: all 0.3s ease;
    }

    .sports-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 24px rgba(218, 165, 32, 0.2);
    }

    .sports-card img {
      width: 100%;
      height: auto;
      display: block;
    }

    .sports-card .sports-info {
      padding: 10px;
    }

    .sports-card h3 {
      font-size: 13px;
      font-weight: 700;
      color: #fff;
    }

    .sports-card .sports-sub {
      font-size: 10px;
      color: rgba(255, 255, 255, 0.5);
    }

    /* ===== APP DOWNLOAD BANNER ===== */
    .app-banner {
      margin: 0 16px;
      border-radius: 16px;
      overflow: hidden;
      position: relative;
      box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
    }

    .app-banner img {
      width: 100%;
      height: auto;
      display: block;
    }

    /* ===== FAQ ACCORDION ===== */
    .faq-section {
      padding: 28px 16px;
    }

    .faq-section h2 {
      font-family: 'Outfit', sans-serif;
      font-size: 20px;
      font-weight: 800;
      color: #fff;
      margin-bottom: 4px;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .faq-subtitle {
      font-size: 13px;
      color: rgba(255, 255, 255, 0.5);
      margin-bottom: 16px;
    }

    .faq-item {
      border: 1px solid rgba(255, 255, 255, 0.06);
      border-radius: 12px;
      margin-bottom: 8px;
      overflow: hidden;
      background: rgba(255, 255, 255, 0.02);
      transition: all 0.3s ease;
    }

    .faq-item.active {
      border-color: rgba(218, 165, 32, 0.2);
      background: rgba(218, 165, 32, 0.04);
    }

    .faq-question {
      width: 100%;
      padding: 16px;
      background: none;
      border: none;
      color: #fff;
      font-size: 14px;
      font-weight: 600;
      text-align: left;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      font-family: 'Inter', sans-serif;
      line-height: 1.4;
      transition: color 0.2s;
    }

    .faq-question:hover {
      color: #f4c542
    }

    .faq-chevron {
      flex-shrink: 0;
      width: 20px;
      height: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: transform 0.3s ease;
      color: rgba(255, 255, 255, 0.4);
      font-size: 14px;
    }

    .faq-item.active .faq-chevron {
      transform: rotate(180deg);
      color: #f4c542;
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.35s ease, padding 0.35s ease;
    }

    .faq-item.active .faq-answer {
      max-height: 400px;
    }

    .faq-answer-inner {
      padding: 0 16px 16px;
      font-size: 13px;
      color: rgba(255, 255, 255, 0.65);
      line-height: 1.7;
    }

    /* ===== FOOTER ===== */
    .site-footer {
      background: rgba(0, 0, 0, 0.4);
      border-top: 1px solid rgba(255, 255, 255, 0.05);
      padding: 28px 16px 20px;
    }

    .footer-logo {
      display: flex;
      justify-content: center;
      margin-bottom: 16px;
    }

    .footer-logo img {
      height: 36px;
      width: auto;
    }

    .footer-links {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 6px 14px;
      margin-bottom: 16px;
    }

    .footer-links a {
      font-size: 11px;
      color: rgba(255, 255, 255, 0.5);
      text-decoration: none;
      transition: color 0.2s;
      display: inline-block;
      padding: 12px 10px;
      min-height: 48px;
      min-width: 48px;
      box-sizing: border-box;
      line-height: 24px;
    }

    .footer-links a:hover {
      color: #f4c542
    }

    .footer-providers {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 6px;
      margin-bottom: 16px;
      padding: 12px 0;
      border-top: 1px solid rgba(255, 255, 255, 0.04);
      border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    }

    .footer-providers img {
      height: 20px;
      width: auto;
      opacity: 0.4;
      filter: grayscale(0.3);
    }

    .footer-compliance {
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.05);
      border-radius: 10px;
      padding: 14px;
      margin-bottom: 16px;
    }

    .footer-compliance h3 {
      font-size: 11px;
      font-weight: 700;
      color: rgba(255, 255, 255, 0.9);
      text-transform: uppercase;
      letter-spacing: 0.5px;
      margin-bottom: 6px;
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .footer-compliance p {
      font-size: 10px;
      color: rgba(255, 255, 255, 0.75);
      line-height: 1.65;
    }

    .footer-copyright {
      text-align: center;
      font-size: 10px;
      color: rgba(255, 255, 255, 0.6);
      line-height: 1.5;
    }

    .footer-age-badge {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 24px;
      height: 24px;
      border: 2px solid #dc2626;
      border-radius: 4px;
      font-size: 10px;
      font-weight: 900;
      color: #dc2626;
      margin: 0 4px;
      vertical-align: middle;
    }

    /* ===== BOTTOM NAV ===== */
    .bottom-nav {
      position: fixed;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 100%;
      max-width: 430px;
      background: rgba(13, 17, 23, 0.96);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-top: 1px solid rgba(218, 165, 32, 0.12);
      display: flex;
      align-items: stretch;
      z-index: 200;
      padding: 6px 0;
      padding-bottom: max(6px, env(safe-area-inset-bottom));
    }

    .nav-item {
      flex: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 3px;
      padding: 6px 4px;
      text-decoration: none;
      color: rgba(255, 255, 255, 0.45);
      transition: all 0.25s ease;
      position: relative;
    }

    .nav-item:hover,
    .nav-item.active {
      color: #f4c542;
    }

    .nav-item.active::before {
      content: '';
      position: absolute;
      top: -6px;
      left: 50%;
      transform: translateX(-50%);
      width: 24px;
      height: 2px;
      background: #f4c542;
      border-radius: 0 0 2px 2px;
    }

    .nav-icon {
      font-size: 20px;
      line-height: 1;
    }

    .nav-label {
      font-size: 9px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.3px;
    }

    .nav-item.cta-nav {
      position: relative;
    }

    .nav-item.cta-nav .nav-icon {
      width: 40px;
      height: 40px;
      background: linear-gradient(135deg, #daa520, #f4c542);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #0d1117;
      font-size: 18px;
      margin-top: -14px;
      box-shadow: 0 2px 16px rgba(218, 165, 32, 0.4);
      transition: all 0.3s ease;
    }

    .nav-item.cta-nav:hover .nav-icon {
      transform: scale(1.08);
      box-shadow: 0 4px 24px rgba(218, 165, 32, 0.6);
    }

    /* ===== CTA INLINE ===== */
    .cta-inline {
      display: flex;
      justify-content: center;
      padding: 8px 16px 0;
    }

    .cta-inline .btn-hero {
      flex: 0 1 320px;
    }

    /* ===== DIVIDER ===== */
    .section-divider {
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(218, 165, 32, 0.15), transparent);
      margin: 0 16px;
    }

    /* ===== LAZY LOAD TRANSITIONS ===== */
    .lazy {
      opacity: 0;
      transition: opacity 0.5s ease;
    }

    .loaded {
      opacity: 1;
    }

    /* ===== SCROLLBAR ===== */
    ::-webkit-scrollbar {
      width: 0;
      height: 0
    }

    /* ===== RESPONSIVE 320px ===== */
    @media(max-width:359px) {
      .hero-overlay h1 {
        font-size: 18px
      }

      .btn-hero {
        font-size: 12px;
        padding: 10px 6px
      }

      .category-grid {
        gap: 6px
      }

      .category-card {
        padding: 10px 6px
      }

      .category-icon {
        width: 42px;
        height: 42px
      }

      .category-card h3 {
        font-size: 10px
      }

      .game-grid {
        gap: 6px
      }

      .live-grid {
        gap: 6px
      }

      .section-header h2 {
        font-size: 17px
      }

      .promo-card {
        flex: 0 0 92%
      }

      .trust-bar {
        gap: 12px
      }
    }
  