 * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      background-color: #071022;
      font-family: "Poppins", sans-serif;
      color: #fff;
      overflow-x: hidden;
    }

    /* ===== HEADER (Desktop) ===== */
    header {
      width: 100%;
      background: linear-gradient(90deg, #050510, #0b0b20);
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 12px 50px;
      position: relative;
      z-index: 10;
    }

    .logo img {
      height: 50px;
    }

    .right-section {
      display: flex;
      align-items: center;
      gap: 25px;
    }

    nav ul {
      list-style: none;
      display: flex;
      gap: 35px;
    }

    nav ul li a {
      text-decoration: none;
      color: #cfcfcf;
      font-size: 22px;
      transition: color 0.3s ease;
    }

    nav ul li a:hover {
      color: #fff;
    }

    .games-btn {
      background: linear-gradient(90deg, #5440ff, #8b5cff);
      color: #fff;
      border: none;
      padding: 8px 16px;
      border-radius: 30px;
      font-size: 18px;
      cursor: pointer;
      transition: opacity 0.3s;
    }

    .games-btn:hover {
      opacity: 0.85;
    }

    /* ===== LANGUAGE SELECTOR ===== */
    .lang-selector {
      position: relative;
      display: flex;
      align-items: center;
      background: #181820;
      border-radius: 30px;
      padding: 6px 12px;
      cursor: pointer;
      font-size: 16px;
      gap: 6px;
    }

    .lang-selector img {
      width: 18px;
      height: 18px;
      border-radius: 50%;
    }

    .lang-selector span {
      color: #ddd;
    }

    .lang-options {
      display: none;
      position: absolute;
      top: 38px;
      right: 0;
      background: #181820;
      border-radius: 10px;
      overflow: hidden;
      min-width: 80px;
      z-index: 10;
    }

    .lang-options div {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 8px 10px;
      cursor: pointer;
      font-size: 13px;
      color: #ccc;
    }

    .lang-options div:hover {
      background: #2b2b40;
      color: #fff;
    }

    .lang-options img {
      width: 18px;
      height: 18px;
      border-radius: 50%;
    }

    /* ===== MOBILE HEADER ===== */
    .mobile-header {
      display: none;
      width: 100%;
      background: linear-gradient(90deg, #050510, #0b0b20);
      padding: 12px 20px;
      align-items: center;
      justify-content: space-between;
      position: relative;
      z-index: 15;
    }

    .menu-icon {
      font-size: 26px;
      cursor: pointer;
    }

    .mobile-logo img {
      height: 35px;
    }

    .mobile-icon img {
      width: 32px;
      height: 32px;
      background: linear-gradient(90deg, #5440ff, #8b5cff);
      border-radius: 50%;
      padding: 6px;
    }

    /* ===== MOBILE MENU ===== */
    .mobile-menu {
      display: none;
      flex-direction: column;
      gap: 16px;
      background: #0b0b20;
      padding: 20px;
      z-index: 1000;
    }

    .mobile-menu a {
      text-decoration: none;
      color: #ccc;
      font-size: 15px;
      transition: color 0.3s;
    }

    .mobile-menu a:hover {
      color: #fff;
    }

    .mobile-menu .lang-selector {
      width: fit-content;
    }

    /* ===== VIDEO SECTION ===== */
    .video-section {
      position: relative;
      width: 100%;
      overflow: hidden;
      background: linear-gradient(90deg, #050510, #0b0b20);
    }

    .video-section video {
      width: 100%;
      height: auto;
      object-fit: contain;
      display: block;
    }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 768px) {
      header {
        display: none;
      }

      .mobile-header {
        display: flex;
      }

      .video-section video {
        height: 240px;
        object-fit: contain;
      }
    }
    
    /* === Contact Section === */
.contact-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: -80px 20px;
  background: transparent;
  position: relative;
  z-index: 5;
}

/* Contact Box */
.contact-box {
  background: linear-gradient(145deg, #0a1635, #071022);
  padding: 40px;
  border-radius: 12px;
  width: 100%;
  max-width: 700px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.7), 0 0 25px rgba(79, 140, 255, 0.3);
  color: #fff;
  border: 1px solid rgba(79, 140, 255, 0.3);
  margin-bottom: 50px;
}

/* Heading & Sub */
.contact-box h2 {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 8px;
  color: #fff;
}

.contact-box p {
  text-align: center;
  font-size: 15px;
  color: #bbb;
  margin-bottom: 30px;
  justify-items: center;
}

/* Inputs & Select */
.form-group {
  display: flex;
  gap: 20px;
}

.form-group input,
.form-group select,
textarea {
display: block;
  width: 100%;
  padding: 12px;
  border: none;
  border-bottom: 1px solid #444; /* match input style */
  background: transparent;
  color: #fff;
  font-size: 14px;
  outline: none;
  resize: none;
  margin-bottom: 25px;
  border-radius: 0; /* remove rounded corners */
}

/* ✅ Force dropdown background transparent */
.form-group select {
  background: transparent;
  color: #fff;
}

/* Dropdown options (when opened) */
.form-group select option {
  background: #0a1635; /* fallback background */
  color: #fff;
}

/* Textarea */
textarea {
  width: 100%;
  min-height: 120px;
  border: 1px solid #444;
  border-radius: 8px;
  resize: none;
  margin-bottom: 25px;
  background: transparent;
  color: #fff;
}

/* Button */
.contact-box .btn {
  display: block;
  width: 100%;
  background: linear-gradient(90deg, #3949ab, #5c6bc0);
  color: #fff;
  padding: 14px;
  text-align: center;
  font-weight: bold;
  border-radius: 25px;
  border: none;
  cursor: pointer;
  transition: 0.3s ease;
  margin-bottom: 30px;
}

.contact-box .btn:hover {
  background: linear-gradient(90deg, #5c6bc0, #3949ab);
}

/* === Success Modal === */
.modal {
  display: none; /* default hidden */
  position: fixed;
  z-index: 9999;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
}
.modal-content {
  background: #0a1635;
  color: #fff;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  max-width: 400px;
  box-shadow: 0 0 20px rgba(79, 140, 255, 0.6);
  animation: popIn 0.3s ease;
}
    .modal-content img {
      width: 70px;
      margin-bottom: 20px;
    }
    .modal-content h3 {
      margin-bottom: 10px;
      font-size: 20px;
    }
    .modal-content p {
      font-size: 14px;
      margin-bottom: 20px;
      color: #ccc;
    }
    .modal-content button {
      padding: 20px 25px;
      border: none;
      background: linear-gradient(90deg, #3949ab, #5c6bc0);
      color: #fff;
      border-radius: 40px;
      cursor: pointer;
      font-weight: bold;
    }
    .modal-content button:hover {
      background: linear-gradient(90deg, #5c6bc0, #3949ab);
    }
    @keyframes popIn {
      from { transform: scale(0.8); opacity: 0; }
      to { transform: scale(1); opacity: 1; }
    }

    /* === Footer === */
    .footer {
      background: #08184A;
      color: #aaa;
      padding: 60px 40px 20px;
      font-size: 14px;
    }

    .footer-top { text-align: center; margin-bottom: 30px; }
    .footer-top .social-icons { display: flex; justify-content: center; gap: 25px; }

    .footer-top img {
      width: 28px; height: 28px;
      filter: brightness(0) invert(1);
      transition: 0.3s;
    }

    .footer-top img:hover { filter: brightness(0) invert(0.6); }

    .footer-main {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 40px;
      max-width: 1400px;
      margin: auto;
    }

    .footer-left { flex: 1; min-width: 280px; }
    .footer-left p { margin: 10px 0; line-height: 1.6; }
    .footer-left .desc {
      border-left: 2px solid #3b4a6b;
      padding-left: 15px;
      margin-top: 15px;
      font-size: 13px;
      color: #c0c8e0;
    }

    .footer-links { display: flex; gap: 60px; flex-wrap: wrap; }
    .footer-links ul { list-style: none; }
    .footer-links li { margin-bottom: 10px; }
    .footer-links a {
      color: #bbb; text-decoration: none; transition: 0.3s;
    }

    .footer-links a:hover { color: #6a5af9; }

    .footer-bottom {
      text-align: center;
      margin-top: 40px;
      border-top: 1px solid #1b2a50;
      padding-top: 15px;
      font-size: 13px;
      color: #c0c8e0;
    }
    
/* Responsive: Show only the right header */
@media (min-width: 769px) {
  .form-group {margin-bottom: 20px;}
  .contact-box {  padding: 20px; margin-top: -200px;}
      .banner-btn {
  display: inline-block;
  margin-top: 40px;
  padding: 15px 60px;
  font-size: 1.5rem;
  border-radius: 40px;
  background: linear-gradient(to right, #6a11cb, #2575fc);
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);}
}

/*Responsive: Show only the right header */
@media (max-width: 768px) {
  .form-group {flex: 1.4; gap: 3px;}
  .contact-section{ padding: 20px;}
  .contact-box {  padding: 20px; margin-top: -50px;}
  .form-group input,
  .form-group select,
  .form-group textarea {width: 100%; /* take full width */}
  .contact-box h2 {font-size: 20px;}
  .contact-box p {font-size: 12px;}
  .modal-content { padding: 10px; margin-bottom: 50px;}
}