/* Customization Screen Styles */
.customization-screen {
  background-image: url("../images/background_kokok-03.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 100vh;
  padding: 2rem;
}

.customization-header {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 3rem;
  animation: fadeInDown 0.6s ease-out both;
}

.customization-header h1 {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--primary-yellow);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.customization-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 3rem;
  max-width: 1400px;
  margin: 0 auto 3rem;
}

.vehicles-section {
  border: none;
  border-radius: 0;
  padding: 2rem;
  background: rgba(0, 0, 0, 0.2);
}

.ships-section {
  border-color: var(--primary-green);
  animation-delay: 0.2s;
}

.ufos-section {
  border-color: #ef4444;
  animation-delay: 0.4s;
}

.vehicles-section h2 {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
}

.ships-section h2 {
  color: var(--primary-green);
}

.ufos-section h2 {
  color: #ef4444;
}

.vehicles-grid {
  display: grid;
  gap: 1rem;
}

.vehicle-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border: none;
  border-radius: 0;
  cursor: pointer;
}

/* Efectos de hover removidos */

.vehicle-card.selected {
  border-color: var(--primary-yellow);
  background: rgba(251, 191, 36, 0.2);
}

.vehicle-card.unlocked {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.05);
}

.vehicle-card.locked {
  border-color: rgba(107, 114, 128, 0.6);
  background: rgba(0, 0, 0, 0.3);
  opacity: 0.6;
  cursor: not-allowed;
}

.vehicle-image {
  width: 64px;
  height: 64px;
  position: relative;
}

.vehicle-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.vehicle-card.locked .vehicle-image img {
  filter: grayscale(100%) opacity(0.5);
}

.vehicle-info {
  flex: 1;
}

.vehicle-name {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.25rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
}

.vehicle-card.unlocked .vehicle-name {
  color: var(--text-white);
}

.vehicle-card.locked .vehicle-name {
  color: #6b7280;
}

.vehicle-unlock {
  font-size: 0.875rem;
  font-weight: 600;
  color: #9ca3af;
}

.vehicle-status {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
}

.vehicle-status .icon-check {
  color: var(--primary-yellow);
  font-size: 1.5rem;
}

.vehicle-status .icon-lock {
  color: #6b7280;
  font-size: 1.25rem;
}

.unlock-info {
  max-width: 1000px;
  margin: 0 auto;
  border: none;
  border-radius: 0;
  padding: 2rem;
  background: rgba(0, 0, 0, 0.2);
}

.unlock-info h3 {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-cyan);
  margin-bottom: 1.5rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
}

.unlock-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.unlock-item {
  text-align: center;
  padding: 1.5rem;
  border: none;
  border-radius: 0;
}

.unlock-item h4 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
}

.unlock-details .unlock-item:first-child h4 {
  color: var(--primary-green);
}

.unlock-details .unlock-item:last-child h4 {
  color: #ef4444;
}

.unlock-item p {
  color: var(--text-gray);
  font-size: 0.875rem;
  font-weight: 600;
}
