 :root {
      --primary: #0066ff;
      --dark: #1e1e1e;
      --light: #ffffff;
      --gray: #f8f9fa;
      --accent: #28a745;
    }

    * { margin: 0; padding: 0; box-sizing: border-box; }
    html, body { height: 100%; background: #eee; font-family: 'Poppins', sans-serif; }

    /* Wrapper */
    .wrapper { max-width: 800px; width: 100%; min-height: 100vh; margin: 0 auto; background: white; position: relative; overflow: hidden; display: flex; flex-direction: column; }

    /* Header */
    header { height: 70px; background: var(--light); box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08); position: sticky; top: 0; z-index: 10; }
    .container { height: 100%; display: flex; align-items: center; justify-content: space-between; padding: 0 20px; }
    .logo img { height: 46px; }
    .mobile-toggle { background: none; border: none; font-size: 26px; cursor: pointer; color: var(--dark); }

    /* Overlay & Drawer */
    .overlay { position: absolute; inset: 0; background: rgba(0, 0, 0, 0.5); backdrop-filter: blur(6px); opacity: 0; visibility: hidden; transition: all 0.4s ease; z-index: 15; }
    .overlay.active { opacity: 1; visibility: visible; }
    .drawer { position: absolute; top: 0; left: -320px; width: 320px; height: 100%; background: linear-gradient(135deg, #0066ff, #0044cc); color: white; padding: 90px 30px 40px; box-shadow: 8px 0 30px rgba(0, 0, 0, 0.2); transition: left 0.45s cubic-bezier(0.25, 0.8, 0.25, 1); z-index: 20; overflow-y: auto; }
    .drawer.active { left: 0; }
    .close-drawer { position: absolute; top: 18px; right: 18px; background: rgba(255, 255, 255, 0.25); border: none; color: white; width: 42px; height: 42px; border-radius: 50%; font-size: 22px; cursor: pointer; transition: 0.3s; }
    .close-drawer:hover { background: rgba(255, 255, 255, 0.4); transform: rotate(90deg); }
    .drawer-header { text-align: center; margin-bottom: 50px; }
    .drawer-header h2 { font-size: 28px; font-weight: 700; }
    .drawer-header p { font-size: 14px; opacity: 0.9; margin-top: 5px; }
    .drawer ul { list-style: none; }
    .drawer li { margin-bottom: 8px; }
    .drawer a { display: flex; align-items: center; gap: 16px; color: white; text-decoration: none; font-size: 17px; font-weight: 500; padding: 14px 18px; border-radius: 12px; transition: all 0.3s ease; }
    .drawer a:hover { background: rgba(255, 255, 255, 0.18); transform: translateX(10px); }

    /* Main */
    main { flex: 1; padding: 10px; }

    /* Top 3 Games */
    .top-3-games { width: 100%; padding: 10px 0; display: flex; flex-direction: row; justify-content: space-between; align-items: center; gap: 5px; flex-wrap: nowrap; }
    .top-3-games-card { flex: 1; padding: 8px; text-align: center; }
    .top-3-games-image { width: 110px; height: 110px; object-fit: cover; border-radius: 15px; }
    .game-name { font-size: 18px; font-weight: 700; margin-top: 10px; }
    .Secure-app-text { color: green; font-size: 12px; margin-top: 4px; font-weight: 600; }
    .download-button { padding: 8px 20px; margin-top: 10px; background-color: green; color: white; font-weight: 600; border: none; border-radius: 4px; font-size: 15px; cursor: pointer; }

    /* Game List Styles (Merged from Body) */
    .heading-gamelist { margin: 15px 5px; background: linear-gradient(90deg, #ff416c, #ff4b2b); color: white; text-align: center; font-size: 24px; border-radius: 10px; padding: 10px 0px; margin-bottom: 10px; box-shadow: 0 4px 10px rgba(0,0,0,0.1); }
    .list-main-div { display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid rgb(207, 207, 207); padding: 10px 0px; }
    .list-games-logo { width: 80px; height: 80px; border-radius: 15px; }
    .image-section-div { display: flex; align-items: center; }
    .about-game { margin-left: 15px; display: flex; flex-direction: column; align-items: start; justify-content: space-evenly; }
    .min-withdrawl, .Bonus-test { font-weight: 700; font-size: 13px; }
    .min-withdrawl { color: green; }
    .Bonus-test { color: blue; }

    /* Content & Cards */
    .intro-section { padding: 10px; margin-top: 20px; }
    .heading { margin-bottom: 15px; color: #333; font-size: 1.8rem; }
    .content-p { margin-bottom: 15px; color: #555; line-height: 1.6; }
    
    .cards-div { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; width: 100%; max-width: 1000px; padding: 20px 5px; }
    .card { background: #fff; padding: 20px; border-radius: 12px; box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); transition: transform 0.3s ease, box-shadow 0.3s ease; border: 1px solid #f0f0f0; }
    .card:hover { transform: translateY(-5px); box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15); }
    .card h3 { margin: 0 0 10px; font-size: 1.3rem; color: #333; }
    .card p { margin: 0; color: #666; line-height: 1.4; }

    /* Comparison Table (NEW for SEO) */
    .details-table { width: 100%; border-collapse: collapse; margin: 20px 0; background: #fff; box-shadow: 0 2px 8px rgba(0,0,0,0.05); border-radius: 8px; overflow: hidden; font-size: 14px; }
    .details-table th, .details-table td { padding: 10px; text-align: left; border-bottom: 1px solid #eee; }
    .details-table th { background-color: var(--primary); color: white; }

    /* Testimonials */
    .user { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
    .user-left { display: flex; align-items: center; gap: 10px; }
    .icon { width: 45px; height: 45px; background: #eaeaea; border-radius: 50%; display: flex; justify-content: center; align-items: center; font-size: 22px; }
    .rating { background: #0b874d; padding: 5px 10px; border-radius: 20px; color: white; font-weight: bold; font-size: 0.9rem; }

    /* FAQ */
    .faq-section { width: 100%; margin: 30px auto; }
    .faq-title { text-align: center; font-size: 2rem; margin-bottom: 25px; color: #333; }
    .faq-box { background: #fff; border-radius: 12px; padding: 18px 20px; margin-bottom: 12px; box-shadow: 0 4px 12px rgba(0,0,0,0.08); cursor: pointer; transition: 0.3s ease; }
    .faq-q { font-size: 1.15rem; font-weight: bold; color: #222; display: flex; justify-content: space-between; align-items: center; }
    .faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; color: #555; line-height: 1.5; }
    .faq-box.open .faq-a { max-height: 400px; margin-top: 10px; }
    .faq-icon { font-size: 1.4rem; font-weight: bold; transition: transform 0.3s ease; }
    .faq-box.open .faq-icon { transform: rotate(45deg); }

    /* Footer */
    .footer { background: #111; color: #ddd; padding: 50px 20px; margin-top: 50px; }
    .footer-container { max-width: 1100px; margin: auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
    .footer h3 { color: #fff; margin-bottom: 15px; font-size: 1.3rem; }
    .footer p, .footer a { font-size: 0.95rem; color: #bbb; line-height: 1.6; text-decoration: none; }
    .footer a:hover { color: #16c172; }
    .social-icons { display: flex; gap: 12px; margin-top: 10px; }
    .social-icons a { font-size: 1.3rem; color: #fff; background: #16c172; width: 38px; height: 38px; display: flex; align-items: center; justify-content: center; border-radius: 50%; transition: 0.3s ease; }
    .footer-bottom { text-align: center; margin-top: 40px; padding-top: 20px; border-top: 1px solid #333; color: #888; font-size: 0.85rem; }

    /* Responsive */
    @media (max-width: 480px) {
      header { height: 60px; }
      .logo img { height: 40px; }
      .drawer { width: 260px; left: -260px; }
      .top-3-games-card { padding: 4px; }
      .top-3-games-image { width: 70px; height: 70px; }
      .game-name { font-size: 14px; }
      .Secure-app-text { font-size: 10px; }
      .download-button { padding: 6px 15px; font-size: 12px; }
      .list-games-logo { width: 60px; height: 60px; }
      .min-withdrawl, .Bonus-test { font-size: 11px; }
      .heading-gamelist { font-size: 18px; }
    }
    
    /* Skeleton Animation for Loading State */
@keyframes shimmer {
  0% { background-position: -468px 0; }
  100% { background-position: 468px 0; }
}

.skeleton-box {
  background: #f6f7f8;
  background-image: linear-gradient(to right, #f6f7f8 0%, #edeef1 20%, #f6f7f8 40%, #f6f7f8 100%);
  background-repeat: no-repeat;
  background-size: 800px 104px; 
  animation: shimmer 1s linear infinite; 
  position: relative;
}