:root {
  --primary: #ff3333;
  --bg-dark: #0a0a0a;
  --bg-nav: rgba(20, 20, 20, 0.95);
  --primary-dark: #cc0000;
  --text: #fff;
  --bg: #111;
  --card: #222;
  --transition: all .4s cubic-bezier(.4,0,.2,1);
  --red: #ff3333;
  --red-dark: #cc0000;
  --text: #ffffff;
  --text-light: #e0e0e0;
  --accent: #00ccff;
  --border: rgba(255, 255, 255, 0.15);
  --glass: rgba(255, 255, 255, 0.05);
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(135deg, #000, #1a1a1a);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ---------------- NAVBAR ---------------- */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 50px;
  background: var(--bg-nav);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 999;
  transition: background var(--transition);
}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.98);
}

.logo img {
  height: 70px;
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.05);
}

/* ---------------- NAV LINKS ---------------- */
.nav-links {
  display: flex;
  list-style: none;
  gap: 40px;
  align-items: center;
  transition: var(--transition);
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  position: relative;
  transition: var(--transition);
}

.nav-links a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--primary);
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-links a:hover::after {
  width: 100%;
}

/* ---------------- DROPDOWN ---------------- */
.dropdown {
  position: relative;
}

.dropdown-content {
  position: absolute;
  top: 140%;
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  background: rgba(34, 34, 34, 0.95);
  border: 1px solid rgba(255, 51, 51, 0.2);
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  backdrop-filter: blur(12px);
}

.dropdown:hover .dropdown-content {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-content a {
  display: block;
  padding: 12px 18px;
  color: #eee;
  font-size: 15px;
  border-radius: 8px;
  transition: var(--transition);
}

.dropdown-content a:hover {
  background-color: var(--primary);
  color: #fff;
  transform: translateX(8px);
}

/* ---------------- DOWNLOAD BUTTON ---------------- */
.download-btn {
  background: var(--primary);
  color: white;
  padding: 15px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  box-shadow: 0 0 10px rgba(255, 51, 51, 0.6);
}

.download-btn:hover {
  background: #e62e2e;
  box-shadow: 0 0 20px rgba(255, 51, 51, 0.8);
  transform: translateY(-2px);
}

/* ---------------- HAMBURGER ---------------- */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  z-index: 1001; /* ✅ Higher than nav-links */
  position: relative; /* ✅ Ensure stacking context */
  transition: var(--transition);
}

