/* Base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  background-color: #ff7e33; /* Rangoo orange */
  color: white;
  min-height: 100vh;
  overflow: hidden;
  position: relative;
}

/* Noise background */
body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ff8a61;
  z-index: 0;
}

.container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 2rem;
  position: relative;
  z-index: 1;
}

/* Decorative circles */
.decorative-circle {
  position: absolute;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  filter: blur(50px);
}

.top-right {
  width: 800px;
  height: 800px;
  top: -400px;
  right: -400px;
}

.bottom-left {
  width: 600px;
  height: 600px;
  bottom: -300px;
  left: -300px;
}

/* Content styling */
.content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease, transform 1s ease;
}

.content.show {
  opacity: 1;
  transform: translateY(0);
}

/* Logo styling */
.logo-container {
  width: 320px;
  margin-bottom: 3rem;
}

.logo {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.08));
}

/* Status message styling */
.status-message {
  text-align: center;
}

.status-message h1 {
  font-size: 1.875rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.status-message p {
  font-size: 1.125rem;
  font-weight: 300;
  opacity: 0.8;
  max-width: 28rem;
  margin: 0 auto 2rem;
}

/* Loading indicator */
.loading-container {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 9999px;
  animation: pulse 2s infinite;
}

.loading-spinner {
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: white;
  animation: spin 1s linear infinite;
}

/* Footer styling */
.footer {
  position: absolute;
  bottom: 1.5rem;
  font-size: 0.875rem;
  opacity: 0.5;
  transition: opacity 0.5s ease;
  transform: translateY(20px);
  opacity: 0;
}

.footer.show {
  opacity: 0.5;
  transform: translateY(0);
}

/* Animations */
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.8;
  }
}

/* Responsive adjustments */
@media (max-width: 640px) {
  .logo-container {
    width: 256px;
  }
  
  .status-message h1 {
    font-size: 1.5rem;
  }
  
  .status-message p {
    font-size: 1rem;
  }
}