/* Main CSS file that imports all other CSS modules */

@import 'base.css';
@import 'game-board.css';
@import 'game-hud.css';
@import 'menu.css';
@import 'animations.css';
@import 'responsive.css';

/* Game HUD Elements */
/* ... existing styles ... */

/* Particle Container */
#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1; /* Position behind HUD/Menus (which likely have higher z-index) but above canvas */
}

/* Achievements Modal Styles - Minimal Text, Visual, Modern */
.achievements-container {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  background: none;
  border-radius: 0;
  box-shadow: none;
  padding: 0 0 32px 0;
  color: #fff;
  font-family: 'Montserrat', 'Exo 2', 'Orbitron', Arial, sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.achievements-header-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 8px;
}
.achievements-title {
  font-size: 2.8em;
  letter-spacing: 2px;
  color: #00fff7;
  text-shadow: 0 0 16px #00fff7, 0 0 32px #00fff7a0;
  margin: 32px 0 0 0;
}
.achievements-info {
  font-size: 1.3em;
  color: #b8eaff;
  cursor: help;
  opacity: 0.7;
  transition: opacity 0.2s;
  margin-top: 8px;
}
.achievements-info:hover {
  opacity: 1;
}
.goals-header {
  font-size: 1.5em;
  color: #ffb300;
  margin: 28px 0 18px 0;
  letter-spacing: 1px;
  text-shadow: 0 0 8px #ffb300a0;
  text-align: center;
}
.achievements-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
  width: 100%;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.achievement-item {
  display: flex;
  align-items: center;
  background: linear-gradient(90deg, #1a233a 60%, #232b4a 100%);
  border-radius: 14px;
  padding: 18px 24px;
  font-size: 1.18em;
  box-shadow: 0 2px 12px #00fff733, 0 1px 2px #000a;
  border: 2px solid #00fff7a0;
  min-height: 56px;
  gap: 18px;
  position: relative;
}
.achievement-icon {
  font-size: 2em;
  margin-right: 18px;
  color: #b8eaff;
  filter: drop-shadow(0 0 6px #00fff7a0);
}
.achievement-item.unlocked .achievement-icon {
  color: #00ff7f;
  filter: drop-shadow(0 0 8px #00ff7f);
}
.achievement-item .milestone {
  font-weight: bold;
  color: #ffb300;
  font-size: 1.2em;
  letter-spacing: 1px;
  margin-right: 18px;
}
.achievement-progressbar {
  flex: 1 1 auto;
  height: 16px;
  background: #16203a;
  border-radius: 8px;
  margin: 0 18px 0 0;
  overflow: hidden;
  position: relative;
  box-shadow: 0 0 6px #00fff733;
}
.achievement-progressbar-inner {
  height: 100%;
  background: linear-gradient(90deg, #00fff7 0%, #00ff7f 100%);
  border-radius: 8px;
  transition: width 0.4s cubic-bezier(.4,2,.6,1);
  box-shadow: 0 0 8px #00fff7a0;
}
.achievement-progressbar-label {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-family: 'Orbitron', monospace;
  font-size: 1em;
  text-shadow: 0 0 4px #000a;
  pointer-events: none;
}
.achievement-item.unlocked {
  background: linear-gradient(90deg, #1a3a23 60%, #2b4a23 100%);
  border: 2.5px solid #00ff7f;
  box-shadow: 0 0 18px #00ff7f99, 0 2px 8px #000a;
}
.achievement-badge {
  background: #00ff7f;
  color: #1a3a23;
  font-weight: bold;
  font-size: 1em;
  border-radius: 8px;
  padding: 4px 14px;
  margin-left: 18px;
  box-shadow: 0 0 8px #00ff7f99;
  letter-spacing: 1px;
  text-shadow: 0 1px 2px #fff8;
  animation: pop-badge 0.5s cubic-bezier(.4,2,.6,1);
}
@keyframes pop-badge {
  0% { transform: scale(0.7); opacity: 0; }
  80% { transform: scale(1.15); opacity: 1; }
  100% { transform: scale(1); opacity: 1; }
}
.achievements-note.subtle {
  margin: 18px 0 0 0;
  font-size: 1em;
  color: #b8eaff;
  text-align: center;
  opacity: 0.5;
  letter-spacing: 1px;
}
.menu-back {
  margin-top: 28px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 20px;
}
.menu-back li {
  margin-bottom: 0;
  margin-right: 0;
}

/* Responsive adjustments */
@media (max-width: 900px) {
  .achievements-container {
    max-width: 98vw;
    padding: 0 0 24px 0;
  }
  .achievements-list {
    max-width: 98vw;
  }
}
@media (max-width: 600px) {
  .achievements-title {
    font-size: 2em;
    margin-top: 18px;
  }
  .goals-header {
    font-size: 1.1em;
    margin: 18px 0 10px 0;
  }
  .achievements-list {
    gap: 10px;
    max-width: 99vw;
  }
  .achievement-item {
    font-size: 1em;
    padding: 12px 8px;
    min-height: 38px;
  }
  .achievement-icon {
    font-size: 1.3em;
    margin-right: 8px;
  }
  .achievement-badge {
    font-size: 0.9em;
    margin-left: 8px;
    padding: 3px 8px;
  }
  .menu-back {
    gap: 16px;
    margin-top: 16px;
  }
  .achievements-note.subtle {
    font-size: 0.92em;
    margin: 10px 0 0 0;
  }
  .superpower-name {
    font-size: 0.95em;
    min-width: 70px;
    margin: 0 6px 0 0;
  }
  .menu-back li {
    margin-bottom: 7px;
  }
}

.superpower-name {
  font-size: 1.08em;
  color: #00fff7;
  font-weight: 600;
  margin: 0 18px 0 0;
  letter-spacing: 0.5px;
  text-shadow: 0 0 8px #00fff7a0;
  min-width: 120px;
  display: inline-block;
}

#reward-bar {
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  background: rgba(10, 20, 40, 0.82);
  border-radius: 16px;
  box-shadow: 0 2px 16px 2px #000b, 0 0 8px #00fff733;
  padding: 6px 14px;
  z-index: 20;
  min-width: 0;
  max-width: 95vw;
  justify-content: center;
  align-items: center;
  border: 1.5px solid #222a44;
}
.reward-slot {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 38px;
  min-height: 38px;
  margin: 0 2px;
  position: relative;
  background: linear-gradient(180deg, #232b4a 60%, #181c2a 100%);
  border-radius: 50%;
  box-shadow: 0 2px 6px #000a, 0 0 4px #00fff733;
  border: 1.5px solid #222a44;
  transition: box-shadow 0.2s, border 0.2s, background 0.2s;
  width: 38px;
  height: 38px;
  justify-content: center;
}
.reward-slot.unlocked {
  border: 2px solid #00ff7f;
  box-shadow: 0 0 8px #00ff7f99, 0 2px 8px #000a;
  background: linear-gradient(180deg, #233a23 60%, #1a2a1a 100%);
}
.reward-slot.active {
  border: 2px solid #ffb300;
  box-shadow: 0 0 12px #ffb300, 0 2px 8px #000a;
}
.reward-key {
  font-size: 0.85em;
  color: #b8eaff;
  background: #16203a;
  border-radius: 6px;
  padding: 0 6px;
  margin-bottom: 0;
  font-family: 'Orbitron', monospace;
  box-shadow: 0 0 2px #00fff733;
  letter-spacing: 1px;
  position: absolute;
  top: 2px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  opacity: 0.85;
}
.reward-icon {
  font-size: 1.25em;
  color: #00fff7;
  filter: drop-shadow(0 0 4px #00fff7a0);
  transition: filter 0.2s, color 0.2s;
  margin-top: 8px;
  margin-bottom: 2px;
}
.reward-slot.locked .reward-icon {
  color: #444a5a;
  filter: grayscale(1) brightness(0.7);
  opacity: 0.5;
}
.reward-slot.unlocked .reward-icon {
  color: #00ff7f;
  filter: drop-shadow(0 0 8px #00ff7f);
  opacity: 1;
}
.reward-slot.active .reward-icon {
  color: #ffb300;
  filter: drop-shadow(0 0 12px #ffb300);
}
.reward-slot .reward-label {
  display: none;
  position: absolute;
  bottom: -28px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(10,20,40,0.95);
  color: #b8eaff;
  font-size: 0.92em;
  padding: 3px 10px;
  border-radius: 8px;
  white-space: nowrap;
  box-shadow: 0 2px 8px #000a;
  pointer-events: none;
  z-index: 10;
}
.reward-slot:hover .reward-label {
  display: block;
}
@media (max-width: 700px) {
  #reward-bar {
    padding: 4px 2vw;
    gap: 4px;
  }
  .reward-slot {
    min-width: 28px;
    min-height: 28px;
    width: 28px;
    height: 28px;
  }
  .reward-icon {
    font-size: 0.95em;
    margin-top: 4px;
  }
  .reward-key {
    font-size: 0.7em;
    top: 1px;
  }
} 