body, html {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  background-color: #030308;
  color: white;
  font-family: 'Inter', sans-serif;
  overflow: hidden;
}

#app-root {
  width: 100%;
  height: 100%;
  position: relative;
}

#visual-canvas {
  width: 100%;
  height: 100%;
  display: block;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  z-index: 10;
}

#phase-text {
  font-size: clamp(2.5rem, 10vw, 4rem);
  font-weight: 200;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
  opacity: 0.9;
  transition: color 1s ease, text-shadow 1s ease;
  text-align: center;
  padding: 0 1rem;
}

#start-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(3, 3, 8, 0.85);
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 20;
  pointer-events: auto;
  transition: opacity 1s ease;
  gap: 2rem;
}

.mood-selector {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.mood-btn {
  background: transparent;
  color: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 1rem 2rem;
  font-size: 1rem;
  letter-spacing: 0.2em;
  font-weight: 300;
  cursor: pointer;
  border-radius: 50px;
  transition: all 0.3s ease;
  font-family: 'Inter', sans-serif;
}

.mood-btn:hover {
  background: rgba(255, 255, 255, 0.05);
  color: white;
}

.mood-btn.active {
  border-color: white;
  color: white;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
}

#start-btn {
  background: transparent;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 1.5rem 4rem;
  font-size: 1.2rem;
  letter-spacing: 0.3em;
  font-weight: 200;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Inter', sans-serif;
}

#start-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

#menu-btn {
  position: absolute;
  top: 2rem;
  left: 2rem;
  background: transparent;
  color: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.8rem 1.5rem;
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  font-weight: 300;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.3s ease;
  z-index: 15;
  pointer-events: auto;
}

@media (max-width: 600px) {
  .mood-selector {
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
    width: 80%;
  }
  .mood-btn {
    padding: 1rem 1.5rem;
    font-size: 1rem;
    width: 100%;
  }
  #start-btn {
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
    width: 80%;
  }
  #menu-btn {
    top: 1rem;
    left: 1rem;
  }
}

#menu-btn:hover {
  color: white;
  border-color: white;
  background: rgba(255, 255, 255, 0.1);
}

.hidden {
  opacity: 0 !important;
  pointer-events: none !important;
}
