.home-container {
  max-width: 600px;
}

.conditioning-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 24px;
}

@media (max-width: 480px) {
  .conditioning-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

/* Loading Overlay Styles */
.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(8, 12, 20, 0.95);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  z-index: 9999;
  display: none; /* Controlled by JS */
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--color-text);
  animation: fadeIn 0.4s ease forwards;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.loader-animation {
  position: relative;
  width: 150px;
  height: 150px;
  margin-bottom: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Spinning Vinyl Record */
.vinyl-record {
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, #222 25%, #050505 30%, #1a1a1a 45%, #050505 50%, #151515 70%);
  border-radius: 50%;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.8), 0 0 15px var(--glass-glow);
  position: relative;
  animation: spin 3s linear infinite;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.vinyl-record::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 36px;
  height: 36px;
  background: var(--accent-cyan);
  border-radius: 50%;
  border: 4px solid #111;
  box-shadow: 0 0 10px rgba(0, 242, 254, 0.5);
}

.vinyl-record::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
}

/* Pulsing waves surrounding the record */
.pulse-wave {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid var(--accent-cyan);
  opacity: 0;
  animation: pulse 2s cubic-bezier(0.215, 0.610, 0.355, 1) infinite;
}

.pulse-wave:nth-child(2) {
  animation-delay: 0.6s;
}

.pulse-wave:nth-child(3) {
  animation-delay: 1.2s;
}

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

@keyframes pulse {
  0% {
    transform: scale(0.85);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

.loading-text {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
  background: linear-gradient(135deg, #fff, var(--accent-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  padding: 0 20px;
}

.loading-status {
  font-size: 15px;
  color: var(--color-muted);
  font-weight: 300;
  height: 20px;
  text-align: center;
  transition: opacity 0.3s ease;
  padding: 0 20px;
}

.loading-progress-bar-container {
  width: 250px;
  height: 4px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 2px;
  margin-top: 25px;
  overflow: hidden;
  position: relative;
}

.loading-progress-bar {
  width: 100%;
  height: 100%;
  background: var(--btn-gradient);
  position: absolute;
  left: -100%;
  animation: loadingProgress 2.5s infinite linear;
}

@keyframes loadingProgress {
  0% { left: -100%; }
  50% { left: 0; }
  100% { left: 100%; }
}
