/* Intro page styles */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  color: #e0e0e0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.game-container {
  max-width: 900px;
  width: 100%;
  padding: 20px;
  position: relative;
}

.office-scene {
  background: #2d3748;
  border: 4px solid #4a5568;
  border-radius: 8px;
  padding: 30px;
  position: relative;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

.pixel-art-container {
  display: flex;
  justify-content: space-around;
  align-items: flex-end;
  margin-bottom: 30px;
  min-height: 200px;
}

.character {
  text-align: center;
  animation: bounce 2s ease-in-out infinite;
}

.character.boss {
  animation-delay: 0.3s;
}

.character.you {
  animation-delay: 0.6s;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.pixel-avatar {
  width: 120px;
  height: 120px;
  background: #4ec9b0;
  border: 3px solid #2d3748;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  margin: 0 auto 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  position: relative;
}

.pixel-avatar.boss {
  background: #ce9178;
}

.pixel-avatar.you {
  background: #4ec9b0;
}

.character-name {
  font-family: 'Press Start 2P', cursive;
  font-size: 10px;
  color: #4ec9b0;
  text-transform: uppercase;
}

.speech-bubble {
  background: #1e1e1e;
  border: 3px solid #4ec9b0;
  border-radius: 12px;
  padding: 20px;
  margin: 20px 0;
  position: relative;
  min-height: 100px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.speech-bubble::before {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 40px;
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 15px solid #4ec9b0;
}

.speech-bubble.boss::before {
  border-top-color: #ce9178;
  left: auto;
  right: 40px;
}

.speech-bubble.boss {
  border-color: #ce9178;
}

.dialogue-text {
  font-size: 16px;
  line-height: 1.6;
  color: #e0e0e0;
}

.dialogue-text .highlight {
  color: #4ec9b0;
  font-weight: 600;
}

.dialogue-text .boss-highlight {
  color: #ce9178;
  font-weight: 600;
}

.typing-indicator {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #4ec9b0;
  border-radius: 50%;
  animation: blink 1s infinite;
  margin-left: 5px;
}

@keyframes blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

.requirements-panel {
  background: #252526;
  border: 2px solid #3e3e42;
  border-radius: 8px;
  padding: 25px;
  margin: 30px 0;
  animation: slideUp 0.6s ease-out;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.requirements-panel h3 {
  color: #4ec9b0;
  font-size: 20px;
  margin-bottom: 15px;
  font-weight: 600;
}

.requirements-list {
  list-style: none;
  padding: 0;
}

.requirements-list li {
  padding: 10px 0;
  padding-left: 30px;
  position: relative;
  color: #a0a0a0;
  font-size: 14px;
  line-height: 1.6;
}

.requirements-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #4ec9b0;
  font-weight: bold;
  font-size: 18px;
}

.cta-button {
  display: block;
  width: 100%;
  padding: 20px;
  background: linear-gradient(135deg, #4ec9b0 0%, #3aa890 100%);
  color: #000;
  border: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  margin-top: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(78, 201, 176, 0.3);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 4px 15px rgba(78, 201, 176, 0.3);
  }
  50% {
    box-shadow: 0 4px 25px rgba(78, 201, 176, 0.6);
  }
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(78, 201, 176, 0.5);
}

.cta-button:active {
  transform: translateY(0);
}

.hidden {
  display: none;
}

.fade-in {
  animation: fadeIn 0.5s ease-in;
}

.continue-indicator {
  text-align: center;
  margin-top: 20px;
  padding: 12px;
  color: #858585;
  font-size: 14px;
  animation: pulse 2s ease-in-out infinite;
  cursor: pointer;
  user-select: none;
}

.continue-indicator:hover {
  color: #4ec9b0;
}

