
    body, html {
        margin: 0;
        padding: 0;
        height: 100%;
    }

    #loader {
        position: fixed;
        
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: #D0DDE7;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 9999;
        animation: fadeOut 0.5s ease forwards;
        animation-delay: 2s; 
    }

    .loading-text {
        color: #125079;
        font-size: 1.2rem;
        margin-top: 2rem; 
        font-family: monospace;
        text-align: center;

    }

    .spinner {
        border: 8px solid #f3f3f3;
        border-top: 8px solid #125079;
        border-radius: 50%;
        width: 65px;
        height: 65px;
        animation: spin 1.2s linear infinite;
    }

    @keyframes spin {
        0% { transform: rotate(0deg); }
        100% { transform: rotate(360deg); }
    }

    @keyframes fadeOut {
        to {
            opacity: 0;
            visibility: hidden;
        }
    }

    #content {
        opacity: 0;
        animation: fadeIn 0.5s ease forwards;
        animation-delay: 2.5s;
        padding: 20px;
    }

    @keyframes fadeIn {
        to {
            opacity: 1;
        }
    }


.text a {
    display: inline-block;
    font-size: 1em;
    background: #fff;
    padding: 10px 30px;
    text-decoration: none;
    color: #111;
    margin-top: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: 0.2s;
}

.text a:hover {
    letter-spacing: 6px;
}

nav a {
    color: #cadfea;
    text-decoration: none;
    padding: 30px;
}

nav a:hover {
    text-decoration: overline;
    color: #9CC1E1;
    text-shadow: 2px 2px 5px #9CC1E1
}

.nav-links { 
  display: none;
  transform: translateY(20px);
  transition: transform 0.2s ease-in-out;
 } 

.nav-links.active { 
  display: flex; 
  flex-direction: column; 
  transform: translateY(0);
} 

body {
  font-family: sans-serif;
  margin: 0;
}

.menu-btn {
  width: 30px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 25px;
  margin: 25px;
}

.bar {
  height: 10px;
  background: #125079;
  border-radius: 9px;
  transition: all 0.3s ease;
}

.menu {
  position: fixed;
  top: -100%;
  left: 0;
  width: 100%;
  background: #E2DBB9;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 0;
  transition: top 0.4s ease;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.menu a {
  padding: 15px;
  text-decoration: none;
  color: #125079;
  font-size: 20px;
}

.menu.show {
  top: 0;
}

.menu-btn.open .bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.menu-btn.open .bar:nth-child(2) {
  opacity: 0;
}
.menu-btn.open .bar:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}


@media(max-width: 798px){
    .showcase,
    .showcase header {
        padding: 40px;
    }

    .text h2 {
        font-size: 3em;
    }

    .text h3 {
        font-size: 2em;
    }
}

h1 {
    color: #125079;
    font-size: 80px;
    padding-top: 20px;
    background: #D9D9D9;
}

img {
  padding-top: 30px;
  width: 200px;
}


