/* Contact Page Styles */


    body {
      margin: 0;
      /* font-family: 'Segoe UI', sans-serif; */
      background: #1a0e07;
      color: #fff;
      overflow-x: hidden;
    }





/* Navbar */
.navbar {
  background-color: #161616;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 40px;
  height: 25px;
  max-width: 100%;
  position: fixed;
  top: -100px; /* Hide initially for animation */
  left: 0;
  right: 0;
  z-index: 1000;
  animation: slideDown 0.8s ease-out forwards;
}

/* Keyframe for slide-in */
@keyframes slideDown {
  from {
    top: -100px;
    opacity: 0;
  }
  to {
    top: 0;
    opacity: 1;
  }
}

/* Logo */
.logo img {
  height: 30px;
  width: auto;
}

/* Navigation Links */
.nav-links {
  display: flex;
  gap: 24px;
  font-size: 14px;
  font-weight: 500;
}

.nav-links a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #aaa;
}

.arrow {
  margin-left: 4px;
  font-size: 14px;
}

/* Animated Button */
.login-btn {
  background-color: #d35400;
  color: white;
  padding: 10px 20px;
  border-radius: 9999px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.login-btn:hover {
  background-color: #e67e22;
  transform: scale(1.05);
}



.dp-wrapper {
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
}

.dp {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #6e8efb, #a777e3);
  border-radius: 50%;
  color: white;
  font-weight: bold;
  font-size: 1.2rem;
  font-family: sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 5px rgba(0,0,0,0.3);
  overflow: hidden;
  position: relative;
}

.dp img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.imgdp {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

.user-area {
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 1001;
}

.dp-dropdown {
  position: absolute;
  top: 50px;
  right: 0;
  background: #1e1e1e;
  border: 1px solid #333;
  border-radius: 8px;
  box-shadow: 0 8px 12px rgba(0,0,0,0.5);
  display: none;
  flex-direction: column;
  min-width: 120px;
  z-index: 1000;
  padding: 5px 0;
}

.dp-dropdown.show {
  display: flex;
}

.dp-dropdown button {
  background: none;
  border: none;
  padding: 10px 16px;
  color: #fff;
  text-align: left;
  cursor: pointer;
  width: 100%;
  font-size: 14px;
}

.dp-dropdown button:hover {
  background-color: #333;
}







/* 🔸 Animated Background on Hover */
.navbar::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, #3e3e3e, #b1b1b1, #000000);
  background-size: 100% 100%;
  z-index: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.navbar:hover::before {
  animation: navSweep 3s ease-out forwards;
  opacity: 0.15;
}

/* Background Sweep Animation */
@keyframes navSweep {
  0% {
    left: -100%;
  }
  50% {
    left: 0%;
  }
  100% {
    left: 100%;
    opacity: 0;
  }
}





@media (max-width: 1024px) {
  .game-section, .hero, .pricing-container {
    padding-top: 70px;
  }
}

@media (max-width: 768px) {
  .game-section, .hero, .pricing-container {
    padding-top: 80px;
  }
}


/* Hamburger (Mobile Only) */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  cursor: pointer;
  z-index: 1101;
}
.nav-toggle span {
  display: block;
  height: 3px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Slide-out Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  height: 100vh;
  width: min(80vw, 320px);
  background: #161616;
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  padding: 80px 20px;
  gap: 20px;
  transition: right 0.4s ease-in-out;
  z-index: 1100;
}
.mobile-menu a {
  color: white;
  text-decoration: none;
  font-size: 16px;
  padding: 10px 0;
  border-bottom: 1px solid #2a2a2a;
}
.mobile-menu a:hover {
  color: #f97316;
  padding-left: 8px;
}

/* Active states */
.mobile-menu.active {
  right: 0;
}
.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
}
.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -4px);
}

