/* Base reset and setup */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Segoe UI', sans-serif;
  background: #000;
  color: #fff;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

/* Background GIF */
.background-container {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
}
.background-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.35);
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: transparent;
}
::-webkit-scrollbar-thumb {
  background: #ff0000;
  border-radius: 4px;
}

/* Navbar */
.navbar {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  background: rgba(0, 0, 0, 0.8);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid #550000;
}
.navbar .logo {
  font-size: 24px;
  color: #ff0000;
  font-weight: bold;
  margin-right: 20px;
  animation: glow 2s infinite alternate;
}
@keyframes glow {
  from { text-shadow: 0 0 5px #ff0000; }
  to { text-shadow: 0 0 15px #ff0000; }
}
.navbar nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
}
.navbar nav a {
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  padding: 8px 16px;
  border-radius: 6px;
  transition: 0.3s;
}
.navbar nav a:hover {
  background: #ff0000;
  box-shadow: 0 0 10px #ff0000;
}

/* Hero */
.hero {
  padding: 120px 20px 80px;
  text-align: center;
}
.hero h1 {
  font-size: 56px;
  color: #ff4c4c;
  margin-bottom: 20px;
}
.hero .sub-huge {
  font-size: 24px;
  color: #ddd;
}

/* Glassy Sections */
.glassy-box {
  background: rgba(30, 0, 0, 0.4);
  border: 1px solid #900000;
  border-radius: 15px;
  padding: 40px;
  margin: 40px 20px;
}

/* Sections */
section {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px;
  line-height: 1.7;
}
section h2 {
  font-size: 28px;
  color: #ff4c4c;
  margin-bottom: 20px;
}

/* Features */
.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}
.feature-box {
  background: rgba(30, 0, 0, 0.75);
  border: 1px solid #900000;
  padding: 30px;
  border-radius: 15px;
  width: 300px;
  text-align: center;
  transition: 0.3s;
}
.feature-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 20px #ff0000;
}
.feature-box h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #ff4c4c;
}
.feature-box p {
  font-size: 14px;
  color: #ccc;
}

/* Pricing */
.pricing {
  text-align: center;
}
.pricing-box {
  display: inline-block;
  background: rgba(30, 0, 0, 0.75);
  border: 1px solid #900000;
  border-radius: 15px;
  padding: 25px;
  width: 250px;
  margin: 10px;
  transition: 0.3s;
}
.pricing-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 15px #ff0000;
}
.pricing-box h3 {
  font-size: 18px;
  color: #ff4c4c;
  margin-bottom: 10px;
}
.pricing-box p {
  font-size: 14px;
  color: #ccc;
}

/* Dropdowns for FAQ and External */
.dropdown-container {
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
  background: rgba(26, 0, 0, 0.6);
  border: 1px solid #660000;
  transition: box-shadow 0.3s;
}
.dropdown-container.open {
  box-shadow: 0 0 12px #ff0000;
}
.dropdown-button {
  width: 100%;
  background: transparent;
  color: white;
  padding: 15px;
  border: none;
  font-size: 15px;
  cursor: pointer;
  text-align: left;
  transition: background 0.3s;
}
.dropdown-button:hover {
  background: rgba(51, 0, 0, 0.7);
}
.dropdown-content {
  max-height: 0;
  overflow: hidden;
  padding: 0 15px;
  color: #ccc;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.dropdown-container.open .dropdown-content {
  max-height: 300px;
  padding: 15px;
}

/* Team */
.team {
  text-align: center;
}
.member {
  display: inline-flex;
  align-items: center;
  margin: 15px;
  padding: 15px;
  background: rgba(30, 0, 0, 0.8);
  border: 1px solid #990000;
  border-radius: 15px;
}
.member img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  margin-right: 15px;
}
.member div {
  color: #ccc;
  text-align: left;
}
