 * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Segoe UI', sans-serif;
    }

    body {
     
      color: #000;
      line-height: 1.8;
    }

    header {
      background-color: #2831ff;
      padding: 12px 20px;
    }

    .header-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    /* Left part */
    .header-left {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .header-left img {
      height: 40px;
    }

    /* Navigation (desktop) */
    nav {
      flex-grow: 1;
      display: flex;
      justify-content: center;
    }

    nav ul {
      list-style: none;
      display: flex;
      gap: 30px;
      align-items: center;
    }

    nav ul li {
      position: relative;
    }

    nav ul li a {
      color: white;
      text-decoration: none;
      font-weight: 500;
      font-size: 16px;
      cursor: pointer;
    }

    /* Dropdown */
    .dropdown-content {
      display: none;
      position: absolute;
      background: white;
      min-width: 160px;
      top: 40px;
      left: 0;
      box-shadow: 0 4px 8px rgba(0,0,0,0.2);
      z-index: 10;
    }

    .dropdown-content a {
      display: block;
      padding: 10px 15px;
      color: black;
      text-decoration: none;
    }

    .dropdown.open .dropdown-content {
      display: block;
    }

    /* Download button */
    .header-btn {
      background: #f44336;
      color: white;
      padding: 10px 18px;
      border: none;
      border-radius: 5px;
      font-weight: bold;
      text-decoration: none;
    }

    /* Toggle button */
    .menu-toggle {
      display: none;
      flex-direction: column;
      cursor: pointer;
      gap: 5px;
      z-index: 1001;
    }

    .menu-toggle span {
      background: white;
      height: 3px;
      width: 25px;
    }

    /* Banner */
    .banner {
      background: linear-gradient(to bottom right, #c5f0f0, #b8d6f3);
      color: #1a237e;
      text-align: center;
      padding: 80px 20px 60px;
    }

    .banner h1 {
      font-size: 52px;
      margin-bottom: 20px;
    }

    .banner p {
      max-width: 1000px;
      margin: auto;
      font-size: 18px;
      font-weight: 500;
      line-height: 1.6;
      color: #333;
    }

    .buttons {
      display: flex;
      justify-content: center;
      gap: 20px;
      margin-top: 30px;
      flex-wrap: wrap;
    }

    .buttons a {
      padding: 12px 25px;
      font-weight: bold;
      border-radius: 5px;
      text-decoration: none;
      transition: 0.3s;
    }

    .register-btn {
      background: #00ffc3;
      border: 2px solid black;
      color: black;
    }

    .login-btn {
      background: #ffc107;
      color: black;
    }

    .download-btn {
      background: #f44336;
      color: white;
    }

    .register-btn:hover { background: #00e6b0; }
    .login-btn:hover { background: #ffb300; }
    .download-btn:hover { background: #d32f2f; }

    /* Mobile Sidebar Menu */
    @media (max-width: 768px) {
      nav {
        position: fixed;
        top: 0;
        left: -100%;
        height: 100vh;
        width: 250px;
        background: linear-gradient(to bottom, #1a237e, #2831ff);
        transition: left 0.3s ease-in-out;
        padding-top: 60px;
        z-index: 1000;
        display: block;
      }

      nav.active {
        left: 0;
      }

      nav ul {
        flex-direction: column;
        gap: 0;
        padding: 0;
      }

      

      nav ul li a {
        display: block;
        padding: 15px 20px;
        color: white;
        font-size: 16px;
        font-weight: 500;
      }

      nav ul li a:hover {
        background: rgba(255,255,255,0.1);
      }

      

      nav ul li.download-mobile a {
        background: #f44336;
        margin: 15px 20px;
        border-radius: 5px;
        display: block;
        text-align: center;
      }

      .header-btn {
        display: none; /* hide top download on mobile */
      }

      .menu-toggle {
        display: flex;
        margin-left: auto;
      }

      /* Close button inside nav */
        nav.active .close-btn {
    display: block;
  }

  
    }

    /* Close button style */
.close-btn {
  font-size: 30px;
  color: white;
  cursor: pointer;
  display: none;
  padding: 10px 20px;
  position: absolute;
  right: 15px;
  top: 10px;
  z-index: 1100;
}


.gift-heading {
  text-align: center;
  font-family: Arial, sans-serif;
  color: #0077cc;
  margin-bottom: 5px;
  margin-top: 40px;
  font-size: 30px;
  font-weight: bold;
}

.gift-code-text {
  text-align: center;
  font-size: 18px;
  font-family: Arial, sans-serif;
  color: #003366;
  margin-bottom: 20px;
}

.custom-table {
  width: 100%;
  max-width: 800px;
  margin: 30px auto;
  border-collapse: collapse;
  font-family: Arial, sans-serif;
  text-align: left;
  
  table-layout: auto;
  display: table;          /* Ensures table layout stays intact */
}

.custom-table th,
.custom-table td {
  padding: 10px 20px;
  color: #003366;
  font-size: 17px;
  border-bottom: 1px solid #0077cc;
  word-wrap: break-word;
}

.header-main th {
  background-color: #0077cc;
  color: white;
  font-size: 18px;
  text-align: center;
}

.custom-table tr:nth-child(even) td {
  background-color: #e6f2ff;
}

.custom-table tr:nth-child(odd) td {
  background-color: #f9fcff;
}

.title {
  font-weight: bold;
  width: 35%;
}

/* For small screens, make table horizontally scrollable instead of stacking */
@media (max-width: 600px) {
  .custom-table {
    width: 100%;
    align-items: center;
    display: block;
    overflow-x: auto;
    white-space: nowrap;
    padding: 30px;
  }
  .custom-table th, 
  .custom-table td {
    font-size: 15px;
    padding: 8px 12px;
  }
}


.main-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.sikkim-img {
  display: block;
  margin: 20px auto;
  max-width: 100%;   /* Makes it shrink to fit smaller screens */
  width: 300px;      /* Keeps an upper limit on large screens */
  height: auto;
  border-radius: 8px;
}

/* Optional: add specific tweaks for very small screens */
@media (max-width: 480px) {
  .sikkim-img {
    width: 90%;       /* Slight padding on tiny screens */
    margin: 10px auto;
  }
}


.section-main {
  background: linear-gradient(to bottom right, rgba(30, 64, 175, 0.9), rgba(96, 165, 250, 0.9));
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2.5rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(12px);
  color: #f8fafc;
  border: 1px solid rgba(255, 255, 255, 0.2);
 
}

.section-main:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}

.section-main h2 {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  color: #fde047;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
  position: relative;
}


.section-main h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  color: #fde047;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
  position: relative;
}

.section-main p{
    font-size: 18px;
}

.section-main h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: #fde047;
  border-radius: 2px;
  margin-top: 8px;
}

.section-main ul {
  list-style-type: disc;
  padding-left: 1.8rem;
}

.section-main li {
  margin-bottom: 0.6rem;
  font-size: 1.1rem;
 
}



.main-btn {
  display: inline-block;
  margin: 15px auto;
  padding: 12px 25px;
  font-size: 16px;
  font-weight: bold;
  color: #ffffff;
  background: #cc1f00e7;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  text-align: center;
  transition: background 0.3s ease, transform 0.2s ease;
}

.main-btn:hover {
  background: #005fa3;
  transform: translateY(-2px);
}

.main-btn:active {
  transform: translateY(0px);
}

.main-btn {
  display: block;   /* ensures centering inside containers */
  max-width: 250px; /* limits size on large screens */
  width: 100%;      /* makes responsive on mobile */
}


/* Mobile Styling */
@media (max-width: 640px) {
  .section h2 {
    font-size: 1.75rem;
    text-align: center;
  }

  .container {
    padding: 1.2rem;
  }

  .btn {
    display: block;
    width: 100%;
    text-align: center;
  }
}

    .game-section {
      max-width: 1100px;
      margin: auto;
    }

    .game-section h2 {
      font-size: 2rem;
      color: #1e3a8a;
      margin-bottom: 1.5rem;
    }

    .game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 1rem;
    }

    .game-card {
      background-color: #fff;
      border: 2px solid #1e3a8a; /* blue border */
      border-radius: 12px;
      padding: 0.5rem;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    }

    .game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    }

    .game-card img {
      width: 100%;
      border-radius: 10px;
    }

    .game-card-title {
      font-weight: bold;
      margin-top: 0.5rem;
      font-size: 1rem;
      color: #1e3a8a;
    }

    @media (max-width: 600px) {
      .game-section h2 {
        text-align: center;
        font-size: 1.5rem;
      }
    }
     

    .faq-container {
      max-width: 1200px;
      margin: 0 auto;
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 6px 20px rgba(0,0,0,0.1);
      padding: 30px;
    }

    .faq-container h2 {
      text-align: center;
      color: #2831ff;
      margin-bottom: 30px;
      font-size: 28px;
    }

    .faq-item {
      border-bottom: 1px solid #ddd;
      padding: 10px 0;
    }

    .faq-question {
      background-color: #e8e9ff;
      cursor: pointer;
      padding: 18px 20px;
      margin: 0;
      font-size: 18px;
      font-weight: bold;
      border-radius: 8px;
      transition: background 0.3s;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .faq-question:hover {
      background-color: #d0d3ff;
    }

    .faq-question::after {
      content: '+';
      font-size: 22px;
      font-weight: bold;
      transition: transform 0.3s;
    }

    .faq-question.active::after {
      content: '-';
      transform: rotate(180deg);
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease, padding 0.3s ease;
      padding: 0 20px;
      font-size: 16px;
      line-height: 1.6;
    }

    .faq-answer.open {
      padding: 15px 20px;
    }

    .faq-answer p {
      margin-bottom: 30px;
      margin-top: 10px;
    }

 .simple-footer {
  background-color: #2831ff; /* Deep Blue background */
  padding: 20px 10px;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  color: white;
}

.footer-links {
  margin-bottom: 10px;
}

.footer-links a {
  color: #ffffff;
  margin: 0 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
}

.footer-links a:hover {
  text-decoration: underline;
  color: #e0f80a; /* Yellow hover */
}

.footer-copy {
  font-size: 14px;
  color: #ffffff;
}

.footer-copy a {
  color: #e0f80a; /* Yellow link */
  text-decoration: none;
}

.footer-copy a:hover {
  text-decoration: underline;
  color: #ffffff;
}

/* Responsive */
@media (max-width: 600px) {
  .footer-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .footer-links a {
    margin: 0;
  }
}

/* Heading Styles */ 
.heading { font-size: 32px; font-weight: bold; text-align: center; color: #facc15; /* Tailwind's yellow-400 */ margin-bottom: 1.5rem; }


/* about */
 .container {
  background: linear-gradient(to bottom, #1e40af, #60a5fa);
  max-width: 1200px;
  margin: 30px auto;
  padding: 30px 20px;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
}

/* Each section block */
.section {
  background-color: #dee8f3;
  padding: 20px 25px;
  margin-bottom: 20px;
  border-radius: 8px;
  border: 1px solid #d6e6f5;
}
    .section h2 {
      font-size: 2rem;
      font-weight: bold;
      margin-bottom: 1rem;
      color: #0e0d0d;
    }

    .section h3 {
      font-size: 1.6rem;
      font-weight: bold;
      margin-bottom: 1rem;
      color: #0e0d0d;
    }

    .section p {
      margin-bottom: 1rem;
      font-size: 17px;
      line-height: 1.6;
      font-weight: 400;
    }
    .btn {
      background: #facc15;
      color: #1e40af;
      padding: 0.5rem 1rem;
      border-radius: 5px;
      font-weight: bold;
      transition: background 0.3s;
      display: inline-block;
    }
    .btn:hover {
      background: #eab308;
    }
    
    @media (max-width: 640px) {
      .section h2 {
        font-size: 1.5rem;
      }
      .container {
        padding: 1rem;
      }
    }

    .section ul {
      list-style-type: disc;
      padding-left: 1.5rem;
      margin-bottom: 1rem;
      font-weight: 400;
    }
    .section li {
      margin-bottom: 0.5rem;
      font-weight: 400;
    }
   
    @media (max-width: 640px) {
      .section h2 {
        font-size: 1.5rem;
      }
      .container {
        padding: 1rem;
      }
    }