/* ===== RESET & BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #0a080c;
  color: #e0dce3;
  font-family:
    "Segoe UI",
    Roboto,
    system-ui,
    -apple-system,
    sans-serif;
  line-height: 1.6;
  padding-top: 70px; /* space for fixed header */
}

a {
  color: #ff4455;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover {
  color: #ff7a8a;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

h1,
h2,
h3,
h4 {
  font-weight: 700;
  letter-spacing: 0.02em;
}
h2 {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
  color: #fff;
  border-left: 5px solid #ff4455;
  padding-left: 1rem;
}
h3 {
  color: #ff4455;
  margin-top: 1.2rem;
  margin-bottom: 0.4rem;
}
.section-intro {
  font-size: 1.1rem;
  color: #b0aabb;
  margin-bottom: 2rem;
}

/* ===== HEADER ===== */
.site-header {
  background: #0a080c;
  border-bottom: 1px solid #2a1f2a;
  padding: 0.8rem 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.4rem;
  font-weight: 700;
}
.logo-icon {
  font-size: 1.8rem;
}
.logo-text {
  color: #fff;
}
.logo-dot {
  color: #ff4455;
}
.nav-menu ul {
  list-style: none;
  display: flex;
  gap: 1.8rem;
}
.nav-menu a {
  color: #c0b8c8;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.3rem 0;
  border-bottom: 2px solid transparent;
}
.nav-menu a.active,
.nav-menu a:hover {
  color: #fff;
  border-bottom-color: #ff4455;
}

/* ===== BURGER ===== */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 5px;
  cursor: pointer;
}
.burger span {
  display: block;
  width: 28px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: 0.25s;
}
.burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}
.burger.active span:nth-child(2) {
  opacity: 0;
}
.burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* ===== HERO ===== */
.hero {
  padding: 3rem 0 2rem;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}
.hero-text h1 {
  font-size: 2.8rem;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 0.5rem;
}
.hero-sub {
  font-size: 1.3rem;
  color: #ff4455;
  margin-bottom: 1.2rem;
}
.hero-body p {
  margin-bottom: 1rem;
  color: #c8c0d0;
}
.hero-body strong {
  color: #ff6a7a;
}
.hero-image {
  display: flex;
  justify-content: center;
}
.img-placeholder {
  background: #1e1620;
  border: 1px solid #3a2a3a;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  text-align: center;
  color: #b0a0b8;
  font-weight: 500;
  width: 100%;
  min-height: 220px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.img-placeholder .img-label {
  font-size: 1rem;
  color: #e0d0e0;
}
.img-placeholder .img-credit {
  font-size: 0.75rem;
  color: #887888;
  margin-top: 0.5rem;
}
.hero-img-placeholder {
  min-height: 300px;
  background: #1a121c radial-gradient(circle at 30% 40%, #3a2a3a, #0a080c);
}
.char-img-placeholder {
  min-height: 160px;
  background: #1a121c radial-gradient(circle at 60% 30%, #2a1a2a, #0a080c);
}
.secret-img-placeholder {
  min-height: 240px;
  background: #1a121c radial-gradient(circle at 70% 50%, #3a2a3a, #0a080c);
  margin-top: 2rem;
}

/* ===== CHARACTERS ===== */
.characters {
  padding: 3rem 0;
  background: #0d0a0e;
}
.character-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.character-card {
  background: #141016;
  border-radius: 16px;
  padding: 1.8rem 1.5rem;
  border: 1px solid #2a1e2a;
  transition: 0.2s;
}
.character-card:hover {
  border-color: #ff4455;
  box-shadow: 0 0 20px rgba(255, 68, 85, 0.08);
}
.character-card .char-image {
  margin-bottom: 1rem;
}
.character-card h3 {
  color: #fff;
  font-size: 1.4rem;
  margin-top: 0;
}
.character-card p {
  color: #c8c0d0;
  font-size: 0.95rem;
  margin-bottom: 0.6rem;
}
.character-card p strong {
  color: #ff6a7a;
}

/* ===== SECRETS ===== */
.secrets {
  padding: 3rem 0;
}
.secrets-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}
.secret-card {
  background: #141016;
  border-radius: 16px;
  padding: 1.8rem 1.5rem;
  border: 1px solid #2a1e2a;
}
.secret-card .secret-icon {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
}
.secret-card h3 {
  color: #fff;
  margin-top: 0;
}
.secret-card p {
  color: #c8c0d0;
  font-size: 0.95rem;
}
.secret-image-wrapper {
  margin-top: 1rem;
}

/* ===== THEORIES ===== */
.theories {
  padding: 3rem 0;
  background: #0d0a0e;
}
.theory-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 1.5rem;
}
.theory-card {
  background: #141016;
  border-radius: 16px;
  padding: 1.5rem;
  border-left: 4px solid #ff4455;
}
.theory-tag {
  display: inline-block;
  background: #ff4455;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.2rem 0.8rem;
  border-radius: 20px;
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
}
.theory-card h3 {
  color: #fff;
  margin-top: 0;
}
.theory-card p {
  color: #c8c0d0;
  font-size: 0.95rem;
}
.theory-footer {
  text-align: center;
  margin-top: 2.5rem;
  color: #b0aabb;
  font-size: 1rem;
}

/* ===== FOOTER ===== */
.site-footer {
  background: #0a080c;
  border-top: 1px solid #2a1f2a;
  padding: 2.5rem 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
}
.footer-col h4 {
  color: #fff;
  margin-bottom: 0.8rem;
  font-size: 1.1rem;
}
.footer-col p,
.footer-col ul {
  color: #a098a8;
  font-size: 0.9rem;
}
.footer-col ul {
  list-style: none;
}
.footer-col ul li {
  margin-bottom: 0.4rem;
}
.footer-col a {
  color: #b0a8b8;
}
.footer-col a:hover {
  color: #ff4455;
}
.footer-bottom {
  margin-top: 2rem;
  padding: 1rem 0;
  border-top: 1px solid #1e1620;
  text-align: center;
  font-size: 0.85rem;
  color: #706880;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .character-grid,
  .secrets-grid,
  .theory-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  body {
    padding-top: 60px;
  }
  .burger {
    display: flex;
  }
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #0a080c;
    border-bottom: 1px solid #2a1f2a;
    padding: 1rem 0;
    display: none;
    flex-direction: column;
    align-items: center;
  }
  .nav-menu.open {
    display: flex;
  }
  .nav-menu ul {
    flex-direction: column;
    gap: 0.8rem;
    align-items: center;
    width: 100%;
  }
  .nav-menu a {
    font-size: 1.1rem;
  }
  .hero-text h1 {
    font-size: 2.2rem;
  }
  .character-grid,
  .secrets-grid,
  .theory-grid {
    grid-template-columns: 1fr;
  }
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .hero-text h1 {
    font-size: 1.8rem;
  }
  .container {
    padding: 0 15px;
  }
}
