body {
  margin: 0;
  padding: 30px;

  background: linear-gradient(
    to bottom,
    #78b9e8 0%,
    #b9ddf4 50%,
    #eef8ff 100%
  );

  background-attachment: fixed;
  min-height: 100vh;

  color: #12273b;
  font-family: Georgia, serif;
  text-align: center;

  overflow-x: hidden;
}


/* FALLING SNOW */

.snow,
.snow2 {
  position: fixed;
  top: 0;
  left: 0;

  width: 100vw;
  height: 100vh;

  pointer-events: none;
  z-index: 0;

  background-image:
    radial-gradient(4px 4px at 20px 30px, white 50%, transparent 51%),
    radial-gradient(3px 3px at 80px 120px, white 50%, transparent 51%),
    radial-gradient(5px 5px at 140px 70px, white 50%, transparent 51%),
    radial-gradient(3px 3px at 200px 160px, white 50%, transparent 51%),
    radial-gradient(4px 4px at 250px 40px, white 50%, transparent 51%),
    radial-gradient(2px 2px at 170px 180px, white 50%, transparent 51%),
    radial-gradient(3px 3px at 40px 170px, white 50%, transparent 51%);

  background-size: 300px 200px;
  animation: snowfall 10s linear infinite;
}

.snow2 {
  opacity: 0.45;
  background-size: 220px 170px;
  animation-duration: 16s;
}

@keyframes snowfall {
  from {
    background-position: 0 0;
  }

  to {
    background-position: 0 400px;
  }
}


/* KEEP SITE CONTENT ABOVE SNOW */

header,
main,
nav,
footer {
  position: relative;
  z-index: 1;
}


/* HEADER */

header {
  margin-bottom: 20px;
}

header p {
  font-size: 1.2rem;
  margin: 0 0 20px;
}


/* SPECIALS */

.specials {
  max-width: 900px;
  margin: 0 auto;
}


/* EACH LOGO / SPECIAL */

.special-link {
  display: block;
  width: fit-content;
  max-width: 100%;
  margin: 15px auto;
  text-decoration: none;
}

.special-logo {
  display: block;
  width: 600px;
  max-width: 90vw;
  height: auto;
  margin: 0 auto;
}


/* CLICKABLE LOGO HIGHLIGHT */

a.special-link .special-logo {
  transition:
    transform 0.2s ease,
    filter 0.2s ease;
}

a.special-link:hover .special-logo,
a.special-link:focus .special-logo {
  transform: scale(1.05);

  filter:
    drop-shadow(0 0 10px rgba(255, 255, 255, 0.95))
    drop-shadow(0 5px 10px rgba(0, 0, 0, 0.3));
}


/* COMING SOON */

.coming-soon {
  padding: 0;
  margin: 15px auto;
}

.coming-soon-text {
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: 6px;

  margin: 4px 0 18px;
}


/* BOTTOM NAVIGATION */

.bottom-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;

  gap: 12px;

  margin: 30px auto 20px;
}

.bottom-nav a {
  display: inline-block;

  padding: 10px 22px;

  color: #12273b;
  background: rgba(255, 255, 255, 0.55);

  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 6px;

  font-size: 0.95rem;
  font-weight: bold;
  letter-spacing: 2px;

  text-decoration: none;

  box-shadow:
    0 3px 8px rgba(0, 0, 0, 0.12);

  transition:
    transform 0.15s ease,
    background 0.15s ease,
    box-shadow 0.15s ease;
}

.bottom-nav a:hover,
.bottom-nav a:focus {
  background: rgba(255, 255, 255, 0.95);

  transform: translateY(-2px);

  box-shadow:
    0 0 10px rgba(255, 255, 255, 0.95),
    0 5px 10px rgba(0, 0, 0, 0.18);
}


/* FOOTER */

footer {
  margin-top: 20px;
  font-size: 0.9rem;
}


/* MOBILE */

@media (max-width: 700px) {
  body {
    padding: 15px;
  }

  header {
    margin-bottom: 10px;
  }

  .special-link {
    margin: 10px auto;
  }

  .coming-soon {
    margin: 10px auto;
  }

  .coming-soon-text {
    font-size: 1.2rem;
    letter-spacing: 4px;
    margin: 3px 0 14px;
  }

  .bottom-nav {
    gap: 8px;
    margin-top: 24px;
  }

  .bottom-nav a {
    padding: 9px 16px;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
  }
}

/* =========================
   CHARACTERS PAGE
   ========================= */

.page-header {
  margin-bottom: 30px;
}

.page-header h1 {
  font-size: 42px;
  letter-spacing: 6px;
  margin: 0 0 8px;
}

.page-header p {
  font-size: 18px;
  margin: 0;
}


/* CHARACTER GRID */

.character-grid {
  display: grid;

  grid-template-columns:
    repeat(auto-fit, minmax(240px, 1fr));

  gap: 24px;

  width: 100%;
  max-width: 1000px;

  margin: 0 auto;
}


/* CHARACTER CARDS */

.character-card {
  padding: 18px;

  background: rgba(255, 255, 255, 0.62);

  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 10px;

  box-shadow:
    0 4px 12px rgba(0, 0, 0, 0.12);

  backdrop-filter: blur(3px);

  overflow: hidden;
}


/* CHARACTER IMAGES */

.character-image {
  display: block;

  width: auto;
  max-width: 100%;

  height: 280px;
  max-height: 280px;

  object-fit: contain;

  margin: 0 auto 15px;
}


/* CHARACTER TEXT */

.character-info h2 {
  font-size: 26px;
  margin: 5px 0 10px;
}

.character-info p {
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
}


/* MOBILE */

@media (max-width: 700px) {

  .page-header h1 {
    font-size: 32px;
    letter-spacing: 4px;
  }

  .page-header p {
    font-size: 16px;
  }

  .character-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .character-card {
    padding: 15px;
  }

  .character-image {
    height: 220px;
    max-height: 220px;
  }

  .character-info h2 {
    font-size: 24px;
  }

  .character-info p {
    font-size: 15px;
  }
}

/* =========================
   ABOUT PAGE
   ========================= */

.about-page {
  width: 100%;
  max-width: 850px;
  margin: 0 auto;
}

.about-panel {
  padding: 30px 40px;

  background: rgba(255, 255, 255, 0.62);

  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 10px;

  box-shadow:
    0 4px 12px rgba(0, 0, 0, 0.12);

  backdrop-filter: blur(3px);

  text-align: left;
}

.about-panel h2 {
  font-size: 26px;
  letter-spacing: 2px;

  margin: 30px 0 10px;
}

.about-panel h2:first-child {
  margin-top: 0;
}

.about-panel p {
  font-size: 17px;
  line-height: 1.7;

  margin: 0 0 18px;
}


/* ABOUT PAGE MOBILE */

@media (max-width: 700px) {

  .about-panel {
    padding: 22px 20px;
  }

  .about-panel h2 {
    font-size: 22px;
  }

  .about-panel p {
    font-size: 16px;
    line-height: 1.6;
  }
}