   * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: linear-gradient(135deg, #f2f3f8, #e8ecef);
  font-family: 'Poppins', sans-serif;
  color: #0f0f0f;
  line-height: 1.6;
}

.main-header {
   position: sticky;
   top: 0;
   z-index: 999;
   background-color: #ffffff; /* White background for main header */
   box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05); /* Subtle shadow for depth */
}

.bottom-header {
   background: #ffffff; /* Changed to white background */
   padding: 10px 20px; /* Consistent padding for better spacing */
   display: flex;
   justify-content: space-between;
   align-items: center;
   color: #333; /* Dark text color for contrast on white background */
   position: sticky;
   top: 0;
   z-index: 1000;
   box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05); /* Added subtle shadow for consistency */
}

.bottom-header-logo img {
   height: 70px;
   width: auto;
}

.bottom-header-nav {
   display: flex;
   align-items: center;
   gap: 25px; /* Increased gap for better spacing */
}

.bottom-header-nav a {
   color: #ee504b; /* Matches the gradient theme for nav links */
   text-decoration: none;
   font-weight: 500;
   font-size: 16px;
   transition: color 0.3s ease; /* Smooth transition for hover effect */
}

.bottom-header-nav a:hover {
   color: #65d9ab; /* Hover color matches button gradient for consistency */
}

