/* Modern Credits Page Styling */
body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  background: #edf2f7;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  line-height: 1.6;
}

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 30px;
}

nav {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-top: 60px;
}

nav a {
  color: white;
}

/* Back Link */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 30px;
  padding: 10px 20px;
  background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
  color: white;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid #ffd700;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  justify-self: flex-start;
}

.back-link:hover {
  transform: translateY(-2px);
  color: white;
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
  border-color: #ffed4e;
}

/* Page Title */
h1 {
  font-family: "Orbitron", monospace;
  font-weight: 900;
  color: #1a202c;
  font-size: 2.5em;
  margin: 0 0 15px 0;
  letter-spacing: 1px;
}

.page-subtitle {
  color: #4a5568;
  font-size: 1.1em;
  margin: 0 0 40px 0;
}

/* Section Headers */
header {
  color: white;
  margin: 0 auto 80px;
  padding: 40px 30px;
  width: 100%;
  background: #718096;
  box-sizing: border-box;
}

header .header-inner {
  max-width: 900px;
  margin: 0 auto;
}

h2 {
  font-family: "Orbitron", monospace;
  font-weight: 700;
  color: #1a202c;
  font-size: 1.8em;
  margin: 50px 0 25px 0;
  padding-bottom: 15px;
  border-bottom: 3px solid #ffd700;
  position: relative;
}

h2::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, #ffd700 0%, transparent 100%);
}

/* Credits List */
#sound-credit-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.card {
  margin-bottom: 20px;
  padding: 20px;
  background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
  border-radius: 12px;
  border-left: 4px solid #4a5568;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

/* Konami Easter Egg Credits */
.konami-credit {
  background: linear-gradient(135deg, #fff3cd 0%, #ffe69c 100%);
  border-left: 4px solid #ff9800;
  box-shadow: 0 4px 15px rgba(255, 152, 0, 0.15);
  position: relative;
  animation: konamiGlow 2s ease-in-out infinite;
}

@keyframes konamiGlow {
  0%,
  100% {
    box-shadow: 0 4px 15px rgba(255, 152, 0, 0.15);
  }
  50% {
    box-shadow: 0 6px 20px rgba(255, 152, 0, 0.3);
  }
}

.konami-credit::before {
  content: "🎮 Easter Egg";
  display: block;
  font-size: 0.9em;
  font-weight: 700;
  color: #ff9800;
  margin-bottom: 8px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Sound Name */
.sound-name {
  font-weight: 700;
  font-size: 1.1em;
  color: #1a202c;
  margin-bottom: 8px;
  display: block;
}

/* Links */
a {
  color: #1a202c;
  font-weight: 600;
  transition: all 0.2s ease;
  border-bottom: 2px solid transparent;
}

a:hover {
  color: #1a202c;
}

/* License Info */
.license {
  color: #718096;
  font-size: 0.9em;
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

/* License Information Section */
.license-info {
  background: linear-gradient(135deg, #e6f7ff 0%, #d1f0ff 100%);
  padding: 25px;
  border-radius: 12px;
  margin-top: 30px;
  border-left: 4px solid #3182ce;
}

.license-info p {
  margin: 15px 0;
  color: #2d3748;
  line-height: 1.8;
}

.license-info strong {
  color: #1a202c;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 5px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  nav {
    flex-direction: column;
  }

  .container {
    padding: 30px 20px;
    margin: 20px 10px;
    border-radius: 12px;
  }

  h1 {
    font-size: 2em;
  }

  h2 {
    font-size: 1.5em;
    margin: 30px 0 20px 0;
  }

  .card {
    padding: 15px;
    margin-bottom: 15px;
  }

  .back-link {
    padding: 8px 16px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.6em;
  }

  .page-subtitle {
    font-size: 1em;
  }

  .card {
    padding: 12px;
  }

  .sound-name {
    font-size: 1em;
  }
}