/* Responsive control */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }
}


























    /* Animated Background */
     

    /* Background Animation */
     .animated-bg{
      position: fixed;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: linear-gradient( #0000004a,#0000004a, #0000004a,#0000004a, #0000004a);
      background-size: 400% 400%;
      animation: gradientMove 15s infinite;
      z-index: -1;
    }
    @keyframes gradientMove {
      0% { background-position: 0 50%; }
      50% { background-position: 100% 50%; }
      100% { background-position: 0 50%; }
    }
    section {
      padding: 80px 20px;
      text-align: center;
      position: relative;
    }

    .animated-heading {
      font-size: 2.8rem;
      color: #ffcc00;
      text-shadow: 0 0 15px #ffcc00aa;
      animation: glow 2s infinite alternate;
    }
    @keyframes glow {
      from { text-shadow: 0 0 10px #ffcc0044; }
      to { text-shadow: 0 0 25px #ffcc00; }
    }

    .contact-form, .bug-form  {
      max-width: 600px;
      margin: 40px auto;
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid #444;
      border-radius: 15px;
      padding: 30px;
      -webkit-backdrop-filter: blur(10px);
      backdrop-filter: blur(10px);
      box-shadow: 0 0 25px #222;
      transition: 0.4s ease;
      text-align: left;
    }
    .contact-form input,
    .contact-form textarea,
    .bug-form textarea
     {
      width: 100%;
      height: auto;
      padding: 15px;
      margin-bottom: 20px;
      background: #111;
      border: 1px solid #555;
      color: #fff;
      border-radius: 8px;
      outline: none;
      transition: 0.3s;
      font-size: 1rem;
      margin-right: 0;
      box-sizing: border-box;
    }
    /* Basic tweaks for bug-form subject input */
    .bug-form input[type="text"] {
      width: 100%;
      padding: 12px 14px;
      margin-bottom: 14px;
      background: #070707;
      border: 1px solid #444;
      border-radius: 8px;
      color: #fff;
      font-size: 1rem;
      box-sizing: border-box;
    }
    .bug-form select {
      width: 100%;
      height: 50px;
      padding: 15px;
      margin-bottom: 20px;
      background: #111;
      border: 1px solid #555;
      color: #fff;
      border-radius: 8px;
      outline: none;
      transition: 0.3s;
      font-size: 1rem;
      margin-right: 0;
      box-sizing: border-box;
    }
    .contact-form textarea,
    .bug-form textarea {
      height: 120px;
      resize: vertical;
    }
    .contact-form input:hover,
    .contact-form textarea:hover,
    .bug-form textarea:hover,
    .bug-form select:hover {
      box-shadow: 0 0 12px #999;
    }
    .bug-form label {
      display: block;
      font-weight: 600;
      color: #ddd;
      margin: 0 0 8px 4px;
      text-align: left;
    }
    .bug-form select:focus,
    .bug-form textarea:focus {
      border-color: #ffcc00;
      box-shadow: 0 0 10px rgba(255, 204, 0, 0.25);
    }

    .contact-form button,
    .bug-form button {
      /* background: linear-gradient(90deg, #ff9900, #cc0000);
      color: #fff; */
      padding: 15px 30px;
      border: none;
      border-radius: 50px;
      font-weight: bold;
      font-size: medium;
      cursor: pointer;
      transition: all 0.3s ease;
      /* box-shadow: 0 0 12px #ff660066; */
      display: block;
      width: fit-content;
      margin: 10px auto 0;
    }

  /* Glass-styled link button used for quick 'Report Game Bug' linking */
  .bug-form .glass-btn {
    display: inline-block;
    text-decoration: none;
    padding: 14px 38px;
    border-radius: 999px;
    color: #fff;
    background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(0,0,0,0.12));
    border: 1px solid rgba(255,255,255,0.06);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    box-shadow: 0 8px 18px rgba(0,0,0,0.65), inset 0 2px 8px rgba(255,255,255,0.02);
    font-weight: 700;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
    margin: 8px 0 14px 0;
  }
  .bug-form .glass-btn:hover,
  .bug-form .glass-btn:focus {
    transform: translateY(-4px);
    background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(0,0,0,0.08));
    box-shadow: 0 12px 28px rgba(0,0,0,0.7), inset 0 2px 8px rgba(255,255,255,0.03);
  }
    /* .contact-form button:hover,
    .bug-form button:hover {
      transform: scale(1.05);
      box-shadow: 0 0 22px #ffcc00aa;
    } */

    .live-chat {
      margin-top: 20px;
      border: 2px dashed #888;
      padding: 12px 24px;
      border-radius: 30px;
      color: #ccc;
      background: #1a1a1a;
      cursor: not-allowed;
      transition: 0.4s ease;
    }
    .live-chat:hover {
      background-color: #222;
      box-shadow: 0 0 15px #666;
    }


    .team-card {
      max-width: 400px;
      margin: auto;
      background-color: rgba(255,255,255,0.03);
      border: 1px solid #444;
      border-radius: 20px;
      padding: 30px;
      box-shadow: 0 0 25px #222;
      transition: 0.4s ease;
    }
    .team-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 0 35px #666;
    }
    .team-section a {
      text-decoration: none;
      color: inherit;
      display: block;
    }
    .team-section a:hover,
    .team-section a:focus,
    .team-section a:visited {
      text-decoration: none;
      color: inherit;
    }
    .avatar {
      width: 100px;
      height: 100px;
      border-radius: 50%;
      overflow: hidden;
      margin: 0 auto 15px;
      border: 3px solid #999;
    }
    .avatar img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }


























    