.menu-toggle span {
  width: 28px;
  height: 3px;
  background-color: white;
  border-radius: 5px;
  transition: all 0.4s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* ---------------- MOBILE ---------------- */
@media (max-width: 768px) {
  .navbar {
    padding: 15px 25px;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: rgba(20, 20, 20, 0.98);
    flex-direction: column;
    gap: 20px;
    padding: 25px 0;
    text-align: center;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
    z-index: 1000; /* ✅ Below menu toggle */
  }

  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .dropdown-content {
    position: static;
    transform: none;
    box-shadow: none;
    background: rgba(40, 40, 40, 0.9);
    margin-top: 10px;
    border: none;
    border-radius: 10px;
    display: none;
    opacity: 1;
    visibility: visible;
  }

  .dropdown.active .dropdown-content {
    display: block;
    animation: dropdownSlide 0.4s ease;
  }

  @keyframes dropdownSlide {
    from { transform: translateY(-10px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
  }

  .download-btn {
    width: 80%;
    margin: 10px auto;
  }
}



    /* container */
    .container {
       max-width: 1200px;
      margin: 120px auto 40px;
      padding: 20px;
        }
        .heading {
            text-align: center;
            margin-bottom: 40px;
        }
        .heading h1 {
            font-size: 2.5em;
            margin-bottom: 20px;
            color: var(--primary);
        }
        .content {
            background: var(--card);
            border-radius: 16px;
            padding: 40px;
            margin-bottom: 40px;
            box-shadow: 0 20px 40px rgba(0,0,0,.6);
            border: 1px solid rgba(255,51,51,.2);
        }
        .content p {
            margin-bottom: 20px;
            font-size: 1.1em;
        }
        .content strong {
            color: var(--primary);
        }
        .buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            margin-bottom: 40px;
            flex-wrap: wrap;
        }
        .btn {
            background: linear-gradient(135deg, var(--primary), #ff5555);
            color: #fff;
            padding: 15px 30px;
            border: none;
            border-radius: 50px;
            font-weight: 700;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            box-shadow: 0 8px 20px rgba(255,51,51,.4);
            transition: var(--transition);
            cursor: pointer;
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 30px rgba(255,51,51,.6);
            background: linear-gradient(135deg, var(--primary-dark), #ff4444);
        }
        .gift-section {
            background: var(--card);
            border-radius: 16px;
            padding: 40px;
            text-align: center;
            margin-bottom: 40px;
            box-shadow: 0 20px 40px rgba(0,0,0,.6);
            border: 1px solid rgba(255,51,51,.2);
        }
        .gift-code {
            background: #000;
            color: var(--primary);
            font-family: monospace;
            font-size: 1.2em;
            padding: 20px;
            border-radius: 8px;
            margin: 20px 0;
            letter-spacing: 2px;
            word-break: break-all;
        }
        .spec-table {
            width: 100%;
            border-collapse: collapse;
            background: var(--card);
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0,0,0,.6);
            border: 1px solid rgba(255,51,51,.2);
            margin-bottom: 20px;
        }
        .spec-table th,
        .spec-table td {
            padding: 15px;
            text-align: left;
            border-bottom: 1px solid rgba(255,255,255,.08);
        }
        .spec-table th {
            background: var(--primary-dark);
            color: var(--text);
            font-weight: 600;
        }
        .spec-table td {
            background: var(--bg);
        }
        .spec-table tr:last-child th,
        .spec-table tr:last-child td {
            border-bottom: none;
        }
        @media (max-width: 768px) {
            .container {
                padding: 10px;
                margin-top: 100px;
            }
            .header h1 {
                font-size: 2em;
            }
            .content,
            .gift-section {
                padding: 20px;
            }
            .buttons {
                flex-direction: column;
                align-items: center;
            }
            .btn {
                width: 100%;
                max-width: 300px;
                justify-content: center;
            }
            .spec-table {
                font-size: 0.9em;
            }
            .spec-table th,
            .spec-table td {
                padding: 10px;
            }
        }

         .section h2 {
            font-size: 2.2em;
            color: var(--primary);
            margin: 40px 0 25px;
            text-align: center;
            position: relative;
        }
         .section h2::after {
            content: '';
            width: 80px;
            height: 4px;
            background: var(--primary);
            display: block;
            margin: 12px auto 0;
            border-radius: 2px;
        }
         .section h3 {
            font-size: 1.5em;
            color: #fff;
            margin: 30px 0 15px;
            padding-left: 10px;
            border-left: 4px solid var(--primary);
        }

         .section h4 {
            font-size: 1.2em;
            color: #fff;
            margin: 30px 0 15px;
            padding-left: 10px;
            border-left: 4px solid var(--primary);
        }


        .section {
            background: var(--card);
            border-radius: 16px;
            padding: 35px;
            margin-bottom: 35px;
            box-shadow: 0 15px 35px rgba(0,0,0,.5);
            border: 1px solid rgba(255,51,51,.2);
        }
         .section p {
            margin-bottom: 18px;
            font-size: 1.05em;
            color: #eee;
        }
         .section ol, ul {
            margin: 20px 0;
            padding-left: 30px;
        }
         .section ol li, ul li {
            margin-bottom: 18px;
            font-size: 1.05em;
            position: relative;
            padding-left: 10px;
        }
         .section ol li::marker {
            color: var(--primary);
            font-weight: bold;
        }
         .section ul li::before {
          
            color: var(--primary);
            font-weight: bold;
            position: absolute;
            left: -20px;
        }
        .game-item {
            background: rgba(255,51,51,.1);
            padding: 18px;
            border-radius: 12px;
            margin: 15px 0;
            border-left: 4px solid var(--primary);
        }
        .game-item strong {
            color: var(--primary);
            display: block;
            margin-bottom: 8px;
            font-size: 1.2em;
        }
        @media (max-width: 768px) {
            .container {
                padding: 20px 15px;
                margin-top: 100px;
            }
            .section h2 {
                font-size: 1.4em;
            }
            .section h3 {
                font-size: 1.2em;
            }
            .section {
                padding: 25px 20px;
            }
            p, ol li, ul li {
                font-size: 1em;
            }
        }


        .center-img {
  display: block;             
  margin: 20px auto;          
  max-width: 300px;             
  height: auto;               
  border-radius: 12px;        
  box-shadow: 0 4px 20px rgba(0,0,0,0.3); 
  transition: transform 0.3s ease;       
}

.center-img:hover {
  transform: scale(1.03);     
}


@media (max-width: 768px) {
  .center-img {
    width: 80%;           
    max-width: 300px;   
    margin: 15px auto;
  }
}

@media (max-width: 480px) {
  .center-img {
    width: 90%;         
    max-width: 280px;
    margin: 10px auto;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
  }
}



        .faq-section {
    background: var(--card);
    border-radius: 16px;
    padding: 35px;
    margin-bottom: 35px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 51, 51, 0.2);
  }

  .faq-item {
      box-shadow: 0 20px 40px rgba(0,0,0,.6);
    border-left: 4px solid var(--primary);
    border-radius: 12px;
    padding: 20px;
    margin: 18px 0;
    transition: var(--transition);
  }

  .faq-item:hover {
    background: rgba(255, 51, 51, 0.014);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 51, 51, 0.2);
  }

  .faq-item h3 {
    color: var(--primary);
    font-size: 1.3em;
    margin-bottom: 10px;
    font-weight: 600;
  }

  .faq-item p {
    color: #ddd;
    font-size: 1.02em;
    line-height: 1.6;
  }

  @media (max-width: 768px) {
    .faq-section {
      padding: 25px 20px;
    }
    .faq-item {
      padding: 16px;
      margin: 15px 0;
    }
    .faq-item h3 {
      font-size: 1.2em;
    }
  }


  /* about page */

 

    .page-title {
      text-align: center;
      font-size: 2.8em;
      color: var(--primary);
      margin-bottom: 40px;
      position: relative;
    }

    .page-title::after {
      content: '';
      width: 100px;
      height: 5px;
      background: var(--primary);
      display: block;
      margin: 15px auto 0;
      border-radius: 3px;
    }

    .about-content {
      background: var(--card);
      border-radius: 18px;
      padding: 40px;
      margin-bottom: 30px;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
      border: 1px solid rgba(255, 51, 51, 0.2);
    }

    .about-content h2 {
      color: var(--primary);
      font-size: 1.9em;
      margin: 35px 0 20px;
      position: relative;
      padding-left: 12px;
      border-left: 4px solid var(--primary);
    }

    .about-content h3 {
      color: #fff;
      font-size: 1.5em;
      margin: 35px 10px 20px;
      position: relative;
      padding-left: 12px;
      border-left: 4px solid var(--primary);
    }


    .about-content p {
      margin-bottom: 18px;
      font-size: 1.05em;
      color: #eee;
    }

    .about-content ul {
      margin: 20px 0;
      padding-left: 30px;
    }

    .about-content ul li {
      margin-bottom: 12px;
      font-size: 1.05em;
      position: relative;
      color: #ddd;
    }

    .about-content ul li::marker {
      color: var(--primary);
    }

    .highlight-box {
      background: rgba(255, 51, 51, 0.1);
      border-left: 5px solid var(--primary);
      padding: 20px;
      border-radius: 12px;
      margin: 25px 0;
      font-style: italic;
      color: #fff;
    }

 

    .contact-info {
      background: rgba(255, 51, 51, 0.08);
      padding: 18px;
      border-radius: 12px;
      font-weight: 600;
      color: var(--primary);
      text-align: center;
      margin: 20px 0;
      font-size: 1.1em;
    }

    @media (max-width: 768px) {
      
      .page-title { font-size: 2.2em; }
      .about-content { padding: 25px; }
      .about-content h2 { font-size: 1.6em; }
      .about-content p, .about-content ul li { font-size: 1em; }
    }


    .footer {
      background:  var(--red-dark);
      color: var(--text);
      backdrop-filter: blur(12px);
      border-top: 1px solid var(--border);
      margin-top: 60px;
      overflow: hidden;
      position: relative;
    }

    .footer::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      background: var(--glass);
      pointer-events: none;
      z-index: 0;
    }

    .footer-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
      position: relative;
      z-index: 1;
    }

    /* =============== LINKS =============== */
    .footer-links {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 12px 24px;
      padding: 22px 0;
      border-bottom: 1px solid var(--border);
      position: relative;
    }

    .footer-links a {
      color: var(--text-light);
      text-decoration: none;
      font-weight: 500;
      font-size: 16px;
      position: relative;
      transition: var(--transition);
      padding: 6px 0;
      white-space: nowrap;
    }

    .footer-links a::after {
      content: '';
      position: absolute;
      width: 0;
      height: 2px;
      bottom: 0;
      left: 50%;
      background: var(--accent);
      border-radius: 1px;
      transition: var(--transition);
      transform: translateX(-50%);
    }

    .footer-links a:hover {
      color: white;
      text-shadow: 0 0 8px rgba(0, 204, 255, 0.4);
    }

    .footer-links a:hover::after {
      width: 100%;
    }

    .footer-links .separator {
      color: rgba(255, 255, 255, 0.4);
      font-weight: 300;
      pointer-events: none;
    }

    /* =============== COPYRIGHT =============== */
    .copyright {
      text-align: center;
      padding: 18px 0;
      font-size: 13.5px;
      color: var(--text-light);
      font-weight: 500;
    }

    .copyright a {
      color: var(--accent);
      text-decoration: none;
      font-weight: 600;
      position: relative;
      transition: var(--transition);
    }

    .copyright a::before {
      content: '';
      position: absolute;
      width: 0;
      height: 1px;
      bottom: -2px;
      left: 0;
      background: var(--accent);
      transition: var(--transition);
    }

    .copyright a:hover {
      color: white;
    }

    .copyright a:hover::before {
      width: 100%;
    }

    /* =============== MOBILE RESPONSIVE =============== */
    @media (max-width: 768px) {
      .footer-links {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        padding: 20px 0;
      }

      .footer-links a {
        font-size: 14px;
        padding: 8px 0;
        width: fit-content;
      }

      .footer-links .separator {
        display: none;
      }

      .footer-links a::after {
        display: none;
      }

      .footer-links a:hover {
        transform: translateX(8px);
        color: white;
      }

      .copyright {
        font-size: 13px;
        padding: 16px 0;
      }
    }

    @media (max-width: 480px) {
      .footer-container {
        padding: 0 15px;
      }

      .footer-links a {
        font-size: 13.5px;
      }

      .copyright {
        font-size: 12.5px;
      }
    }

    /* =============== SUBTLE ANIMATION =============== */
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(10px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .footer-links a,
    .copyright {
      animation: fadeInUp 0.6s ease forwards;
    }

    .footer-links a:nth-child(1) { animation-delay: 0.1s; }
    .footer-links a:nth-child(3) { animation-delay: 0.2s; }
    .footer-links a:nth-child(5) { animation-delay: 0.3s; }
    .footer-links a:nth-child(7) { animation-delay: 0.4s; }
    .footer-links a:nth-child(9) { animation-delay: 0.5s; }
    .footer-links a:nth-child(11) { animation-delay: 0.6s; }


    .payment-table {
  width: 100%;
  border-collapse: collapse;
  margin: 25px 0;
  font-size: 16px;
  font-family: 'Poppins', sans-serif;
  background-color: #000; /* Black background */
  color: #fff;
  border: 1px solid #222;
}

.payment-table th,
.payment-table td {
  padding: 14px 18px;
  border: 1px solid #333;
}

.payment-table th {
  background-color: #d50000; /* Bright red header */
  color: #fff;
  font-weight: 600;
  text-align: left;
  text-transform: capitalize;
}

.payment-table tr:nth-child(even) {
  background-color: #111; /* Slightly lighter black for even rows */
}

.payment-table tr:hover {
  background-color: #1a1a1a;
  transition: background-color 0.3s ease;
}

/* Responsive Design */
@media (max-width: 600px) {
  .payment-table,
  .payment-table thead,
  .payment-table tbody,
  .payment-table th,
  .payment-table td,
  .payment-table tr {
    display: block;
    padding: 15px;
  }

  .payment-table tr {
    margin-bottom: 15px;
    border: 1px solid #333;
    border-radius: 10px;
    padding: 10px;
    background-color: #000;
  }

  .payment-table th {
    display: none;
  }

  .payment-table td {
    display: flex;
    justify-content: space-between;
    padding: 10px 15px;
  }

  .payment-table td::before {
    content: attr(data-label);
    font-weight: 600;
    color: #d50000;
  }
}
