/* style.css */

body {
  background-color: #0a0a0a;
  color: #e0f7fa;
  font-family: 'Verdana', sans-serif;
  margin: 0;
  padding: 0;
}

header {
  text-align: center;
  padding: 2rem;
  background: linear-gradient(90deg, #00cfff, #0066ff);
  color: white;
  text-shadow: 0 0 5px #00f7ff;
}

.tagline {
  font-style: italic;
  opacity: 0.8;
}

main {
  max-width: 900px;
  margin: 2rem auto;
  padding: 1rem;
}

section {
  margin-bottom: 2rem;
  padding: 1rem;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
}

ul {
  list-style: none;
  padding-left: 0;
}

ul li {
  padding: 0.5rem 0;
}

a {
  color: #00cfff;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

footer {
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
  color: #a0e0ff;
  background-color: #001122;
}

.credits-box {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 1rem;
  border-radius: 10px;
  text-align: center;
  transition: box-shadow 1s ease-in-out;
}

.credits-box:hover {
  box-shadow: 0 0 20px #00f7ff, 0 0 30px #00ffff;
}

.download-btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.8rem 1.5rem;
  background-color: #00cfff;
  color: #001122;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 0 10px #00f7ff;
  transition: transform 0.2s, box-shadow 0.2s;
}

.download-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 0 20px #00f7ff, 0 0 30px #00ffff;
}
/* Credits buttons */

.credits-buttons {
  margin-top: 1.5rem;
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 0.7rem 1.4rem;
  background: linear-gradient(90deg, #00cfff, #0066ff);
  color: #001122;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 0 10px #00f7ff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: scale(1.08);
  box-shadow: 0 0 20px #00f7ff, 0 0 30px #00ffff;
}

.btn-secondary {
  background: linear-gradient(90deg, #444, #222);
  color: #e0f7fa;
  box-shadow: 0 0 10px #0088aa;
}

.btn-secondary:hover {
  box-shadow: 0 0 20px #00cfff;
}
