@font-face {
  font-family: 'GalaxySprinkle';
  src: url('../fonts/GalaxySprinkle-1G9LZ.ttf');
}

body {
  margin: 0;
  font-family: 'Trebuchet MS', sans-serif;
  background: radial-gradient(circle at 50% 10%, #2b3370, #0b0f26 60%);
  color: #e0e8ff;
  overflow-x: hidden;
  line-height: 1.6;
}

.stars {
  position: fixed;
  inset: 0;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="3" height="3"><circle cx="1.5" cy="1.5" r="1.5" fill="white" opacity="0.8"/></svg>');
  background-size: 3px 3px;
  opacity: 0.15;
  animation: twinkle 4s infinite alternate;
  pointer-events: none;
}

@keyframes twinkle {
  from { opacity: 0.1; }
  to { opacity: 0.25; }
}

header {
  text-align: center;
  padding: 80px 20px;
  position: relative;
  animation: floaty 6s ease-in-out infinite;
}

@keyframes floaty {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

header::before {
  content: "";
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(120,180,255,0.25), rgba(0,0,0,0));
  filter: blur(25px);
  animation: pulse 4s infinite ease-in-out;
  z-index: -1;
}

@keyframes pulse {
  0% { opacity: 0.5; }
  50% { opacity: 0.9; }
  100% { opacity: 0.5; }
}

h1 {
  font-family: 'GalaxySprinkle', 'Trebuchet MS', sans-serif;
  font-size: 3.5rem;
  color: #c7d7ff;
  text-shadow: 0 0 20px rgba(170,205,255,0.8);
}

nav {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.nav-btn {
  padding: 12px 26px;
  font-size: 1.15rem;
  font-family: 'GalaxySprinkle', 'Trebuchet MS', sans-serif;
  color: #d8e4ff;
  background: rgba(40, 60, 120, 0.55);
  border: 2px solid rgba(150, 180, 255, 0.45);
  border-radius: 14px;
  text-decoration: none;
  text-shadow: 0 0 10px rgba(140,180,255,0.6);
  box-shadow: 0 0 20px rgba(120,150,255,0.25);
  backdrop-filter: blur(6px);
  transition: 0.25s ease, transform 0.2s ease;
}

.nav-btn:hover {
  color: white;
  background: rgba(90,130,255,0.7);
  border-color: rgba(200,220,255,0.9);
  box-shadow: 0 0 30px rgba(160,190,255,0.65);
  transform: translateY(-4px) scale(1.05);
}

.nav-btn:active {
  transform: scale(0.92) rotate(-2deg);
}

.section {
  max-width: 900px;
  margin: auto;
  padding: 50px 30px;
  background: rgba(25, 35, 80, 0.55);
  border: 1px solid rgba(140,170,255,0.25);
  border-radius: 22px;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 35px rgba(120,150,255,0.25);
  margin-bottom: 55px;
  animation: floaty2 8s infinite ease-in-out;
}

@keyframes floaty2 {
  0% { transform: translateY(0px); }
  50% { transform: translateY(6px); }
  100% { transform: translateY(0px); }
}

.section h2 {
  font-family: 'GalaxySprinkle', 'Trebuchet MS', sans-serif;
  font-size: 2.3rem;
  border-left: 6px solid #9cc8ff;
  padding-left: 12px;
  margin-bottom: 20px;
  text-shadow: 0 0 12px rgba(150,190,255,0.6);
}

p, li {
  font-size: 1.15rem;
  color: #e8eeff;
  text-shadow: 0 0 6px rgba(180,200,255,0.3);
}


.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}

.gallery-grid img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 0 30px rgba(140,170,255,0.3);
  transition: 0.35s ease;
}

.gallery-grid img:hover {
  transform: scale(1.07) rotate(1deg);
  box-shadow: 0 0 45px rgba(170,200,255,0.55);
}

.download-box {
  text-align: center;
  margin-top: 20px;
}

.download-btn {
  padding: 14px 32px;
  font-size: 1.2rem;
  font-family: 'GalaxySprinkle', sans-serif;
  color: #e3ebff;
  background: rgba(70, 120, 255, 0.55);
  border: 2px solid rgba(150, 190, 255, 0.5);
  border-radius: 14px;
  backdrop-filter: blur(6px);
  cursor: pointer;
  box-shadow: 0 0 22px rgba(150,180,255,0.35);
  transition: 0.25s ease;
}

.download-btn:hover {
  background: rgba(120,160,255,0.7);
  box-shadow: 0 0 32px rgba(170,200,255,0.65);
  transform: translateY(-3px) scale(1.05);
}

.download-btn:active {
  transform: scale(0.92);
}

.fanart-card {
  text-align: center;
}

.fan-credit {
  margin-top: 6px;
  font-size: 0.9rem;
  opacity: 0.85;
}


footer {
  text-align: center;
  padding: 20px;
  font-size: 0.95rem;
  opacity: 0.75;
  margin-bottom: 20px;
}




