#credits-screen {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: radial-gradient(ellipse at center, #0a1525 0%, #050510 100%);
}

#credits-panel {
  background: rgba(10,20,30,0.95);
  border: 2px solid #00ccff;
  border-radius: 12px;
  padding: 40px;
  width: 700px;
  max-width: 90vw;
  max-height: 85vh;
  overflow-y: auto;
}

#credits-panel h2 {
  font-size: 32px;
  color: #00ffcc;
  text-align: center;
  margin-bottom: 30px;
  text-shadow: 0 0 20px #00ffcc;
}

.credits-section {
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #1a3a4a;
}

.credits-section:last-child {
  border-bottom: none;
}

.credits-section h3 {
  font-size: 18px;
  color: #00ccff;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.credits-section p {
  font-size: 14px;
  color: #aaccdd;
  line-height: 1.6;
  margin: 8px 0;
}

.credits-section .credit-name {
  color: #00ffcc;
  font-weight: bold;
}

.credits-section .credit-detail {
  color: #7ab;
  font-size: 12px;
  margin-left: 20px;
}

#credits-back-btn {
  margin-top: 20px;
  width: 280px;
  padding: 15px 30px;
  font-size: 18px;
  font-family: inherit;
  background: linear-gradient(135deg, #0d1f30 0%, #1a3040 100%);
  color: #00ccff;
  border: 1px solid #00ccff;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s;
}

#credits-back-btn:hover {
  background: #00ccff;
  color: #000;
  box-shadow: 0 0 20px #00ccff;
}

#credits-panel::-webkit-scrollbar {
  width: 8px;
}

#credits-panel::-webkit-scrollbar-track {
  background: #0d1520;
  border-radius: 4px;
}

#credits-panel::-webkit-scrollbar-thumb {
  background: #1a3a4a;
  border-radius: 4px;
}

#credits-panel::-webkit-scrollbar-thumb:hover {
  background: #2a4a5a;
}

