* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #e50914;
  --secondary: #b20710;
  --dark: #141414;
  --light: #ffffff;
  --gray: #808080;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--light);
  background: var(--dark);
  overflow-x: hidden;
}

/* Hero Section */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    ellipse at center,
    rgba(20, 20, 20, 0.78) 0%,
    rgba(20, 20, 20, 0.72) 50%,
    rgba(20, 20, 20, 0.7) 100%
  );
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 2rem;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  background: linear-gradient(135deg, var(--light), var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  margin-bottom: 2rem;
  color: var(--light);
  opacity: 0.9;
  animation: fadeInUp 1s ease-out 0.2s backwards;
}

.hero-cta {
  display: inline-block;
  padding: 1rem 3rem;
  background: var(--primary);
  color: var(--light);
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 600;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  animation: fadeInUp 1s ease-out 0.4s backwards;
  border: 0.125rem solid transparent;
}

.hero-cta:hover {
  background: var(--secondary);
  transform: translateY(-0.25rem);
  box-shadow: 0 0.625rem 2rem rgba(229, 9, 20, 0.4);
}

/* About Section */
.about {
  padding: 6rem 2rem;
  background: linear-gradient(180deg, var(--dark) 0%, #1a1a1a 100%);
  position: relative;
}

.about::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 0.25rem;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.about-container {
  max-width: 75rem;
  margin: 0 auto;
}

.about-header {
  text-align: center;
  margin-bottom: 4rem;
}

.about-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 1rem;
  color: var(--light);
  position: relative;
  display: inline-block;
}

.about-title::after {
  content: "";
  position: absolute;
  bottom: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 5rem;
  height: 0.25rem;
  background: var(--primary);
}

.about-content {
  display: grid;
  gap: 2rem;
  margin-bottom: 3rem;
}

.about-text {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  text-align: justify;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.stat-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
  backdrop-filter: blur(0.625rem);
  border: 0.0625rem solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-0.5rem);
  background: rgba(229, 9, 20, 0.1);
  border-color: var(--primary);
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.1rem;
}

.highlight {
  color: var(--primary);
  font-weight: 600;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(2rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .hero-content {
    padding: 0 1rem;
  }

  .about {
    padding: 4rem 1.5rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .about-text {
    text-align: left;
  }
}

@media (max-width: 480px) {
  .hero-cta {
    padding: 0.875rem 2rem;
    font-size: 1rem;
  }

  .stat-number {
    font-size: 2.5rem;
  }
}

/* Video Section */
.video-section {
  margin: 4rem 0 0 0;
  display: flex;
  justify-content: center;
}

.video-wrapper {
  position: relative;
  width: 100%;
  /* max-width: 960px; */
  aspect-ratio: 16 / 9;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 0 40px rgba(229, 9, 20, 0.25);
  border: 0.125rem solid rgba(255, 255, 255, 0.1);
}

.video-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
  .video-section {
    margin: 3rem 0;
    padding: 0 1rem;
  }
}
