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

html, body {
  height: 100%;
  font-family: 'Arial', sans-serif;
  overflow: hidden;
  cursor: none;
}

body {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
  color: #ffffff;
  position: relative;
}

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

.floating-orbs {
  position: absolute;
  width: 100%;
  height: 100%;
}

.orb {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(102, 126, 234, 0.3), rgba(118, 75, 162, 0.1));
  filter: blur(1px);
  animation: float 15s infinite ease-in-out;
}

.orb-1 {
  width: 300px;
  height: 300px;
  top: 10%;
  left: -10%;
  animation-delay: 0s;
  background: radial-gradient(circle at 30% 30%, rgba(102, 126, 234, 0.2), rgba(118, 75, 162, 0.05));
}

.orb-2 {
  width: 200px;
  height: 200px;
  top: 60%;
  right: -5%;
  animation-delay: 5s;
  background: radial-gradient(circle at 30% 30%, rgba(240, 147, 251, 0.2), rgba(245, 87, 108, 0.05));
}

.orb-3 {
  width: 250px;
  height: 250px;
  bottom: 20%;
  left: 20%;
  animation-delay: 10s;
  background: radial-gradient(circle at 30% 30%, rgba(79, 172, 254, 0.2), rgba(0, 242, 254, 0.05));
}

.orb-4 {
  width: 180px;
  height: 180px;
  top: 30%;
  right: 25%;
  animation-delay: 7s;
  background: radial-gradient(circle at 30% 30%, rgba(67, 233, 123, 0.2), rgba(56, 249, 215, 0.05));
}

.orb-5 {
  width: 220px;
  height: 220px;
  bottom: 40%;
  right: 10%;
  animation-delay: 12s;
  background: radial-gradient(circle at 30% 30%, rgba(250, 112, 154, 0.2), rgba(254, 225, 64, 0.05));
}

@keyframes float {
  0%, 100% {
    transform: translate(0px, 0px) rotate(0deg);
    opacity: 0.3;
  }
  33% {
    transform: translate(30px, -30px) rotate(120deg);
    opacity: 0.6;
  }
  66% {
    transform: translate(-20px, 20px) rotate(240deg);
    opacity: 0.4;
  }
}

/* Cursor Glow Effect */
.cursor-glow {
  position: fixed;
  width: 30px;
  height: 30px;
  background: radial-gradient(circle, rgba(102, 126, 234, 1) 0%, rgba(102, 126, 234, 0.6) 20%, rgba(118, 75, 162, 0.4) 50%, transparent 80%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: all 0.1s ease;
  mix-blend-mode: screen;
  box-shadow: 0 0 20px rgba(102, 126, 234, 0.5), 0 0 40px rgba(102, 126, 234, 0.3);
}

.cursor-glow::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, rgba(102, 126, 234, 0.3) 0%, rgba(118, 75, 162, 0.1) 50%, transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: pulse 2s infinite ease-in-out;
}

.cursor-glow::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 60%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: pulse 3s infinite ease-in-out reverse;
}

@keyframes pulse {
  0%, 100% {
    opacity: 0.4;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 0.8;
    transform: translate(-50%, -50%) scale(1.3);
  }
}

/* Main Content */
.container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  position: relative;
  z-index: 1;
}

.tagline {
  font-family: 'Impact', 'Arial Black', sans-serif;
  font-size: 1.8rem;
  font-weight: 900;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.2);
  margin-bottom: 40px;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
  text-shadow: 
    0 0 2px rgba(255, 255, 255, 0.1),
    0 0 4px rgba(102, 126, 234, 0.1);
}

.tagline.flicker-on {
  color: #00ffff;
  text-shadow: 
    0 0 5px rgba(0, 255, 255, 1),
    0 0 10px rgba(0, 255, 255, 0.8),
    0 0 15px rgba(0, 255, 255, 0.6),
    0 0 20px rgba(0, 255, 255, 0.4),
    0 0 30px rgba(0, 255, 255, 0.3),
    0 0 40px rgba(0, 255, 255, 0.2),
    0 0 50px rgba(102, 126, 234, 0.1);
  animation: neon-flicker 1.5s ease-in-out;
}