.bottom-header-nav a.bottom-header-button {
   padding: 10px 25px;
   border-radius: 8px;
   background: linear-gradient(135deg, #65d9ab, #4cbf94);
   color: #fff;
   font-weight: 600;
   font-size: 16px;
   text-decoration: none;
   display: inline-block;
   transition: all 0.3s ease;
   box-shadow: 0 4px 10px rgba(101, 217, 171, 0.3);
}

.bottom-header-nav a.bottom-header-button:hover {
   background: linear-gradient(135deg, #4cbf94, #38a77f);
   transform: translateY(-2px);
   box-shadow: 0 6px 15px rgba(101, 217, 171, 0.4);
}

.bottom-header-nav a.bottom-header-download {
   padding: 10px 25px;
   border-radius: 8px;
   background: linear-gradient(135deg, #0984e3, #076dc2);
   color: #fff;
   font-weight: 600;
   font-size: 16px;
   text-decoration: none;
   display: inline-block;
   transition: all 0.3s ease;
   box-shadow: 0 4px 10px rgba(9, 132, 227, 0.3);
}

.bottom-header-nav a.bottom-header-download:hover {
   background: linear-gradient(135deg, #076dc2, #055aa3);
   transform: translateY(-2px);
   box-shadow: 0 6px 15px rgba(9, 132, 227, 0.4);
}

.bottom-header-dropdown {
   position: relative;
}

.bottom-header-dropdown-content {
   display: none;
   position: absolute;
   background-color: #ffffff; /* White background for dropdown to match header */
   top: 100%;
   left: 0;
   min-width: 270px;
   box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); /* Slightly stronger shadow */
   z-index: 999;
   border-radius: 8px; /* Rounded corners for a modern look */
}

.bottom-header-dropdown-content a {
   color: #333; /* Dark text for contrast */
   padding: 10px 15px;
   display: block;
   text-decoration: none;
   font-size: 15px;
   transition: background 0.3s ease, color 0.3s ease;
}

.bottom-header-dropdown-content a:hover {
   background-color: #f2656f; /* Matches the header gradient theme for hover */
   color: #ffffff; /* White text on hover for contrast */
}

.bottom-header-dropdown:hover .bottom-header-dropdown-content {
   display: block;
}

/* Mobile Styles */
.bottom-header-menu-toggle {
   display: none;
   flex-direction: column;
   cursor: pointer;
}

.bottom-header-bar {
   height: 3px;
   width: 25px;
   background-color: #ee504b; /* Changed to match nav link color */
   margin: 4px 0;
}

@media (max-width: 768px) {
   .bottom-header-nav {
      display: none;
      flex-direction: column;
      background: #ffffff; /* White background for mobile nav */
      position: absolute;
      top: 94px;
      right: 0;
      width: 100%;
      padding: 20px;
      text-align: center;
      transition: max-height 0.3s ease-in-out;
      max-height: 80vh;
      overflow-y: auto;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); /* Shadow for depth */
   }

   .bottom-header-nav.show {
      display: flex;
      animation: slideDown 0.3s ease forwards;
   }

   @keyframes slideDown {
      from { opacity: 0; transform: translateY(-10px); }
      to { opacity: 1; transform: translateY(0); }
   }

   .bottom-header-nav a {
      display: block;
      font-size: 15px;
      padding: 0px 0;
      font-weight: 500;
      border-radius: 5px;
      transition: background 0.3s ease;
      color: #ee504b; 
   }

   .bottom-header-nav a:hover {
      background: #fef5f5; /* Light background for hover to match theme */
      color: #65d9ab;
   }

   .bottom-header-menu-toggle {
      display: flex;
   }

   .bottom-header-dropdown-content {
      position: static;
      box-shadow: none;
      background-color: #f2f3f8; /* Slightly off-white to differentiate */
      border-radius: 5px;
      margin-top: 5px;
   }

   .bottom-header-dropdown-content a {
      color: #333;
      padding: 10px;
      font-size: 15px;
      text-align: center;
   }

   .bottom-header-button,
   .bottom-header-download {
      display: block;
      width: 150px;
      margin: 0px auto;
      text-align: center;
      font-size: 15px;
   }
}

/* Additional Mobile Responsive */
@media (max-width: 768px) {
   
   .bottom-header {
      flex-direction: row;
      justify-content: space-between;
   }

   .bottom-logo {
      height: 28px;
   }

   .menu-icon {
      width: 20px;
      height: 16px;
   }

   .menu-icon span {
      height: 2px;
   }
}

   /* Hero Section */
    .hero {
      background: linear-gradient(135deg, #ff6b6b, #ff8e53);
      color: #fff;
      text-align: center;
      padding: 80px 20px 60px;
      position: relative;
      overflow: hidden;
    }

    .hero::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: radial-gradient(circle, rgba(255,255,255,0.2), transparent);
      opacity: 0.3;
    }

    .hero h1 {
      font-size: 40px;
      margin-bottom: 20px;
      color: #fff;
      font-weight: 800;
      text-shadow: 0 2px 5px rgba(0,0,0,0.2);
      position: relative;
    }

    .hero p {
      max-width: 800px;
      margin: 0 auto 30px;
      font-size: 18px;
      line-height: 1.7;
      color: #f5f5f5;
      position: relative;
    }

    /* Buttons */
    .button-group {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin-top: 30px;
      margin-bottom: 50px;
      position: relative;
    }

    .button {
      padding: 14px 40px;
      border-radius: 50px;
      font-size: 16px;
      font-weight: 700;
      text-decoration: none;
      color: #fff;
      transition: all 0.3s ease;
      box-shadow: 0 4px 15px rgba(0,0,0,0.2);
      position: relative;
      overflow: hidden;
    }

    .button::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: 0.5s;
    }

    .button:hover::before {
      left: 100%;
    }

    .button-login {
      background: linear-gradient(135deg, #007bff, #00c4ff);
    }

    .button-register {
      background: linear-gradient(135deg, #ee504b, #ff6b6b);
    }

    .button-download {
      background: linear-gradient(135deg, #28a745, #65d9ab);
    }

    .button:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    }

    /* Gift Code */
    .gift-code {
      background: #fff;
      color: #333;
      border: 3px dashed #ee504b;
      padding: 30px;
      margin: 30px auto;
      max-width: 700px;
      border-radius: 15px;
      text-align: center;
      box-shadow: 0 8px 20px rgba(0,0,0,0.1);
      position: relative;
      overflow: hidden;
    }

    .gift-code::before {
      content: '🎁';
      position: absolute;
      top: 10px;
      right: 20px;
      font-size: 40px;
      opacity: 0.2;
    }

    .gift-code h2 {
      margin-bottom: 15px;
      color: #ee504b;
      font-size: 24px;
      font-weight: 700;
    }

    .gift-code p {
      font-size: 16px;
      margin-bottom: 15px;
    }

    .gift-code code {
      display: inline-block;
      margin-top: 10px;
      font-size: 18px;
      font-weight: bold;
      background: linear-gradient(135deg, #ee504b, #f2656f);
      color: #fff;
      padding: 10px 10px;
      border-radius: 8px;
      letter-spacing: 2px;
    }

    /* Table Section */
    .specs {
      padding: 50px 20px;
      max-width: 1000px;
      margin: auto;
    }

    .specs h2 {
      text-align: center;
      margin-bottom: 30px;
      color: #ee504b;
      font-size: 28px;
      font-weight: 700;
    }

    table {
      width: 100%;
      border-collapse: collapse;
      background: #fff;
      box-shadow: 0 8px 20px rgba(0,0,0,0.1);
      border-radius: 15px;
      overflow: hidden;
    }

    th, td {
      padding: 16px 20px;
      border-bottom: 1px solid #f1f1f1;
      text-align: left;
    }

    th {
      background: linear-gradient(135deg, #ee504b, #f2656f);
      color: #fff;
      font-size: 16px;
      font-weight: 600;
    }

    td {
      font-size: 15px;
    }

    tr:hover {
      background: #fef5f5;
      transition: background 0.3s ease;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .hero h1 {
        font-size: 32px;
      }

      .hero p {
        font-size: 16px;
      }

      .button {
        padding: 12px 30px;
        font-size: 14px;
      }

      .gift-code {
        padding: 15px;
        margin: 20px;
      }

      .gift-code h2 {
        font-size: 20px;
      }

      .gift-code code {
        font-size: 14px;
      }

      table, thead, tbody, th, td, tr {
        display: block;
      }

      th {
        display: none;
      }

      td {
        padding: 14px;
        border: none;
        border-bottom: 1px solid #eee;
        position: relative;
      }

      td::before {
        content: attr(data-label);
        font-weight: bold;
        color: #ee504b;
        display: block;
        margin-bottom: 8px;
      }
    }

   

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 20px;
  background: #ffffff;
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.container h2 {
  color: #ee504b;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 25px;
  text-align: center;
  position: relative;
  
  letter-spacing: 1px;
  background: linear-gradient(135deg, #ee504b, #f2656f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: transform 0.3s ease;
}

.container h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, #ee504b, #f2656f);
  border-radius: 2px;
}

.container h2:hover {
  transform: scale(1.05);
}

.container h3 {
  color: #f2656f;
  font-size: 24px;
  font-weight: 600;
  margin: 30px 0 15px;
  position: relative;
  padding-left: 15px;
  border-left: 4px solid #65d9ab;
  transition: color 0.3s ease, transform 0.3s ease;
}

.container h4 {
  color: #f2656f;
  font-size: 20px;
  font-weight: 600;
  margin: 30px 0 15px;
  position: relative;
  padding-left: 15px;
  border-left: 4px solid #65d9ab;
  transition: color 0.3s ease, transform 0.3s ease;
}


.container h3:hover {
  color: #ee504b;
  transform: translateX(5px);
}

.container p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #333;
  padding: 15px;

  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.container p:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.game-image {
  display: block;
  max-width: 280px;
  height: auto;
  margin: 25px auto;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.game-image:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  .container {
    padding: 25px 15px;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  }

   .container h2 {
    font-size: 23px;
    margin-bottom: 20px;
  }

   .container h3 {
    font-size: 20px;
    margin: 20px 0 10px;
  }

  .container p {
    font-size: 15px;
    padding: 10px;
  }

  .game-image {
    margin: 15px auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }

    ul {
        padding: 10px;
      }

      li {
        font-size: 15px;
        padding: 8px 12px;
      }

      

      .button {
       
        font-size: 15px;
      }
}


 ul {
      list-style: none;
      margin-bottom: 20px;
      padding: 15px;
      background: #f9f9f9;
      border-radius: 8px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    ul:hover {
      transform: translateY(-3px);
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    }

    li {
      font-size: 16px;
      line-height: 1.8;
      color: #333;
      padding: 10px 15px;
      position: relative;
      transition: background 0.3s ease, color 0.3s ease;
    }

    li::before {
      content: '•';
      position: absolute;
      left: 0;
      color: #ee504b;
      font-size: 20px;
      line-height: 1.8;
    }

    li:hover {
      background: #fef5f5;
      color: #ee504b;
    }

    /* Button container (jo div ya section hai usme ye class lagao) */
.button-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Button design */
.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(135deg, #ee504b, #f2656f);
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
  text-align: center;
  cursor: pointer;
}

/* Hover effect */
.btn:hover {
  background: linear-gradient(135deg, #f2656f, #65d9ab);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Shine effect */
.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: 0.5s;
}

.btn:hover::before {
  left: 100%;
}
 blockquote {
      margin: 1rem 0;
      padding-left: 1rem;
      border-left: 3px solid #ccc;
      font-style: italic;
    }



     .faq-section {
      max-width: 1200px;
      margin: 40px auto;
      padding: 20px;
      background: #ffffff;
      border-radius: 15px;
      box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
      animation: fadeIn 1s ease-in-out;
    }

    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .faq-section h2 {
      color: #ee504b;
      font-size: 32px;
      font-weight: 700;
      text-align: center;
      margin-bottom: 30px;
      text-transform: uppercase;
      letter-spacing: 1px;
      background: linear-gradient(135deg, #ee504b, #f2656f);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      position: relative;
    }

    .faq-section h2::after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background: linear-gradient(135deg, #ee504b, #f2656f);
      border-radius: 2px;
    }

    .faq-item {
      margin-bottom: 15px;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
      transition: box-shadow 0.3s ease;
    }

    .faq-item:hover {
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    }

    .faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      background: linear-gradient(135deg, #f9f9f9, #f2f3f8);
      cursor: pointer;
      font-size: 18px;
      font-weight: 600;
      color: #333;
      transition: background 0.3s ease, color 0.3s ease;
    }

    .faq-question:hover {
      background: linear-gradient(135deg, #ee504b, #f2656f);
      color: #fff;
    }

    .faq-question::after {
      content: '\25BC'; /* Down arrow */
      font-size: 14px;
      transition: transform 0.3s ease;
    }

    .faq-item.active .faq-question::after {
      transform: rotate(180deg);
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      background: #fff;
      padding: 0 20px;
      font-size: 16px;
      line-height: 1.7;
      color: #333;
      transition: max-height 0.3s ease, padding 0.3s ease;
    }

    .faq-item.active .faq-answer {
      max-height: 200px; /* Adjust based on content */
      padding: 15px 20px;
    }

    .faq-answer p {
      margin: 0;
    }

    @media (max-width: 768px) {
      .faq-section {
        margin: 20px;
        padding: 15px;
        border-radius: 10px;
      }

      .faq-section h2 {
        font-size: 26px;
        margin-bottom: 20px;
      }

      .faq-question {
        font-size: 16px;
        padding: 12px 15px;
      }

      .faq-answer {
        font-size: 15px;
      }

      .faq-item.active .faq-answer {
        max-height: 300px; /* Increased for mobile to accommodate content */
        padding: 12px 15px;
      }
    }


     footer {
   background-color:  #ee504b;
   margin-top: 10px;
   padding: 40px 20px 20px;
   text-align: center;
   border-top: 1px solid #333;
   
 }

 .footer-links {
   display: flex;
   flex-wrap: wrap;
   justify-content: center;
   gap: 30px;
   margin-bottom: 20px;
 }

 .footer-links a {
   color: #d3d3d3;
   text-decoration: none;
   font-weight: 700;
   font-size: 14px;
 }

 .footer-copy {
   color: #aaa;
   font-size: 14px;
 }

/* ess page */
 .about-container {
      max-width: 1200px;
      margin: 50px auto;
      padding: 40px 30px;
      background: #fff;
      border-radius: 20px;
      box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
      animation: fadeIn 1.2s ease-in-out;
    }

    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(30px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .header-about {
      background: linear-gradient(135deg, #ee504b, #f2656f);
      padding: 30px 20px;
      border-radius: 15px 15px 0 0;
      text-align: center;
      margin-bottom: 30px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

    .header-about h1 {
      font-size: 38px;
      font-weight: 700;
      color: #fff;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      position: relative;
      transition: transform 0.3s ease;
    }

    .header-about h1:hover {
      transform: scale(1.05);
    }

    .section h2 {
      font-size: 28px;
      font-weight: 600;
      color: #ee504b;
      margin: 40px 0 20px;
      position: relative;
      padding-left: 15px;
      border-left: 4px solid #65d9ab;
      transition: color 0.3s ease, transform 0.3s ease;
    }

    .section h2:hover {
      color: #0984e3;
      transform: translateX(5px);
    }

    .section p {
      margin-bottom: 20px;
      color: #444;
      text-align: justify;
      padding: 15px;
      background: #f9f9f9;
      border-radius: 10px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .section p:hover {
      transform: translateY(-3px);
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    }

    .section ul, ol {
      margin-bottom: 20px;
      padding-left: 30px;
      background: #f9f9f9;
      border-radius: 10px;
      padding: 15px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .section ul:hover, ol:hover {
      transform: translateY(-3px);
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    }

    .section li {
      margin-bottom: 15px;
      position: relative;
      padding-left: 15px;
      font-size: 16px;
      color: #333;
      transition: transform 0.3s ease, color 0.3s ease;
    }

   

    .section li:hover {
      transform: translateX(5px);
      color: #ee504b;
    }

    .section ol li::before {
      content: none; /* Remove bullet for ordered lists */
    }

    .section {
      margin-bottom: 40px;
      padding: 20px;
      background: #fff;
      border-radius: 15px;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .section:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    }

    .section a {
      color: #0984e3;
      text-decoration: none;
      font-weight: 600;
      position: relative;
      transition: color 0.3s ease;
    }

    .section a::after {
      content: '';
      position: absolute;
      width: 0;
      height: 2px;
      bottom: -2px;
      left: 0;
      background: #65d9ab;
      transition: width 0.3s ease;
    }

    .section a:hover {
      color: #65d9ab;
    }

    .section a:hover::after {
      width: 100%;
    }

    @media (max-width: 768px) {
      .about-container {
        padding: 20px 15px;
        margin: 20px;
      }

      header {
        padding: 20px 15px;
      }

      h1 {
        font-size: 28px;
      }

      .section h2 {
        font-size: 24px;
        margin: 30px 0 15px;
      }

      .section p, li {
        font-size: 15px;
      }

      .section .section {
        padding: 15px;
      }

     .section  ul, ol {
        padding: 10px;
      }
    }