.custom-modal {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(10, 10, 10, 0.85);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  animation: fadeIn 0.4s ease;
}
/* Make submit button larger and prominent, centered below the textarea */
.contact-section .btn-play-now,
.bug-form .btn-play-now {
  display: block;
  padding: 14px 38px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(180deg,#d36a3a 0%, #9e4724 100%);
  border: none;
  box-shadow: 0 14px 36px rgba(0,0,0,0.65), inset 0 -6px 18px rgba(255,255,255,0.04);
  font-weight: 800;
  font-size: 1.06rem;
  margin: 18px auto 0;
  width: fit-content;
}
.contact-section .btn-play-now:hover,
.bug-form .btn-play-now:hover { transform: translateY(-4px); box-shadow: 0 18px 44px rgba(0,0,0,0.7); }

/* Layout for action buttons inside bug form: side-by-side on wide screens, stacked on narrow */
.bug-actions {
  display: flex;
  gap: 24px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 12px;
}

/* Ensure the two action controls keep pill sizing and sit inline within the actions container */
.bug-actions .glass-btn,
.bug-actions .btn-play-now {
  display: inline-block;
  margin: 0;
  width: auto;
}

/* Make sure the bug-form itself doesn't force buttons into full-width blocks */
.bug-form { text-align: left; }



.modal-content {
  background: linear-gradient(145deg, #111, #1a1a1a);
  color: #fff;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 0 25px #ff5500;
  max-width: 400px;
  width: 90%;
  animation: scaleIn 0.3s ease;
  text-align: center;
}
.modal-content h3 { color: #ffcc00; margin-bottom: 0.5rem; }
.modal-content p { color: #ccc; }

.modal-buttons {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}
.confirm-btn {
  background: linear-gradient(135deg, #ff5500, #ffcc00);
  color: #000;
  font-weight: bold;
  padding: 0.6rem 1.2rem;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.confirm-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px #ffcc00;
}
@keyframes fadeIn { from {opacity:0} to {opacity:1} }
@keyframes scaleIn { from { transform: scale(0.9); opacity: 0; } to { transform: scale(1); opacity: 1; } }
@keyframes fadeOut { from { opacity: 1; } to { opacity: 0; } }
.fade-out { animation: fadeOut 0.3s ease forwards; }

/* Contact-page override: ensure DP image fills and is not clipped */
.navbar .dp img,
.navbar .imgdp,
#dpImage {
  width: 100% !important;
  height: 100% !important;
  position: static !important;
  border: none !important;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}
