@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@400;600;900&display=swap');

:root {
  --brand: #E5005A;
  --brand-hover: #C4004A;
  --bg-dark: #050505;
  --nav-bg: rgba(8, 8, 8, 0.85);
  --text-secondary: #A0A0A0;
}

body {
  margin: 0;
  padding: 0;
  background-color: var(--bg-dark);
  color: white;
  overflow-x: hidden;
}

/* Video Background */
#hero-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  animation: bgZoom 20s infinite alternate ease-in-out;
}

@keyframes bgZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.02); }
}

/* Video Overlay */
.video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.72) 100%);
  z-index: -1;
  pointer-events: none;
}

/* Cinematic Effects */
.vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, transparent 50%, rgba(0,0,0,0.85) 130%);
  z-index: -1;
  pointer-events: none;
}

/* Navbar */
nav {
  height: 80px;
  background: var(--nav-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

/* Buttons */
.btn {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary {
  background: linear-gradient(90deg, #E5005A 0%, #680D74 100%);
  box-shadow: 0 4px 15px rgba(229, 0, 90, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(229, 0, 90, 0.5);
  filter: brightness(1.1);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
}

.btn-outline {
  background: transparent;
  border: 1px solid white;
}

.btn-outline:hover {
  background: white;
  color: black;
}

.btn-outline:hover svg {
  color: black !important;
}

/* Typography Details */
.heading-gradient {
  background: linear-gradient(to right, #E5005A, #680D74);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Animations */
.hero-element {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.hero-element.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Particles */
.particles {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image: radial-gradient(circle, rgba(255,255,255,0.15) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: floatParticles 60s linear infinite;
  opacity: 0.4;
}

@keyframes floatParticles {
  0% { background-position: 0 0; }
  100% { background-position: 600px 600px; }
}
