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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background: #000000;
  overflow: hidden;
}

/* Video Background */
.video-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(8px);
  opacity: 0.3;
  z-index: 1;
}

/* Loader Container */
.loader-container {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 10;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.98) 0%, rgba(10, 10, 10, 0.98) 100%);
}

/* Cursor Tracking Aura */
.cursor-aura {
  position: fixed;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(218, 165, 32, 0.5) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 5;
  mix-blend-mode: screen;
}

/* Loader Content */
.loader-content {
  position: relative;
  z-index: 10;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
  padding: 2rem;
}

/* Main Heading */
.loader-text h1 {
  font-size: 3.5rem;
  font-weight: 300;
  letter-spacing: 2px;
  color: #daa520;
  margin: 0;
  line-height: 1.2;
  max-width: 800px;
  background: linear-gradient(135deg, #ffd700 0%, #daa520 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 30px rgba(218, 165, 32, 0.3);
}

/* Subtext */
.loader-text p {
  font-size: 1.1rem;
  color: #a0a0a0;
  margin: 1rem 0 0 0;
  letter-spacing: 0.5px;
  font-weight: 300;
}

/* Loader Animation - Circular Progress */
.loader-spinner {
  width: 80px;
  height: 80px;
  position: relative;
  margin: 1rem 0;
}

.spinner-circle {
  width: 100%;
  height: 100%;
  border: 3px solid rgba(218, 165, 32, 0.2);
  border-top: 3px solid #ffd700;
  border-right: 3px solid #daa520;
  border-radius: 50%;
  animation: spin 2s linear infinite;
  box-shadow: 0 0 30px rgba(218, 165, 32, 0.5), inset 0 0 20px rgba(218, 165, 32, 0.2);
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Animated dots underneath spinner */
.loader-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 2rem;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #daa520;
  animation: dotPulse 1.4s infinite;
}

.dot:nth-child(1) {
  animation-delay: 0s;
}

.dot:nth-child(2) {
  animation-delay: 0.2s;
}

.dot:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes dotPulse {
  0%, 60%, 100% {
    opacity: 0.3;
    transform: scale(0.8);
  }
  30% {
    opacity: 1;
    transform: scale(1.2);
  }
}

/* Status Text */
.status-text {
  margin-top: 2rem;
  font-size: 0.95rem;
  color: #808080;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 400;
  animation: fadeInOut 2s infinite;
}

@keyframes fadeInOut {
  0%, 100% {
    opacity: 0.6;
  }
  50% {
    opacity: 1;
  }
}

/* Glowing accent lines */
.accent-lines {
  position: absolute;
  width: 200px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #daa520, transparent);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.3;
  animation: slideX 3s ease-in-out infinite;
}

.accent-lines:nth-child(1) {
  width: 300px;
  animation-delay: 0s;
}

.accent-lines:nth-child(2) {
  width: 200px;
  animation-delay: 0.5s;
}

@keyframes slideX {
  0%, 100% {
    opacity: 0;
    transform: translate(-50%, -50%) scaleX(0);
  }
  50% {
    opacity: 0.3;
    transform: translate(-50%, -50%) scaleX(1);
  }
}

/* Responsive */
@media (max-width: 1024px) {
  .loader-text h1 {
    font-size: 2.5rem;
  }

  .loader-text p {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .loader-text h1 {
    font-size: 2rem;
  }

  .loader-text p {
    font-size: 0.9rem;
  }

  .loader-content {
    gap: 2rem;
  }
}

@media (max-width: 480px) {
  .loader-text h1 {
    font-size: 1.5rem;
    letter-spacing: 1px;
  }

  .loader-text p {
    font-size: 0.85rem;
  }

  .loader-content {
    gap: 1.5rem;
    padding: 1rem;
  }

  .cursor-aura {
    width: 80px;
    height: 80px;
  }
}
