/* === BASE STYLES === */:root {
  --c1: #1a0533;
  --c2: #6b0fa8;
  --c3: #ff2d8f;
  --c4: #c026d3;
  --bg: #0f0120;
  --bg2: #160328;
  --fg: #f0e6ff;
  --fg2: #c9a8e8;
  --acc: #ff2d8f;
  --gold: #f5c842;
  --rad: 12px;
  --rad2: 20px;
  --sp1: 1rem;
  --sp2: 2rem;
  --sp3: 4rem;
  --shadow: 0 8px 40px rgba(255,45,143,0.18);
  --shadow2: 0 4px 24px rgba(107,15,168,0.35);
  --glow: 0 0 24px rgba(255,45,143,0.45);
  --glow2: 0 0 16px rgba(192,38,211,0.4);
}

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

html, body {
  max-width: 100vw;
  overflow-x: hidden;
}

body {
  background-color: var(--bg);
  color: var(--fg);
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
}

h1, h2, h3, h4 {
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

h1 { font-size: clamp(2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }

p { color: var(--fg2); margin-bottom: 1rem; }

a { color: var(--c3); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--gold); }

.container { max-width: 1200px; padding-left: var(--sp1); padding-right: var(--sp1); }

.btn-primary-action {
  background: linear-gradient(135deg, var(--c3), var(--c4));
  border: none;
  border-radius: 50px;
  box-shadow: var(--glow);
  color: #fff;
  display: inline-block;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 0.75rem 2rem;
  text-decoration: none;
  text-transform: uppercase;
  transition: box-shadow 0.25s, transform 0.2s;
}

.btn-primary-action:hover {
  box-shadow: 0 0 36px rgba(255,45,143,0.65);
  color: #fff;
  transform: translateY(-2px);
}

.section-label {
  background: linear-gradient(90deg, var(--c3), var(--c4));
  border-radius: 50px;
  color: #fff;
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin-bottom: 1rem;
  padding: 0.28rem 1rem;
  text-transform: uppercase;
}

.card-panel {
  background: linear-gradient(135deg, rgba(107,15,168,0.18), rgba(26,5,51,0.6));
  border: 1px solid rgba(255,45,143,0.18);
  border-radius: var(--rad2);
  padding: var(--sp2);
  transition: box-shadow 0.3s, transform 0.3s;
}

.card-panel:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.content-image {
  border-radius: var(--rad2);
  margin: var(--sp2) 0;
  overflow: hidden;
}

.content-image img {
  border-radius: var(--rad2);
  display: block;
  height: auto;
  max-height: 420px;
  object-fit: cover;
  width: 100%;
}

.divider-glow {
  background: linear-gradient(90deg, transparent, var(--c3), var(--c4), transparent);
  border: none;
  height: 2px;
  margin: 0;
  opacity: 0.5;
  width: 100%;
}

/* === LAYOUT STYLES === */
#site-header {
  background: rgba(15,1,32,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,45,143,0.2);
  left: 0;
  position: sticky;
  right: 0;
  top: 0;
  z-index: 1000;
}

#site-header .header-inner {
  align-items: center;
  display: flex;
  gap: var(--sp1);
  justify-content: space-between;
  min-height: 68px;
  padding-bottom: 0.5rem;
  padding-top: 0.5rem;
  position: relative;
  width: 100%;
}

#site-header .logo a {
  color: var(--fg);
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  text-decoration: none;
}

#site-header .logo .logo-accent {
  color: var(--c3);
}

.hamburger {
  background: transparent;
  border: 1.5px solid rgba(255,45,143,0.45);
  border-radius: 8px;
  cursor: pointer;
  display: none;
  flex-direction: column;
  gap: 5px;
  min-height: 44px;
  min-width: 44px;
  padding: 10px;
}

.hamburger span {
  background: var(--fg);
  border-radius: 2px;
  display: block;
  height: 2px;
  transition: transform 0.3s, opacity 0.3s;
  width: 22px;
}

.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

header nav .nav-list {
  align-items: center;
  display: flex;
  gap: 0.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

header nav .nav-list li a {
  border-radius: 8px;
  color: var(--fg2);
  display: block;
  font-size: 0.93rem;
  font-weight: 600;
  padding: 0.45rem 0.9rem;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}

header nav .nav-list li a:hover {
  background: rgba(255,45,143,0.12);
  color: var(--fg);
}

.header-cta {
  max-width: 200px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media (max-width: 767px) {
  .hamburger { display: flex; }

  header nav {
    background: rgba(15,1,32,0.98);
    border-top: 1px solid rgba(255,45,143,0.18);
    left: 0;
    max-height: 0;
    overflow: hidden;
    position: absolute;
    right: 0;
    top: 100%;
    transition: max-height 0.35s ease;
    width: 100%;
  }

  header nav.open {
    max-height: 300px;
  }

  header nav .nav-list {
    flex-direction: column;
    gap: 0;
    padding: 0.5rem 0;
  }

  header nav .nav-list li { width: 100%; }

  header nav .nav-list li a {
    border-radius: 0;
    padding: 0.75rem 1.5rem;
    width: 100%;
  }

  #site-header .header-inner {
    flex-wrap: wrap;
  }

  .header-cta {
    font-size: 0.88rem;
    max-width: 160px;
    padding: 0.6rem 1.2rem;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  #site-header .logo a { font-size: 1.3rem; }
}

.site-footer {
  background: rgba(10,1,22,0.98);
  border-top: 1px solid rgba(255,45,143,0.2);
  margin-top: var(--sp3);
  padding: var(--sp3) 0 var(--sp2);
}

.footer-inner {
  align-items: flex-start;
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp2);
  justify-content: space-between;
}

.footer-logo .logo-text {
  background: linear-gradient(135deg, var(--fg), var(--c3));
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 1.4rem;
  font-weight: 900;
  -webkit-text-fill-color: transparent;
}

.footer-nav-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-nav-list li a {
  color: var(--fg2);
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-nav-list li a:hover { color: var(--c3); }

.footer-disclaimer p {
  color: rgba(192,168,232,0.55);
  font-size: 0.8rem;
  max-width: 600px;
}

@media (max-width: 767px) {
  .footer-inner { flex-direction: column; gap: var(--sp1); }
  .site-footer { padding: var(--sp2) 0; }
}

@media (max-width: 767px) {
  .hamburger { display: flex; }

  header nav {
    background: rgba(15,1,32,0.98);
    border-top: 1px solid rgba(255,45,143,0.18);
    left: 0;
    max-height: 0;
    overflow: hidden;
    position: absolute;
    right: 0;
    top: 100%;
    transition: max-height 0.35s ease;
    width: 100%;
  }

  header nav.open {
    max-height: 300px;
  }

  header nav .nav-list {
    flex-direction: column;
    gap: 0;
    padding: 0.5rem 0;
  }

  header nav .nav-list li { width: 100%; }

  header nav .nav-list li a {
    border-radius: 0;
    padding: 0.75rem 1.5rem;
    width: 100%;
  }

  #site-header .header-inner {
    flex-wrap: wrap;
  }

  .header-cta {
    font-size: 0.88rem;
    max-width: 160px;
    padding: 0.6rem 1.2rem;
  }
}

@media (max-width: 767px) {
  .footer-inner { flex-direction: column; gap: var(--sp1); }
  .site-footer { padding: var(--sp2) 0; }
}