/* Grid Component - REMOVED */

/* Solar System Component */
.solar-system {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 600px;
  width: 600px;
  z-index: 2;
  pointer-events: none;
}

.sun {
  position: absolute;
  top: 50%; 
  left: 50%;
  transform: translate(-50%, -50%);
  height: 100px;
  width: 100px;
  background-color: #E0E0E0;
  border-radius: 50%;
}

.orbit {
  position: absolute;
  top: 50%; 
  left: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
}

.planet {
  position: absolute;
  top: 50%; 
  left: 50%;
  height: 10px;
  width: 10px;
  border-radius: 50%;
  transform-origin: -150px;
  transform: translateX(-50%) translateY(-50%);
}

/* Orbit sizes */
.orbit:nth-child(2) { height: 150px; width: 150px; }
.orbit:nth-child(3) { height: 200px; width: 200px; }
.orbit:nth-child(4) { height: 250px; width: 250px; }
.orbit:nth-child(5) { height: 300px; width: 300px; }
.orbit:nth-child(6) { height: 350px; width: 350px; }
.orbit:nth-child(7) { height: 400px; width: 400px; }
.orbit:nth-child(8) { height: 450px; width: 450px; }
.orbit:nth-child(9) { height: 500px; width: 500px; }
.orbit:nth-child(10) { height: 550px; width: 550px; }

/* Planet animations */
.mercury { animation: orbit1 5s linear infinite; }
.venus   { animation: orbit2 7s linear infinite; }
.earth   { animation: orbit3 10s linear infinite; }
.mars    { animation: orbit4 15s linear infinite; }
.jupiter { animation: orbit5 20s linear infinite; }
.saturn  { animation: orbit6 25s linear infinite; }
.uranus  { animation: orbit7 30s linear infinite; }
.neptune { animation: orbit8 35s linear infinite; }
.pluto   { animation: orbit9 40s linear infinite; }

/* Agent System Component */
#agents {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

/* Headline Component - REMOVED */

/* Logo Component */
.logo-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  pointer-events: none;
  will-change: transform;
  backface-visibility: hidden;
}

.logo-svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 300px;
  max-height: 300px;
  width: auto;
  height: auto;
  filter: brightness(1.1) contrast(1.1);
  transition: transform 0.1s ease-out;
}

@media (max-width: 768px) {
  .logo-svg {
    max-width: 200px;
    max-height: 200px;
  }
}

@media (max-width: 480px) {
  .logo-svg {
    max-width: 150px;
    max-height: 150px;
  }
}

.audio-player {
  display: none;
}

.progress-container {
  height: 10px;
  padding: 2px;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.1);
}

.progress-bar {
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  width: 0;
  background: var(--fg-color);
  transition: width 0.1s linear;
}

.player-controls {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0 20px;
}

.player-button {
  background: none;
  border: 1px solid var(--fg-color);
  color: var(--fg-color);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: all 0.2s;
}

.player-button:hover {
  background: var(--fg-color);
  color: var(--bg-color);
}

.time-display {
  font-family: monospace;
  font-size: 12px;
  color: var(--fg-color);
  min-width: 100px;
}

.volume-control {
  width: 100px;
  height: 4px;
  -webkit-appearance: none;
  appearance: none;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  outline: none;
}

.volume-control::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--fg-color);
  cursor: pointer;
}

.volume-control::-moz-range-thumb {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--fg-color);
  cursor: pointer;
  border: none;
}

/* Splash Screen Component */
.splash-screen {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  background: var(--bg-color);
  color: var(--fg-color);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  font-family: 'Space Mono', monospace;
  transition: opacity 1s ease-out;
  margin: 0;
  padding: 0;
  overflow: hidden;
  box-sizing: border-box;
}

.splash-screen h1 {
  font-size: 48px;
  font-weight: bold;
  margin: 0 0 40px 0;
  padding: 0;
  text-align: center;
  color: var(--fg-color);
  letter-spacing: 4px;
  text-transform: uppercase;
}

.splash-logs {
  width: 80%;
  max-width: 600px;
  height: 200px;
  overflow-y: auto;
  margin-bottom: 30px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  font-family: 'Courier New', monospace;
}

.splash-log {
  padding: 4px 0;
  font-size: 14px;
  color: var(--fg-color);
  opacity: 0.8;
}

.splash-progress {
  width: 80%;
  max-width: 600px;
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 20px;
}

.splash-progress-fill {
  height: 100%;
  width: 0%;
  background: var(--fg-color);
  transition: width 0.3s ease;
  border-radius: 4px;
}

.splash-screen.fade-out {
  opacity: 0;
  pointer-events: none;
} 