:root {
  --midnight: #0a0a12;
  --deep-purple: #1a0a2e;
  --purple: #2d1b4e;
  --purple-light: #4a2c7a;
  --orange-glow: #ff6b35;
  --neon-green: #39ff14;
  --fiery-red: #e63946;
  --vampire-pink: #ff006e;
  --moon-white: #e8e4f0;
  --text-light: #d4cee0;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", system-ui, sans-serif;
  background: var(--midnight);
  color: var(--text-light);
  line-height: 1.6;
  min-height: 100vh;
  background-image:
    radial-gradient(ellipse 80% 50% at 50% -20%, var(--deep-purple) 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 80% 60%, rgba(45, 27, 78, 0.6) 0%, transparent 40%),
    linear-gradient(180deg, var(--midnight) 0%, var(--deep-purple) 40%, var(--midnight) 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 200'%3E%3Cpath fill='%23000' opacity='0.15' d='M0 200 L0 80 Q50 60 80 80 L100 200 Z M120 200 L120 100 Q160 70 200 100 L220 200 Z M300 200 L300 60 Q340 40 380 60 L400 200 Z'/%3E%3C/svg%3E");
  background-size: 400px 200px;
  background-repeat: repeat-x;
  background-position: bottom;
  pointer-events: none;
  z-index: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 18, 0.92);
  border-bottom: 2px solid var(--purple-light);
  box-shadow: 0 0 20px rgba(255, 107, 53, 0.15);
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--orange-glow);
  text-decoration: none;
  text-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
}

.language-container {
  display: flex;
  align-items: center;
}

.language-selector {
  appearance: none;
  background: var(--deep-purple);
  color: var(--text-light);
  border: 1px solid var(--purple-light);
  border-radius: 8px;
  padding: 0.5rem 2rem 0.5rem 0.75rem;
  font-size: 0.9rem;
  font-family: inherit;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s, color 0.2s;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23d4cee0' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.6rem center;
}

.language-selector:hover {
  border-color: var(--orange-glow);
  box-shadow: 0 0 12px rgba(255, 107, 53, 0.25);
  color: var(--moon-white);
}

.language-selector:focus {
  outline: none;
  border-color: var(--neon-green);
  box-shadow: 0 0 12px rgba(57, 255, 20, 0.3);
}

.language-selector option {
  background: var(--deep-purple);
  color: var(--text-light);
}

.menu-toggle {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 28px;
  height: 22px;
  cursor: pointer;
  z-index: 102;
}

.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background: var(--neon-green);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
  box-shadow: 0 0 6px var(--neon-green);
}

.menu-toggle:checked ~ .hamburger span:nth-child(1) {
  transform: translateY(9.5px) rotate(45deg);
}

.menu-toggle:checked ~ .hamburger span:nth-child(2) {
  opacity: 0;
}

.menu-toggle:checked ~ .hamburger span:nth-child(3) {
  transform: translateY(-9.5px) rotate(-45deg);
}

.main-nav {
  display: flex;
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1rem;
}

.nav-list a {
  color: var(--text-light);
  text-decoration: none;
  padding: 0.35rem 0.5rem;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s, box-shadow 0.2s;
}

.nav-list a:hover {
  color: var(--orange-glow);
  background: rgba(255, 107, 53, 0.15);
  box-shadow: 0 0 8px rgba(255, 107, 53, 0.3);
}

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

  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(85%, 320px);
    height: 100vh;
    background: var(--deep-purple);
    border-left: 2px solid var(--purple-light);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    padding: 4.5rem 1.25rem 1.5rem;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
  }

  .menu-toggle:checked ~ .main-nav {
    transform: translateX(0);
  }

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

  .nav-list a {
    display: block;
    padding: 0.6rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .language-container {
    margin-right: 0.5rem;
  }

  .language-selector {
    padding: 0.4rem 1.75rem 0.4rem 0.5rem;
    font-size: 0.85rem;
    max-width: 140px;
  }
}

main {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 1.25rem 4rem;
}

.section {
  margin-bottom: 2.5rem;
  padding: 1.5rem;
  background: rgba(26, 10, 46, 0.5);
  border: 1px solid rgba(74, 44, 122, 0.4);
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.section h2 {
  margin-top: 0;
  color: var(--orange-glow);
  font-size: 1.5rem;
  text-shadow: 0 0 12px rgba(255, 107, 53, 0.4);
  border-bottom: 1px solid var(--purple-light);
  padding-bottom: 0.5rem;
}

.section h3 {
  color: var(--neon-green);
  font-size: 1.2rem;
  margin: 1.25rem 0 0.5rem;
}

.evil {
  text-align: center;
  background: linear-gradient(135deg, rgba(26, 10, 46, 0.8) 0%, rgba(45, 27, 78, 0.6) 100%);
  border-color: var(--orange-glow);
  box-shadow: 0 0 30px rgba(255, 107, 53, 0.2);
}

.evil h1 {
  margin: 0 0 1rem;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  color: var(--moon-white);
  text-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
}

.lead {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 60ch;
  margin: 0 auto;
}

.steps-list {
  padding-left: 1.25rem;
  margin: 1rem 0;
}

.steps-list li {
  margin-bottom: 0.75rem;
}

.steps-list strong {
  color: var(--neon-green);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  padding: 1rem;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  border-left: 4px solid var(--fiery-red);
}

.faq-item h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
}

.faq-item p {
  margin: 0;
}

.site-footer {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 1.5rem;
  background: var(--deep-purple);
  border-top: 1px solid var(--purple-light);
  color: var(--text-light);
  font-size: 0.9rem;
  opacity: 0.9;
}

.site-footer p {
  margin: 0;
}

strong {
  color: var(--moon-white);
}

a {
  color: var(--orange-glow);
}

a:hover {
  color: var(--neon-green);
}

.go-button {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  background-color: var(--orange-glow);
  color: var(--moon-white);
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 0 8px rgba(255, 107, 53, 0.4);
  transition: background-color 0.3s, box-shadow 0.3s;
}

.go-button:hover {
  background-color: var(--neon-green);
  box-shadow: 0 0 12px var(--neon-green);
}