*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --navy:      #0e1a3a;
  --navy-mid:  #152040;
  --gold:      #f5c842;
  --gold-soft: #fde68a;
  --white:     #ffffff;
  --muted:     #8fa4cc;
}

html, body {
  height: 100%;
}

body {
  font-family: 'Nunito', sans-serif;
  background-color: var(--navy);
  color: var(--white);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* ── Stars background ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 15% 20%, rgba(245,200,66,0.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 40% 8%,  rgba(245,200,66,0.4) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 65% 15%, rgba(245,200,66,0.6) 0%, transparent 100%),
    radial-gradient(1px 1px at 80% 5%,  rgba(245,200,66,0.3) 0%, transparent 100%),
    radial-gradient(1px 1px at 90% 30%, rgba(245,200,66,0.4) 0%, transparent 100%),
    radial-gradient(1px 1px at 25% 50%, rgba(245,200,66,0.3) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 55% 55%, rgba(245,200,66,0.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 75% 70%, rgba(245,200,66,0.3) 0%, transparent 100%),
    radial-gradient(1px 1px at 10% 80%, rgba(245,200,66,0.4) 0%, transparent 100%),
    radial-gradient(1px 1px at 92% 85%, rgba(245,200,66,0.3) 0%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

/* ── Header ── */
.site-header {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2.5rem 1.5rem 1rem;
}

.header-tagline {
  position: absolute;
  bottom: -0.25rem;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  font-size: clamp(0.75rem, 1.8vw, 0.95rem);
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.04em;
}

.lang-switcher {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.lang-btn {
  background: none;
  border: none;
  color: var(--muted);
  font-family: 'Nunito', sans-serif;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  cursor: pointer;
  padding: 0.25rem 0.1rem;
  transition: color 0.2s;
}

.lang-btn:hover,
.lang-btn.active {
  color: var(--gold);
}

.lang-divider {
  color: rgba(255,255,255,0.2);
  font-size: 0.75rem;
}

.logo {
  max-width: 320px;
  width: 100%;
  height: auto;
  mix-blend-mode: screen;
}

/* ── Hero ── */
.hero {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  padding: 1rem 1.5rem 3.5rem;
}

.hero-image-wrap {
  position: relative;
  width: 100%;
  max-width: 860px;
  border-radius: 2rem;
  box-shadow:
    0 0 0 1px rgba(245,200,66,0.15),
    0 12px 60px rgba(0, 0, 0, 0.6),
    0 0 80px rgba(245,200,66,0.08);
}

.hero-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  border-radius: 2rem;
  overflow: hidden;
}


.hero-text {
  text-align: center;
  max-width: 540px;
}

.hero-text h1 {
  font-size: clamp(1.6rem, 4.5vw, 2.4rem);
  font-weight: 900;
  color: var(--gold);
  line-height: 1.2;
  margin-bottom: 0.6rem;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 20px rgba(245,200,66,0.3);
}

.hero-text p {
  font-size: clamp(0.95rem, 2.5vw, 1.15rem);
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ── Characters Slider ── */
.characters {
  position: relative;
  z-index: 1;
  padding: 0 1rem 3rem;
  text-align: center;
}

.characters-heading {
  font-size: clamp(1.3rem, 3.5vw, 2rem);
  font-weight: 900;
  color: var(--gold);
  letter-spacing: 0.05em;
  margin-bottom: 2rem;
  text-shadow: 0 2px 20px rgba(245,200,66,0.3);
}

.slider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto;
}

.slider-track-wrap {
  flex: 1;
  overflow: hidden;
  border-radius: 1.5rem;
}

.slider-track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide {
  min-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.slide-img-wrap {
  width: 100%;
  max-width: 600px;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(245,200,66,0.12),
    0 12px 50px rgba(0,0,0,0.6);
}

.slide-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

.slide-name {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-shadow: 0 2px 16px rgba(0,0,0,0.5);
  margin-bottom: 0.5rem;
}

.slide-story {
  font-size: clamp(0.9rem, 2vw, 1.05rem);
  font-weight: 600;
  color: var(--muted);
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto;
}

.slider-btn {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
  font-size: 1.4rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.15s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-btn:hover {
  background: rgba(245,200,66,0.2);
  transform: scale(1.1);
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 1.5rem;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.25);
  cursor: pointer;
  transition: background 0.25s, transform 0.25s;
  padding: 0;
}

.dot.active {
  background: var(--gold);
  transform: scale(1.3);
}

/* ── Footer ── */
.site-footer {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 1.5rem;
  font-size: 0.8rem;
  color: var(--muted);
  border-top: 1px solid rgba(255,255,255,0.07);
}

/* ── Responsive ── */
@media (max-width: 480px) {
  .logo {
    max-width: 160px;
  }

  .hero-image-wrap {
    border-radius: 1.25rem;
  }
}
