:root {
  --bg: #120e16;
  --surface: #1b1524;
  --surface-2: #211d32;
  --text: #eaf1ff;
  --muted: #b9a4c3;
  --accent: #db6fff;
  --accent-2: #8c4aff;
  --danger: #ff687d;
  --border: #442c52;
  --shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: Inter, Arial, sans-serif;
  color: var(--text);
  background:
    linear-gradient(135deg, rgba(237, 74, 255, 0.08), transparent 35%),
    linear-gradient(315deg, rgba(176, 111, 255, 0.06), transparent 35%),
    var(--bg);
  line-height: 1.55;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 10px;
  background: var(--accent);
  color: #0a0211;
  padding: 8px 12px;
  border-radius: 8px;
  font-weight: 700;
}

.skip-link:focus {
  left: 10px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(8px);
  background: rgba(14, 17, 22, 0.8);
  border-bottom: 1px solid var(--border);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
}

.brand {
  color: var(--text);
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.3px;
}

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

.nav-list {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 16px;
  list-style: none;
}

.nav-list a {
  color: var(--text);
  text-decoration: none;
}

.btn {
  display: inline-block;
  border: 1px solid transparent;
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  color: #06131d;
  font-weight: 800;
  border-radius: 12px;
  padding: 10px 16px;
  text-decoration: none;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
  box-shadow: var(--shadow);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-small {
  padding: 8px 12px;
  font-size: 0.9rem;
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
  box-shadow: none;
}

.hero {
  padding: 72px 0 36px;
}

.hero-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 2fr 1fr;
}

.eyebrow {
  margin: 0;
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

h1 {
  margin: 8px 0 12px;
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.15;
}

.lead {
  color: var(--muted);
  max-width: 65ch;
}

.hero-actions {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-card,
.support-card,
.social-card,
.animation-card {
  background: linear-gradient(160deg, var(--surface), var(--surface-2));
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 18px;
}

.hero-card h2 {
  margin-top: 0;
}

.hero-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.section {
  padding: 56px 0;
}

.section-alt {
  background: rgba(21, 27, 36, 0.6);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section h2 {
  margin-top: 0;
  font-size: clamp(1.5rem, 2.3vw, 2rem);
}

.section-intro {
  color: var(--muted);
  margin-top: 6px;
}

.social-grid {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(90%, 1fr));
  gap: 25px;
}

.social-grid > a.social-card {
  display: grid;
  grid-template-columns: 56px 1fr;
  padding: 0;
  overflow: hidden;
  align-items: stretch;
}

.social-card-content {
  padding: 14px 30px;
}

.social-card-content h3 {
  margin: 2px 0 6px;
}

.social-card-content p {
  margin: 0;
  color: var(--muted);
}

.social-card:hover,
.social-card:focus-visible {
  border-color: var(--accent);
}

.social-icon {
  width: 130%;
  height: 100%;
  min-height: 75px;
  border-radius: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #2a2036;
  border-right: 1px solid var(--border);
  border-left: 0;
  border-top: 0;
  border-bottom: 0;
  color: #fff;
  flex-shrink: 0;
}

.social-icon svg {
  width: 200px;
  height: 45px;
  fill: currentColor;
}

.social-icon-youtube {
  color: #ff4f5e;
}

.social-icon-tiktok {
  color: #7ff3ff;
}

.social-icon-x {
  color: #f3f7ff;
}

.social-icon-discord {
  color: #9aa5ff;
}

.social-icon-patreon {
  color: #ff8a5b;
}

.showcase-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.filter-wrap {
  display: flex;
  gap: 8px;
  align-items: center;
}

select {
  border-radius: 8px;
  border: 1px solid var(--border);
  background: #160f1d;
  color: var(--text);
  padding: 8px;
}

.animation-grid {
  margin-top: 18px;
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.animation-card {
  padding: 14px;
  display: grid;
  gap: 10px;
}

.animation-card img {
  width: 100%;
  border-radius: 10px;
  border: 1px solid var(--border);
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.animation-card h3 {
  margin: 2px 0;
}

.meta {
  color: var(--muted);
  font-size: 0.92rem;
}

.tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.tag {
  font-size: 0.78rem;
  color: #040415;
  background: var(--accent);
  border-radius: 999px;
  padding: 2px 8px;
  font-weight: 700;
}

.about-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 18px;
}

.support-card {
  padding: 16px;
}

.support-card ul {
  color: var(--muted);
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 18px 0;
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

a:focus-visible,
button:focus-visible,
select:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.policy-list {
  margin: 10px 0 0;
  padding-left: 20px;
  color: var(--muted);
}

.policy-list li + li {
  margin-top: 8px;
}

.compact-list {
  margin-top: 10px;
}

.price {
  margin: 0;
  color: var(--accent);
  font-size: 1.05rem;
  font-weight: 800;
}

.price-list {
  margin: 10px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.price-list li + li {
  margin-top: 6px;
}

.status-badge {
  display: inline-block;
  margin: 2px 0 0;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 104, 125, 0.14);
  color: #ffc6cf;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.card-stack {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.card-stack .social-card {
  display: grid;
  gap: 10px;
}

.social-title {
  font-weight: 800;
}

.social-title-youtube {
  color: #ff4f5e;
}

.social-title-tiktok {
  color: #7ff3ff;
}

.social-title-x {
  color: #f3f7ff;
}

.social-title-discord {
  color: #9aa5ff;
}

.social-title-patreon {
  color: #ff8a5b;
}

@media (max-width: 850px) {
  .hero-grid,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .nav-list {
    gap: 10px;
    font-size: 0.95rem;
  }
}
