/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Courier New', monospace;
  color: #eee;
  background-color: black;
  overflow-x: hidden;
}

/* Background Video */
#bg-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  filter: brightness(0.3) saturate(1.3) blur(2px);
  z-index: -1;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  padding: 1rem 2rem;
  background: rgba(0, 0, 0, 0.7);
  border-bottom: 1px solid #555;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar .logo {
  font-size: 1.8rem;
  font-weight: bold;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links a {
  color: #eee;
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: #aaa;
}

/* Hero */
.hero {
  text-align: center;
  padding: 8rem 2rem;
}

.hero h1 {
  font-size: 4rem;
  font-weight: 900;
}

.hero p {
  font-size: 1.3rem;
  color: #ccc;
  margin: 1rem 0;
}

.hero-buttons .btn {
  background-color: crimson;
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 999px;
  text-decoration: none;
  margin: 0 0.5rem;
  display: inline-block;
}

.hero-buttons .btn.alt {
  background: transparent;
  border: 1px solid white;
}

.btn:hover {
  opacity: 0.8;
}

/* Section Styling */
.section {
  padding: 4rem 2rem;
}

.section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
}

.dark {
  background: rgba(0, 0, 0, 0.7);
  border-top: 1px solid #444;
}

/* Cards */
.card-grid {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.card {
  background-color: #111;
  padding: 1rem;
  border-radius: 8px;
  text-align: center;
  max-width: 250px;
  border: 1px solid #333;
  box-shadow: 0 0 10px rgba(255, 0, 255, 0.2);
}

.card img {
  width: 100%;
  border-radius: 8px;
}

.card a {
  color: #ff3377;
  text-decoration: none;
}

.card a:hover {
  text-decoration: underline;
}

/* Video Grid */
.video-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.video-grid iframe {
  width: 300px;
  height: 170px;
  border: none;
  border-radius: 8px;
}

/* Footer */
.footer {
  text-align: center;
  padding: 2rem;
  background-color: rgba(0, 0, 0, 0.7);
  border-top: 1px solid #333;
  font-size: 0.9rem;
  color: #999;
}
