/* ==================== */
/* Reset & Base Styles  */
/* ==================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #000000;
  color: #dee5ff;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

/* ==================== */
/* Background Effects   */
/* ==================== */
.background {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.bokeh {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.12;
  pointer-events: none;
}

.bokeh-1 {
  width: 500px;
  height: 500px;
  background: #a3a6ff;
  top: -100px;
  left: -100px;
}

.bokeh-2 {
  width: 400px;
  height: 400px;
  background: #a28efc;
  bottom: 40px;
  right: -40px;
}

.bokeh-3 {
  width: 300px;
  height: 300px;
  background: #ffa5d9;
  top: 50%;
  left: 33%;
}

.gradient-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(6, 14, 32, 0.4), rgba(6, 14, 32, 1), #000000);
  pointer-events: none;
}

/* ==================== */
/* Main Container       */
/* ==================== */
.container {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 600px;
  padding: 32px;
  text-align: center;
}

/* ==================== */
/* Logo Section         */
/* ==================== */
.logo-section {
  margin-bottom: 64px;
}

.logo-pulse {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
  animation: pulse-animation 4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes pulse-animation {
  0%, 100% {
    opacity: 0.7;
    transform: scale(1);
    filter: drop-shadow(0 0 15px rgba(163, 166, 255, 0.3));
  }
  50% {
    opacity: 1;
    transform: scale(1.02);
    filter: drop-shadow(0 0 40px rgba(163, 166, 255, 0.6));
  }
}

.logo-glow {
  position: absolute;
  width: 128px;
  height: 128px;
  background: rgba(163, 166, 255, 0.2);
  border-radius: 50%;
  filter: blur(48px);
}

.play-icon {
  color: #a3a6ff;
  position: relative;
  z-index: 1;
}

.brand-text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -0.05em;
  background: linear-gradient(180deg, #dee5ff 0%, #a3a6ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-transform: lowercase;
  margin-top: 32px;
}

/* ==================== */
/* Loading Section      */
/* ==================== */
.loading-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

/* Progress Bar */
.progress-bar {
  position: relative;
  width: 100%;
  height: 6px;
  background-color: #192540;
  border-radius: 9999px;
  overflow: hidden;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
}

.shimmer {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(163, 166, 255, 0.8) 50%, transparent 100%);
  background-size: 200% 100%;
  animation: shimmer-flow 2.5s infinite ease-in-out;
  box-shadow: 0 0 15px rgba(163, 166, 255, 0.6);
}

@keyframes shimmer-flow {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* Loading Text */
.loading-text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #a3aac4;
  letter-spacing: 0.05em;
  font-style: italic;
}

/* Bounce Dots */
.bounce-dots {
  display: flex;
  gap: 6px;
  justify-content: center;
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  animation: bounce 1.4s ease-in-out infinite;
}

.dot-1 {
  background-color: rgba(163, 166, 255, 0.4);
  animation-delay: 0s;
}

.dot-2 {
  background-color: rgba(163, 166, 255, 0.6);
  animation-delay: 0.2s;
}

.dot-3 {
  background-color: rgba(163, 166, 255, 0.8);
  animation-delay: 0.4s;
}

@keyframes bounce {
  0%, 80%, 100% {
    transform: translateY(0);
    opacity: 0.8;
  }
  40% {
    transform: translateY(-10px);
    opacity: 1;
  }
}

/* ==================== */
/* Footer               */
/* ==================== */
.footer {
  position: fixed;
  bottom: 48px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  text-align: center;
}

.footer p {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: #6d758c;
  opacity: 0.4;
}

/* ==================== */
/* Corner Decorations   */
/* ==================== */
.corner {
  position: fixed;
  width: 128px;
  height: 128px;
  border: 2px solid rgba(163, 166, 255, 0.1);
  pointer-events: none;
  z-index: 10;
}

.corner-tl {
  top: 32px;
  left: 32px;
  border-right: none;
  border-bottom: none;
  border-radius: 8px 0 0 0;
}

.corner-br {
  bottom: 32px;
  right: 32px;
  border-left: none;
  border-top: none;
  border-radius: 0 0 8px 0;
}

/* ==================== */
/* Responsive           */
/* ==================== */
@media (max-width: 768px) {
  .container {
    padding: 24px;
  }

  .logo-section {
    margin-bottom: 48px;
  }

  .brand-text {
    font-size: 32px;
  }

  .loading-text {
    font-size: 12px;
  }

  .corner {
    width: 80px;
    height: 80px;
  }

  .corner-tl {
    top: 16px;
    left: 16px;
  }

  .corner-br {
    bottom: 16px;
    right: 16px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 16px;
  }

  .logo-section {
    margin-bottom: 32px;
  }

  .play-icon {
    width: 80px;
    height: 80px;
  }

  .brand-text {
    font-size: 24px;
  }

  .loading-text {
    font-size: 11px;
  }

  .footer {
    bottom: 24px;
  }

  .corner {
    width: 60px;
    height: 60px;
  }
}