body {
  font-family: Georgia, serif;
  background: #125079;
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

@import url('https://fonts.googleapis.com/css2?family=Baloo+2:wght@800&family=Nunito:wght@400;600&display=swap');

:root {
  --sky: #b8d8e8;
  --navy: #1a4a6b;
  --cream: #cadfea;
  --white: #125079;
  --r: 14px;
  --s: 0 4px 18px rgba(26,74,107,0.13);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body { font-family: 'Nunito', sans-serif; background: var(--sky); color: var(--navy); overflow-x: hidden; }

h1, h2, h3, nav a, footer { font-family: 'Baloo 2', cursive; }


nav {

background: var(--white); 
display: flex; 
justify-content: center; 
gap: 2.5rem; padding: 1rem;
position: sticky; top: 0; 
z-index: 100; 
box-shadow: 0 2px 10px rgba(26,74,107,0.08); 
}

nav a { 

font-size: 1rem; 
text-decoration: none; 
letter-spacing: 1px; 
padding-bottom: 3px; 
position: relative; 
}

nav a::after { 
content: ''; 
position: absolute; 
bottom: 0; left: 0; 
width: 0; 
height: 2px; 
background: var(--navy); 
transition: width 0.3s;
}

nav a:hover::after { 
width: 100%; 
}

section { 
max-width: 860px; 
margin: 0 auto 3rem; 
padding: 0 1.5rem; 
padding-top: 50px;
}

section h2 { 
font-size: 1.4rem; 
margin-bottom: 1.2rem; 
letter-spacing: 1px; 
}

#hero, #about { 
display: grid; 
grid-template-columns: 1fr 1fr; 
gap: 1.5rem; 
align-items: center; 
}

.ep-grid { 
display: grid; 
grid-template-columns: 1fr 1fr; 
gap: 1.3rem; 
}

.merch-grid { 
display: grid; 
grid-template-columns: repeat(3, 1fr); 
gap: 1.3rem;
 }

.hero-img, .about-img { 
width: 100%; 
border-radius: var(--r); 
box-shadow: var(--s); 
transition: transform 0.4s;
}

.hero-img:hover { 
transform: scale(1.03); 
}

.about-img:hover { 
transform: scale(1.03) rotate(1deg);
}

.text-box { 
background: var(--navy); 
border-radius: var(--r); 
padding: 1.6rem 1.8rem; 
box-shadow: var(--s); 
line-height: 1.7; 
font-size: 0.97rem;
}

.text-box h3 { 
font-size: 1.3rem; 
margin-bottom: 0.6rem; 
}

.ep-card, .merch-card { 
background: var(--navy); 
border-radius: var(--r); 
overflow: hidden; 
box-shadow: var(--s); 
transition: transform 0.35s;
}

.ep-card:hover, .merch-card:hover { 
transform: translateY(-5px); 
}

.ep-card img, .merch-card img { 
width: 100%; 
display: block; 
}

.ep-card p { 
padding: 0.8rem 1rem; 
font-size: 0.88rem; 
line-height: 1.5; 
}

.merch-card p { 
padding: 0.8rem; 
font-size: 0.85rem; 
line-height: 1.5; 
text-align: center; 
}

body {
  font-family: Arial, sans-serif;
  background: #D0DDE7;
}

#characters {
  width: 100%;
  height: 100%;
  margin: 40px auto;
  padding: 20px;
  background: #E2DBB9;
  border: 3px solid #9AB2C8;
}

h2 {
  margin-top: 0;
}

h3{
  color: #cadfea;
}

.carousel {
  display: flex;
  align-items: center;
  gap: 10px;
}

.carousel img{
  object-fit: cover;
}

.track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 10px;
}

.track::-webkit-scrollbar {
  display: none;
}

.track img {
  width: 200px;
  height: 140px;
  object-fit: cover;
  cursor: pointer;
  transition: transform 0.3s;
}

.track img:hover {
  transform: scale(1.08);
}

.track img:hover::after {
  content: attr(data-name);
}

button {
  font-size: 30px;
  border: none;
  background: none;
  cursor: pointer;
  color: #125079;
}

#description {
  margin-top: 20px;
  padding: 25px;
  text-align: center;
  background: #9fb6c9;
  font-size: 18px;
  color: #125079;
}

.wave-text {
  text-align: center;
  font-size: 2rem;
  color: #125079;

  animation: waveSlide 1.8s ease-in-out infinite;
}

@keyframes waveSlide {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }
}

footer { background: var(--navy); color: var(--cream); text-align: center; padding: 1.5rem; font-size: 0.95rem; letter-spacing: 1px; }

.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s, transform 0.7s; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 600px) {
  #hero, #about { grid-template-columns: 1fr; }
  .ep-grid { grid-template-columns: 1fr; }
  .merch-grid { grid-template-columns: 1fr 1fr; }
}

p{
    color: #cadfea;
}