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

body {
  background: #1a0000;
  overflow: hidden;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}

.main-content {
  text-align: center;
  z-index: 2;
}

.logo-text {
  font-size: 6rem;
  background: linear-gradient(45deg, #ff0000, #ff4500, #ff8c00);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 20px #ff0000, 0 0 40px #ff4500;
  animation: glowRed 2s infinite alternate;
}

.status-text {
  font-size: 1.9rem;
  margin-top: 2rem;
  color: #ff9999;
  animation: fadePulse 2s infinite alternate;
}

.footer {
  position: absolute;
  bottom: 20px;
  font-size: 1.2rem;
  color: #ffeb3b;
  text-shadow: 0 0 10px #ffeb3b;
  animation: bounceText 2.5s infinite alternate;
}

.team-logo {
  width: 180px;
  height: auto;
  margin-bottom: 35px;
  filter: drop-shadow(0 0 10px #ff0000);
  animation: scalePulse 3s infinite ease-in-out;
}

.star {
  position: absolute;
  background: rgba(255, 50, 50, 0.8);
  border-radius: 50%;
  animation: twinkleRed 1.5s infinite alternate;
}

@keyframes glowRed {
  from { text-shadow: 0 0 10px #ff0000; }
  to { text-shadow: 0 0 50px #ff4500, 0 0 80px #ff8c00; }
}

@keyframes fadePulse {
  from { opacity: 0.7; }
  to { opacity: 1; }
}

@keyframes bounceText {
  from { transform: translateY(0); }
  to { transform: translateY(-8px); }
}

@keyframes scalePulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); }
}

@keyframes twinkleRed {
  from { opacity: 0.6; transform: scale(1); }
  to { opacity: 0.3; transform: scale(1.5); }
}