* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}
html, body {
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  position: relative;
  background: #000;
  z-index: 1;
}

/* 🔥 Background video styling */
.bg-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: -10;
  filter: brightness(0.5) blur(5px);
}

/* Overlay for darkening (if needed) */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0);
  z-index: -9;
}

/* ------------------ NAVIGATION BAR ----------------------------------------------------------- */
.header {
  width: 100%;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0,0,0,0.3);
  backdrop-filter: blur(8px);
  z-index: 100;
  box-shadow: 0 0 10px rgba(0,0,0,0.4);
}

.logo {
  font-size: 24px;
  font-weight: 600;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.logo i {
  font-size: 28px;
  color: white;
}

.nav-links {
  display: flex;
  align-items: center;
}

.nav-links a {
  color: #ffffff;
  text-decoration: none;
  margin-left: 30px;
  font-size: 18px;
  font-weight: 500;
  position: relative;
  transition: color 0.3s, transform 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.nav-links a i {
  font-size: 20px;
}

.nav-links a::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  left: 0;
  bottom: -6px;
  background: #00e6e6;
  border-radius: 5px;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s ease;
}

.nav-links a:hover {
  color: #00e6e6;
  transform: scale(1.05);
}

.nav-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-links a:hover {
  color: #00e6e6;
  transform: scale(1.1);
}

.nav-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* ------------------ SUPPORT PAGE CONTENT ------------------ */
.support-section {
  padding: 140px 20px 60px;
  max-width: 600px;
  margin: auto;
  text-align: center;
}

.support-section h2 {
  font-size: 36px;
  color: #00e6e6;
  margin-bottom: 10px;
}

.support-section p {
  color: #ccc;
  font-size: 18px;
  margin-bottom: 40px;
}

.support-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.support-form input,
.support-form textarea {
  background: #1a1a1a;
  border: 1px solid #333;
  padding: 12px;
  font-size: 16px;
  color: white;
  border-radius: 6px;
  resize: none;
}

.support-form input:focus,
.support-form textarea:focus {
  outline: none;
  border-color: #00e6e6;
}

.support-form button {
  background: #00e6e6;
  color: #000;
  border: none;
  padding: 12px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.support-form button:hover {
  background: #00cccc;
}
.buttons .btn-glow {
  display: inline-block;
  margin: 10px;
  padding: 12px 30px;
  color: #00e6e6;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid #00e6e6;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: color 0.3s, box-shadow 0.3s;
  background: transparent;
  cursor: pointer;
}

.buttons .btn-glow::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background-color: transparent;
  opacity: 0;
  z-index: -1;
  border-radius: 50%;
  transition: opacity 0.3s;
}

.buttons .btn-glow:hover {
  color: white;
  background: transparent;
  box-shadow: 0 0 8px #00e6e6, 0 0 16px #00e6e6;
}

.buttons .btn-glow:hover::before {
  opacity: 0.15;
}

.footer {
  width: 100vw;
  margin: 0;
  padding: 60px 20px;
  background: rgba(0, 20, 20, 0.25);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  color: #ccc;
  font-size: 14px;
  font-family: 'Poppins', sans-serif;
  line-height: 1.5;
  box-shadow: 0 -4px 16px rgba(0, 230, 230, 0.1);
  border-top: none;
  position: relative;
  z-index: 2;
  animation: slideFadeIn 1s ease forwards;
  opacity: 0;
  transform: translateY(40px);
  border-radius: 20px 20px 0 0;
}

.footer-bottom {
  width: 100vw;
  margin: 0;
  padding: 40px;
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  justify-content: space-between;
  align-items: flex-start;
  box-sizing: border-box;
}

.footer-contact, .footer-links, .footer-social {
  flex: 1;
  min-width: 250px;
}

.footer-contact h4,
.footer-social h4 {
  color: #00e6e6;
  margin-bottom: 12px;
}

.footer-contact p,
.footer-contact a {
  color: #bbb;
  margin: 6px 0;
  text-decoration: none;
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: hsl(180, 100%, 45%);
}

.footer-social {
  display: flex;
  justify-content: flex-end;
}

.social-wrapper {
  max-width: 200px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
}

.social-icons {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}

.social-icons li {
  width: 100%;
}

.social-icons a {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 10px;
  color: #00e6e6;
  font-size: 16px;
  text-decoration: none;
  transform: translateX(20px);
  opacity: 0;
  animation: popIn 0.5s forwards;
  width: 100%;
  justify-content: end;
  text-align: right;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  padding: 4px 8px;
  border-radius: 6px;
}

.social-icons a:hover {
  transform: scale(1.08) translateX(0);
  background: rgba(0, 255, 255, 0.08);
  box-shadow: 0 4px 12px rgba(0, 255, 255, 0.25);
  color: #00ffff;
}

.social-icons a span {
  font-size: 14px;
  color: #ccc;
}

.social-icons li:nth-child(1) a { animation-delay: 0.2s; }
.social-icons li:nth-child(2) a { animation-delay: 0.4s; }
.social-icons li:nth-child(3) a { animation-delay: 0.6s; }
.social-icons li:nth-child(4) a { animation-delay: 0.8s; }

@keyframes popIn {
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* ==== RESPONSIVE ==== */
@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-social {
    text-align: center;
    align-items: center;
    margin-top: 20px;
  }

  .footer-social .social-icons {
    align-items: center;
  }

  .footer-links {
    margin-top: 20px;
  }
}

p {
  color: white !important;
}

h2 {
  color: white;
}