:root {
  --bg-color: #050505;
  --text-main: #ffffff;
  --text-muted: #a0a0a0;
  --accent-color: #da2129;
  --accent-glow: rgba(255, 77, 0, 0.4);
  --secondary-glow: rgba(0, 115, 255, 0.3);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--bg-color);
  color: var(--text-main);
  font-family: "Inter", sans-serif;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  position: relative;
}

/* Abstract Background */
.background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.blob {
  position: absolute;
  filter: blur(80px);
  border-radius: 50%;
  opacity: 0.6;
  animation: float 20s infinite ease-in-out;
}

.blob-1 {
  top: -10%;
  left: -10%;
  width: 50vw;
  height: 50vw;
  background: var(--accent-glow);
  animation-delay: 0s;
}

.blob-2 {
  bottom: -10%;
  right: -10%;
  width: 40vw;
  height: 40vw;
  background: var(--secondary-glow);
  animation-delay: -5s;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at center,
    transparent 0%,
    var(--bg-color) 80%
  );
  z-index: 2;
}

/* Content Styles */
.container {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 800px;
  padding: 2rem;
  text-align: center;
}

.content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.subtitle {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  color: var(--accent-color);
  text-transform: uppercase;
  opacity: 0;
  animation: fadeUp 1s ease forwards 0.2s;
}

.title {
  font-family: "Outfit", sans-serif;
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  opacity: 0;
  animation: fadeUp 1s ease forwards 0.4s;
  text-transform: uppercase;
}

.year {
  display: block;
  background: linear-gradient(135deg, var(--accent-color), #da2129);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--accent-color);
  text-shadow: 0 0 40px var(--accent-glow);
}

.divider {
  width: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--accent-color),
    transparent
  );
  margin: 1rem 0;
  animation: expandWidth 1.2s ease forwards 0.6s;
  border-radius: 2px;
}

.description {
  font-size: 1.125rem;
  color: var(--text-muted);
  font-weight: 300;
  max-width: 500px;
  line-height: 1.6;
  opacity: 0;
  animation: fadeUp 1s ease forwards 0.8s;
}

.status {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.75rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  opacity: 0;
  animation: fadeUp 1s ease forwards 1s;
}

.dot {
  width: 8px;
  height: 8px;
  background-color: var(--accent-color);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent-color);
  animation: pulse 2s infinite;
}

/* Animations */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes expandWidth {
  from {
    width: 0;
  }
  to {
    width: 150px;
  }
}

@keyframes float {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(30px, -50px) scale(1.1);
  }
  66% {
    transform: translate(-20px, 20px) scale(0.9);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.5);
    opacity: 0.5;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .container {
    padding: 1.5rem;
  }
}
