  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
      background-color: #f8f9fa;
    }

    header {
      background: linear-gradient(135deg, #ff6b6b, #fd8b81);
      padding: 15px 30px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
      position: sticky;
      top: 0;
      z-index: 1000;
      transition: all 0.3s ease;
    }

    .navbar {
      max-width: 1280px;
      margin: auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
    }

    .brand {
  display: flex;
  align-items: center;
  gap: 12px;
  background-color: white;
  padding: 6px 12px; 
  border-radius: 6px; 
}

.brand img {
  height: 36px;
  transition: transform 0.3s ease;
}


    .brand img:hover {
      transform: scale(1.1);
    }

    .brand-name {
      font-weight: 700;
      font-size: 24px;
      color: white;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
      letter-spacing: 0.5px;
    }

   nav {
  display: flex;
  gap: 30px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end; /* Links ko right me align karega */
}



nav .nav-item {
  position: relative;
}

nav .nav-item > a {
  text-decoration: none;
  color: white;
  font-weight: 600;
  font-size: 18px;
  padding: 10px 0;
  cursor: pointer;
  transition: color 0.3s ease;
  display: block;
}



    nav .nav-item > a:hover {
      color: #ffe5e5;
    }

    nav .nav-item > a::after {
     
      font-size: 12px;
      opacity: 0.8;
    }

    .dropdown {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      background-color: white;
      min-width: 200px;
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
      border-radius: 8px;
      overflow: hidden;
      z-index: 999;
      flex-direction: column;
      opacity: 0;
      transform: translateY(-10px);
      transition: all 0.3s ease;
    }

    .dropdown a {
      padding: 12px 16px;
      text-decoration: none;
      color: #ff6b6b;
      font-weight: 500;
      font-size: 16px;
      transition: all 0.3s ease;
    }

    .dropdown a:hover {
      background-color: #fff3f3;
      color: #e55a5a;
      padding-left: 20px;
    }

    nav .nav-item:hover .dropdown {
      display: flex;
      opacity: 1;
      transform: translateY(0);
    }

    .buttons {
      display: flex;
      gap: 15px;
      align-items: center;
    }

    .btn-signup, .btn-login {
      padding: 10px 20px;
      border-radius: 50px;
      font-weight: 600;
      font-size: 14px;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .btn-signup {
  background: linear-gradient( #1e7a9b, #1e7a9b);
  color: white;
  border: none;
  border-radius: 25px;
  padding: 14px 32px;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  
  transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
}

.btn-signup::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
 
  transition: left 0.5s;
}

.btn-signup:hover::before {
  left: 100%;
}

.btn-signup:hover {
  background: linear-gradient(145deg, #1e7a9b 0%, #6a4c93 100%);
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.6);
}

.btn-signup:active {
  transform: translateY(-2px) scale(1.01);
}

.btn-login {
  background: linear-gradient(145deg, #65d9ab, #64daab);
  color: white;
  border: 2px solid transparent;
  border-radius: 25px;
  padding: 12px 30px;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
  box-shadow: 0 8px 30px rgba(34, 197, 94, 0.4);
}

.btn-login::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  
  transition: left 0.5s;
}

.btn-login:hover::before {
  left: 100%;
}

.btn-login:hover {
  background: linear-gradient(145deg, #65d9ab, #64daab);
  color: white;
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 15px 40px rgba(34, 197, 94, 0.6);
  border-color: #16a34a;
}

.btn-login:active {
  transform: translateY(-2px) scale(1.01);
}

/* Glowing effect */
.btn-signup:hover,
.btn-login:hover {
  animation: glow 2s infinite alternate;
}

@keyframes glow {
  from {
    filter: drop-shadow(0 0 5px currentColor);
  }
  to {
    filter: drop-shadow(0 0 20px currentColor);
  }
}
    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 10px;
    }

    .hamburger div {
      width: 28px;
      height: 3px;
      background-color: white;
      border-radius: 3px;
      transition: all 0.3s ease;
    }

    .hamburger.active div:nth-child(1) {
      transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active div:nth-child(2) {
      opacity: 0;
    }

    .hamburger.active div:nth-child(3) {
      transform: rotate(-45deg) translate(6px, -6px);
    }

    @media (max-width: 768px) {
      header {
        padding: 15px 20px;
      }

      .navbar {
      
        align-items: flex-start;
      }

      .hamburger {
        display: flex;
        margin-left: auto;
      }

      nav,
      .buttons {
        display: none;
        width: 100%;
        margin-top: 15px;
        flex-direction: column;
        background-color: #fff;
        border-radius: 8px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        padding: 15px;
        gap: 10px;
      }

      nav.active,
      .buttons.active {
        display: flex;
      }

      nav .nav-item {
        width: 100%;
      }

      nav .nav-item > a {
        background-color: #fff3f3;
        color: #ff6b6b;
        padding: 12px;
        border-radius: 6px;
        width: 100%;
      }

      nav .nav-item > a::after {
        content: " ▸";
        float: right;
      }

      nav .nav-item .dropdown {
        position: static;
        transform: none;
        opacity: 1;
        background-color: #f8f9fa;
        margin-top: 6px;
        display: none;
        border-radius: 6px;
        padding-left: 10px;
      }

      nav .nav-item.open .dropdown {
        display: flex;
      }

      .dropdown a {
        padding: 10px 14px;
        font-size: 14px;
        color: #ff6b6b;
      }

      .dropdown a:hover {
        background-color: #ffecec;
        color: #e94d4d;
      }
         .buttons {
      display: none;
      width: 100%;
      flex-direction: column;
      gap: 10px;
      background: #ffffff;
      border-radius: 8px;
      padding: 15px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .buttons.active {
      display: flex;
    }

    
  }
    

    @media (max-width: 480px) {
      .brand-name {
        font-size: 20px;
      }

      .brand img {
        height: 28px;
      }

    
    }

   
    
        body {
            background: #fff;
            color: #333;
            line-height: 1.6;
           
        }

        .container {
            max-width: 1300px;
            margin: 0 auto;
            padding: 20px;
        }

        .header-section {
            text-align: center;
            padding: 40px 20px;
            background: linear-gradient(135deg, #fb746e, #fd8b81);
            border-radius: 15px;
            margin-bottom: 30px;
            color: #fff;
        }

        .header-section h1 {
            font-size: 2.5em;
            margin-bottom: 10px;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
            color: #fdf4f4;
        }

        .header-section p {
            color: #fff;
        }

        section {
            background: #f9f9f9;
            padding: 30px;
            border-radius: 10px;
            margin-bottom: 30px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        }

         section h2 {
            color: #fb746e;
            font-size: 2em;
            margin-bottom: 20px;
            border-bottom: 2px solid #fd8b81;
            text-align: center;
            width: 100%;
            margin-left: auto;
            margin-right: auto;
        }

          section h3 {
            color: #fb746e;
            font-size: 1.8em;
            margin-bottom: 20px;
          
            text-align: center;
            width: 100%;
            margin-left: auto;
            margin-right: auto;

        }


         section h4 {
            color: #111111;
            font-size: 1.4em;
            margin-bottom: 30px;
           
            text-align: center;
            width: 100%;
            margin-left: auto;
            margin-right: auto;

        }

        section p {
            font-size: 17px;
            margin-bottom: 15px;
            color: #333;
        }

        .gift-code {
            background: #fb746e;
            padding: 15px;
            border-radius: 8px;
            text-align: center;
            font-size: 1.2em;
            font-weight: bold;
            margin: 20px 0;
            color: #fff;
        }

         .download-btn {
            display: inline-block;
            background: #ffebee;
            color: #d32f2f; 
            padding: 15px 30px;
            text-decoration: none;
            border: 2px solid #d32f2f; 
            border-radius: 25px;
            font-size: 1.2em;
            margin: 20px 0;
            transition: background 0.3s ease, transform 0.2s ease, color 0.3s ease;
        }

        .download-btn:hover {
            background: #f8bbd0; 
            color: #b71c1c; 
            transform: scale(1.05);
        }


        table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
            background: #fff;
        }

        th, td {
            padding: 15px;
            text-align: left;
            border-bottom: 1px solid #fd8b81;
        }

        th {
            background: #fb746e;
            color: #fff;
            font-weight: bold;
        }

        td {
            color: #333;
        }

        ul {
            list-style: none;
            padding-left: 20px;
        }

        ul li {
            margin-bottom: 10px;
            position: relative;
            padding-left: 25px;
            color: #333;
            font-size: 17px;
        }

        ul li::before {
            content: '✔';
            position: absolute;
            left: 0;
            color: #fd8b81;
        }

        @media (max-width: 768px) {
            .header-section h1 {
                font-size: 2em;
            }

            section {
                padding: 20px;
            }

            .download-btn {
                padding: 10px 20px;
                font-size: 1em;
            }

            table, th, td {
                font-size: 0.9em;
            }
             .gift-code {
            background: #fb746e;
            padding: 15px;
            border-radius: 8px;
            text-align: center;
            font-size: 0.9em;
            font-weight: bold;
            margin: 20px 0;
            color: #fff;
        }
        }
        

          .image-container {
      margin: 15px 0 30px;
      text-align: center;
    }

    .image-container img {
      max-width: 300px;
      height: auto;
      border-radius: 8px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    }

    .download-wrapper {
  text-align: center;
  margin: 30px 0;
}


.pakgame-download-btn {
  display: inline-block;
  padding: 16px 35px;
  background: linear-gradient(145deg, #1E7A9B 100%);
  color: white;
  font-weight: 700;
  font-size: 18px;
  border: none;
  border-radius: 50px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(30, 64, 175, 0.4);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
}

.pakgame-download-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s;
}

.pakgame-download-btn:hover::before {
  left: 100%;
}

.pakgame-download-btn:hover {
  background: linear-gradient(145deg, #1E7A9B 0%, #2563eb 100%);
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 15px 35px rgba(30, 64, 175, 0.6);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.pakgame-download-btn:active {
  transform: translateY(-2px) scale(1.01);
}


.pakgame-download-btn {
  display: inline-block;
  padding: 16px 35px;
  background: linear-gradient(145deg, #1E7A9B 100%);
  color: white;
  font-weight: 700;
  font-size: 18px;
  border: none;
  border-radius: 50px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(30, 64, 175, 0.4);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
  text-align: center;
}

.pakgame-download-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s;
}

.pakgame-download-btn:hover::before {
  left: 100%;
}

.pakgame-download-btn:hover {
  background: linear-gradient(145deg, #1E7A9B 0%, #2563eb 100%);
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 15px 35px rgba(30, 64, 175, 0.6);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.pakgame-download-btn:active {
  transform: translateY(-2px) scale(1.01);
}

/* ✅ Mobile Responsive */
/* Tablet & Mobile */
@media (max-width: 768px) {
  .pakgame-download-btn {
    display: block;
    width: 80%;          
    max-width: 300px;   
    margin: 0 auto;      
    padding: 14px 20px;
    font-size: 16px;
    border-radius: 40px;
    box-shadow: 0 6px 18px rgba(30, 64, 175, 0.4);
  }
}

/* Small phones */
@media (max-width: 480px) {
  .pakgame-download-btn {
    width: 90%;         /* chhote screens me thoda aur responsive */
    max-width: 260px;
    padding: 12px 18px;
    font-size: 15px;
    border-radius: 35px;
  }
}




/* Glowing effect */
.btn-signup:hover,
.btn-login:hover,
.pakgame-download-btn:hover {
  animation: glow 2s infinite alternate;
}

@keyframes glow {
  from {
    filter: drop-shadow(0 0 5px currentColor);
  }
  to {
    filter: drop-shadow(0 0 20px currentColor);
  }
}


     .faq-container {
      max-width: 1200px;
      margin: auto;
      background: #ffffff;
      border-radius: 12px;
      box-shadow: 0 4px 20px rgba(0,0,0,0.08);
      overflow: hidden;
    }

    .faq-header {
      background: linear-gradient(90deg, #fb746e, #fd8b81);
      padding: 20px;
      text-align: center;
      color: white;
      font-size: 28px;
      font-weight: bold;
    }

    .faq-item {
      border-bottom: 1px solid #eee;
    }

    .faq-question {
      background: #fff;
      padding: 18px 20px;
      cursor: pointer;
      position: relative;
      font-size: 18px;
      font-weight: 600;
      transition: background 0.3s ease;
    }

    .faq-question:hover {
      background: #fff0ed;
    }

    .faq-question::after {
      content: "+";
      position: absolute;
      right: 20px;
      font-size: 22px;
      color: #fb746e;
      transition: transform 0.3s ease;
    }

    .faq-question.active::after {
      content: "-";
      transform: rotate(180deg);
    }

    .faq-answer {
      padding: 0 20px 20px 20px;
      display: none;
      font-size: 16px;
      line-height: 1.6;
      color: #444;
      background: #fff8f6;
    }

    @media (max-width: 768px) {
      .faq-header {
        font-size: 22px;
      }
      .faq-question {
        font-size: 16px;
      }
    }


    /* FOOTER CSS */
   .custom-footer {
    background: linear-gradient(to right, #fa6a66, #fe9388);
    text-align: center;
    padding: 20px 10px;
    color: white;
    font-family: 'Poppins', sans-serif;
    margin-top: 30px;
  }

  .footer-links {
    margin-bottom: 10px;

    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
  }

  .footer-links a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
  }

  .footer-copy {
    font-size: 14px;
  }

  .brands {
    color: yellow;
    font-weight: 600;
  }

  @media (max-width: 600px) {
    .footer-links {
      flex-direction: column;
      gap: 8px;
    }
  }


/* about */

      .page-wrapper {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }

        .header-banner {
            text-align: center;
            padding: 40px 20px;
            background: linear-gradient(135deg, #fb746e, #fd8b81);
            border-radius: 15px;
            margin-bottom: 30px;
            color: #fff;
        }

        .header-banner h1 {
            font-size: 2.5em;
            margin-bottom: 10px;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
        }

        .content-block {
            background: #f9f9f9;
            padding: 30px;
            border-radius: 10px;
            margin-bottom: 30px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        }

        h2 {
            color: #fb746e;
            font-size: 1.8em;
            margin-bottom: 20px;
            border-bottom: 2px solid #fd8b81;
            text-align: center;
            width: 100%;
            margin-left: auto;
            margin-right: auto;
        }

        p {
            font-size: 1.1em;
            margin-bottom: 15px;
            color: #333;
        }

        ul {
            list-style: none;
            padding-left: 20px;
        }

        ul li {
            margin-bottom: 10px;
            position: relative;
            padding-left: 25px;
            color: #333;
        }

        ul li::before {
            content: '✔';
            position: absolute;
            left: 0;
            color: #fd8b81;
        }

        @media (max-width: 768px) {
            .header-banner h1 {
                font-size: 2em;
            }

            .content-block {
                padding: 20px;
            }
        }

        
        /* TOC box */
    .toc {
  background: #fd9287; 
  color: #fff;
  max-width: 450px;
  margin: 20px auto; /* centers automatically */
  padding: 10px 15px;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
}

.toc h2 {
  font-size: 24px;
  margin: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
}

.toc h2 span {
  font-weight: bold;
  transition: transform 0.3s ease;
}

.toc ul {
  list-style: none;
  padding-left: 20px;
  margin-top: 10px;
  display: none; /* hidden by default */
}

.toc ul li {
  margin: 6px 0;
  font-size: 18px;
}

.toc ul li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

.toc ul li a:hover {
  text-decoration: underline;
}

/* ✅ Mobile responsive styles */
@media (max-width: 768px) {
  .toc {
    max-width: 100%;
    margin: 15px;
    padding: 12px;
  }

  .toc h2 {
    font-size: 20px;
  }

  .toc ul li {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .toc {
    margin: 10px;
    padding: 10px;
  }

  .toc h2 {
    font-size: 18px;
  }

  .toc ul li {
    font-size: 14px;
  }
}
