:root {
  --primary: #c1ff00; /* Neon Lime / Electric Green */
  --bg-dark: #000000;
  --text-white: #ffffff;
  --text-gray: #a1a1aa;
  --accent-red: #ff3e3e;
  --font-heading: "Montserrat", sans-serif;
  --font-body: "Outfit", sans-serif;
}

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

body {
  font-family: var(--font-body);
  background: var(--bg-dark) url("assets/bg_sports.png") no-repeat center center
    fixed;
  background-size: cover;
  color: var(--text-white);
  height: 100vh;
  width: 100vw;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.background-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0.4) 50%,
    rgba(0, 0, 0, 0.9) 100%
  );
  z-index: 1;
}

.grid-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(var(--primary) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.1;
  z-index: 2;
  pointer-events: none;
}

.container {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1400px;
  padding: 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.header {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  animation: fadeInDown 0.8s ease-out;
  margin-bottom: 1rem;
}

.up-logo {
  height: 80px;
  filter: drop-shadow(0 0 15px rgba(193, 255, 0, 0.3));
}

.main-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.hero-section {
  margin-bottom: 2rem;
}

.stadium-name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.3rem;
  margin-bottom: 1rem;
  display: inline-block;
  border-left: 4px solid var(--primary);
  padding-left: 1rem;
  animation: fadeInLeft 1s ease-out;
}

.big-coming-soon {
  font-family: var(--font-heading);
  font-size: clamp(5rem, 13vw, 9rem);
  line-height: 0.9;
  font-weight: 900;
  font-style: italic;
  color: var(--text-white);
  text-transform: uppercase;
  margin-bottom: 1rem;
  -webkit-text-stroke: 2px rgba(255, 255, 255, 0.1);
  animation: slideInRight 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.energy-bar {
  width: 200px;
  height: 8px;
  background: var(--primary);
  position: relative;
  overflow: hidden;
}

.energy-bar::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, #fff, transparent);
  animation: scanning 2s infinite linear;
}

.info-card {
  max-width: 600px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2.5rem;
  border-radius: 4px;
  border-left: 6px solid var(--primary);
  animation: fadeInUp 1.5s ease-out;
}

.tagline {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-white);
}

.description {
  color: var(--text-gray);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.action-section {
  margin-bottom: 2rem;
}

.status-indicator {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1rem;
  color: var(--primary);
  background: rgba(193, 255, 0, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 4px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulseGlow 1.5s infinite;
}

.contact-box {
  font-size: 0.9rem;
  display: flex;
  gap: 1rem;
  align-items: center;
}

.contact-box span {
  color: var(--text-gray);
}

.contact-box a {
  color: var(--text-white);
  text-decoration: none;
  font-weight: 700;
  border-bottom: 1px solid var(--primary);
  transition: all 0.3s ease;
}

.contact-box a:hover {
  color: var(--primary);
  padding-left: 5px;
}

.footer {
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  letter-spacing: 0.2rem;
  color: var(--text-gray);
  animation: fadeIn 2s ease-in;
}

/* Animations */
@keyframes scanning {
  to {
    left: 100%;
  }
}

@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 0 0 rgba(193, 255, 0, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(193, 255, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(193, 255, 0, 0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(100px) skewX(-15deg);
  }
  to {
    opacity: 1;
    transform: translateX(0) skewX(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Mobile Adjustments */
@media (max-width: 768px) {
  .container {
    padding: 1rem;
  }
  .big-coming-soon {
    font-size: 4rem;
  }
  .info-card {
    padding: 1.5rem;
  }
  .stadium-name {
    font-size: 1.1rem;
  }
}
