:root {
  --primary-color: #6366f1;
  --secondary-color: #a855f7;
  --bg-dark: #0f172a;
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --glass-bg: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.1);
}

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

body {
  font-family: 'Outfit', sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-main);
  overflow: hidden;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Background Animation */
.background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: radial-gradient(circle at center, #1e293b 0%, #0f172a 100%);
}

.background span {
  position: absolute;
  width: 40vw;
  height: 40vw;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
  animation: move 20s infinite alternate;
}

.background span:nth-child(1) {
  background: var(--primary-color);
  top: -10%;
  left: -10%;
}

.background span:nth-child(2) {
  background: var(--secondary-color);
  bottom: -10%;
  right: -10%;
  animation-delay: -5s;
}

.background span:nth-child(3) {
  background: #0ea5e9;
  top: 40%;
  left: 30%;
  animation-duration: 25s;
}

@keyframes move {
  0% {
    transform: translate(0, 0) scale(1);
  }

  100% {
    transform: translate(10vw, 10vh) scale(1.1);
  }
}

/* Main Content */
main {
  width: 100%;
  max-width: 500px;
  padding: 20px;
  z-index: 1;
}

.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 32px;
  padding: 60px 40px;
  text-align: center;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  animation: fadeIn 1s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.content h2 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 20px;
  background: linear-gradient(to right, #fff, #94a3b8);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.content p {
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 40px;
  font-size: 1.1rem;
}

/* Animation Container */
.animation-container {
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.gears {
  position: relative;
  width: 60px;
  height: 60px;
}

.gear-one,
.gear-two {
  position: absolute;
  color: var(--primary-color);
  filter: drop-shadow(0 0 10px rgba(99, 102, 241, 0.4));
}

.gear-one {
  width: 40px;
  height: 40px;
  top: 5px;
  left: 5px;
  animation: rotate 4s linear infinite;
}

.gear-two {
  width: 25px;
  height: 25px;
  bottom: 5px;
  right: 5px;
  color: var(--secondary-color);
  animation: rotate-reverse 3s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes rotate-reverse {
  from {
    transform: rotate(360deg);
  }

  to {
    transform: rotate(0deg);
  }
}

.status-text {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 400;
  letter-spacing: 1px;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 0.5;
  }

  50% {
    opacity: 1;
  }
}

/* Footer & Links */
.footer {
  border-top: 1px solid var(--glass-border);
  padding-top: 30px;
}

.footer p {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.social-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 600;
  transition: all 0.3s ease;
  padding: 8px 12px;
  border-radius: 12px;
  border: 1px solid transparent;
}

.social-links a:hover {
  color: var(--text-main);
  background: var(--glass-bg);
  border-color: var(--glass-border);
}

/* Responsive */
@media (max-width: 480px) {
  .glass-card {
    padding: 40px 25px;
  }

  .content h2 {
    font-size: 2.2rem;
  }
}