@keyframes neon-flicker {
  0% { 
    opacity: 0.2;
    text-shadow: 
      0 0 2px rgba(0, 255, 255, 0.2),
      0 0 4px rgba(0, 255, 255, 0.2);
  }
  5% { 
    opacity: 1;
    text-shadow: 
      0 0 5px rgba(0, 255, 255, 1),
      0 0 10px rgba(0, 255, 255, 0.8),
      0 0 15px rgba(0, 255, 255, 0.6),
      0 0 20px rgba(0, 255, 255, 0.4),
      0 0 30px rgba(0, 255, 255, 0.3),
      0 0 40px rgba(0, 255, 255, 0.2);
  }
  10% { 
    opacity: 0.3;
    text-shadow: 
      0 0 2px rgba(0, 255, 255, 0.3),
      0 0 4px rgba(0, 255, 255, 0.3);
  }
  15% { 
    opacity: 1;
    text-shadow: 
      0 0 5px rgba(0, 255, 255, 1),
      0 0 10px rgba(0, 255, 255, 0.8),
      0 0 15px rgba(0, 255, 255, 0.6),
      0 0 20px rgba(0, 255, 255, 0.4),
      0 0 30px rgba(0, 255, 255, 0.3),
      0 0 40px rgba(0, 255, 255, 0.2);
  }
  20% { 
    opacity: 0.8;
    text-shadow: 
      0 0 4px rgba(0, 255, 255, 0.8),
      0 0 8px rgba(0, 255, 255, 0.6),
      0 0 12px rgba(0, 255, 255, 0.4);
  }
  25% { 
    opacity: 1;
    text-shadow: 
      0 0 5px rgba(0, 255, 255, 1),
      0 0 10px rgba(0, 255, 255, 0.8),
      0 0 15px rgba(0, 255, 255, 0.6),
      0 0 20px rgba(0, 255, 255, 0.4),
      0 0 30px rgba(0, 255, 255, 0.3),
      0 0 40px rgba(0, 255, 255, 0.2);
  }
  30% { 
    opacity: 0.4;
    text-shadow: 
      0 0 3px rgba(0, 255, 255, 0.4),
      0 0 6px rgba(0, 255, 255, 0.4);
  }
  35% { 
    opacity: 1;
    text-shadow: 
      0 0 5px rgba(0, 255, 255, 1),
      0 0 10px rgba(0, 255, 255, 0.8),
      0 0 15px rgba(0, 255, 255, 0.6),
      0 0 20px rgba(0, 255, 255, 0.4),
      0 0 30px rgba(0, 255, 255, 0.3),
      0 0 40px rgba(0, 255, 255, 0.2);
  }
  100% { 
    opacity: 1;
    text-shadow: 
      0 0 5px rgba(0, 255, 255, 1),
      0 0 10px rgba(0, 255, 255, 0.8),
      0 0 15px rgba(0, 255, 255, 0.6),
      0 0 20px rgba(0, 255, 255, 0.4),
      0 0 30px rgba(0, 255, 255, 0.3),
      0 0 40px rgba(0, 255, 255, 0.2);
  }
}

.coming-soon {
  font-size: 4rem;
  font-weight: 300;
  letter-spacing: 8px;
  text-transform: uppercase;
  background: linear-gradient(45deg, #ffffff 0%, #667eea 50%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
  animation: fadeInGlow 2s ease-out;
  position: relative;
}

.coming-soon::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), rgba(102, 126, 234, 0.1));
  filter: blur(20px);
  z-index: -1;
  opacity: 0.5;
}

@keyframes fadeInGlow {
  from {
    opacity: 0;
    transform: translateY(30px);
    filter: blur(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0px);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .coming-soon {
    font-size: 2.5rem;
    letter-spacing: 4px;
  }

  .cursor-glow {
    display: none;
  }

  body {
    cursor: default;
  }
}

@media (max-width: 480px) {
  .coming-soon {
    font-size: 2rem;
    letter-spacing: 2px;
  }
}