:root {
  --bg: #0a0612;
  --bg-card: #120a1c;
  --text: #e8e0f0;
  --muted: #9a8aaa;
  --accent: #c44dff;
  --accent-dim: #7a2f99;
  --gold: #d4a853;
  --neon: #00ffd5;
  --grain: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Segoe UI", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: var(--grain);
  pointer-events: none;
  z-index: 9999;
}

a {
  color: var(--neon);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid rgba(196, 77, 255, 0.2);
  background: rgba(10, 6, 18, 0.9);
  backdrop-filter: blur(8px);
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
}

.logo span {
  color: var(--accent);
}

.nav {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.nav a {
  color: var(--muted);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
}

.nav a:hover,
.nav a.active {
  color: var(--neon);
}

.hero {
  text-align: center;
  padding: 3rem 1.5rem 2rem;
  background: radial-gradient(ellipse at 50% 0%, rgba(196, 77, 255, 0.15) 0%, transparent 60%);
}

.hero h1 {
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin: 0 0 0.5rem;
}

.hero .tagline {
  color: var(--muted);
  font-size: 1rem;
  max-width: 36rem;
  margin: 0 auto 2rem;
}

.trailer-block {
  max-width: 900px;
  margin: 0 auto 2rem;
}

.trailer-wrap {
  aspect-ratio: 16 / 9;
  background: var(--bg-card);
  border: 1px solid rgba(196, 77, 255, 0.3);
  box-shadow: 0 0 40px rgba(196, 77, 255, 0.15);
}

.trailer-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.trailer-lang {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 0.65rem;
  padding: 0 0.25rem;
}

.trailer-lang-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-right: 0.15rem;
}

.trailer-lang-btn {
  font: inherit;
  font-size: 0.72rem;
  letter-spacing: 0.02em;
  color: var(--muted);
  background: transparent;
  border: 1px solid rgba(154, 138, 170, 0.25);
  border-radius: 2px;
  padding: 0.2rem 0.45rem;
  cursor: pointer;
  transition: color 0.15s, border-color 0.15s, background 0.15s;
}

.trailer-lang-btn:hover {
  color: var(--text);
  border-color: rgba(196, 77, 255, 0.45);
}

.trailer-lang-btn.active {
  color: var(--neon);
  border-color: rgba(0, 255, 213, 0.35);
  background: rgba(0, 255, 213, 0.05);
}

.cta-row {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin: 2rem 0;
}

.btn {
  display: inline-block;
  padding: 0.9rem 2rem;
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s;
}

.btn:hover {
  transform: translateY(-2px);
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-dim));
  color: #fff;
  box-shadow: 0 4px 24px rgba(196, 77, 255, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}

.proof {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  padding: 1.5rem;
  color: var(--muted);
  font-size: 0.85rem;
}

.proof strong {
  color: var(--neon);
  display: block;
  font-size: 1.25rem;
}

.proof-social {
  align-self: center;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  color: var(--muted);
  text-decoration: none;
  border: 1px solid rgba(154, 138, 170, 0.3);
  padding: 0.35rem 0.65rem;
  border-radius: 2px;
}

.proof-social:hover {
  color: var(--neon);
  border-color: rgba(0, 255, 213, 0.35);
  text-decoration: none;
}

.page-with-sidebar {
  display: grid;
  grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 1.5rem 4rem;
  align-items: start;
}

.sidebar {
  position: sticky;
  top: 5rem;
}

.sidebar-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  margin: 0 0 0.75rem;
}

.ig-card {
  background: var(--bg-card);
  border: 1px solid rgba(196, 77, 255, 0.2);
  padding: 0.75rem;
  overflow: hidden;
}

.ig-handle {
  display: block;
  font-size: 0.85rem;
  color: var(--text);
  text-decoration: none;
  margin-bottom: 0.5rem;
}

.ig-handle:hover {
  color: var(--neon);
}

.ig-embed {
  width: 100%;
  min-height: 360px;
  border: 0;
  border-radius: 2px;
  background: #000;
}

.ig-follow {
  display: block;
  text-align: center;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.65rem;
  color: var(--muted);
  text-decoration: none;
}

.ig-follow:hover {
  color: var(--neon);
}

.content {
  max-width: 720px;
  margin: 0 auto;
  padding: 2rem 1.5rem 4rem;
}

.content-main {
  max-width: none;
  margin: 0;
  padding: 0;
}

.content h2 {
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 2.5rem;
}

.content p {
  color: var(--muted);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

.card {
  background: var(--bg-card);
  border: 1px solid rgba(196, 77, 255, 0.2);
  padding: 1.5rem;
}

.card h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  color: var(--text);
}

.platform-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.platform-list li {
  margin: 0.75rem 0;
}

.platform-list a {
  display: block;
  padding: 1rem 1.25rem;
  background: var(--bg-card);
  border: 1px solid rgba(0, 255, 213, 0.2);
  color: var(--text);
  text-decoration: none;
}

.platform-list a:hover {
  border-color: var(--neon);
  background: rgba(0, 255, 213, 0.05);
}

.platform-list .badge {
  font-size: 0.75rem;
  color: var(--neon);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.site-footer {
  text-align: center;
  padding: 2rem 1.5rem;
  border-top: 1px solid rgba(196, 77, 255, 0.15);
  color: var(--muted);
  font-size: 0.8rem;
}

.site-footer a {
  color: var(--muted);
}

@media (max-width: 800px) {
  .page-with-sidebar {
    grid-template-columns: 1fr;
  }
  .sidebar {
    position: static;
    order: 2;
    max-width: 320px;
    margin: 0 auto;
  }
}

@media (max-width: 600px) {
  .nav {
    gap: 0.75rem;
  }
  .nav a {
    font-size: 0.75rem;
  }
}