/* ═══════════════════════════════════════════════
   VAMPRESS FANGORIA  ·  SHARED STYLES
   Cozy-goth streamer aesthetic
   Palette: #181818 #282828 #484048 #B8B0B0
            #B8B0A0 #887878 #504848
   Accents: crimson blood, soft lavender glow
═══════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=UnifrakturMaguntia&family=Cinzel:wght@400;600;700&family=DM+Sans:ital,wght@0,300;0,400;0,500;1,300;1,400&family=Bebas+Neue&display=swap');

:root {
  --c-void:     #0e0c0f;
  --c-black:    #181818;
  --c-dark:     #1e1a1e;
  --c-panel:    #242028;
  --c-mid:      #484048;
  --c-muted:    #504848;
  --c-stone:    #887878;
  --c-ash:      #B8B0B0;
  --c-linen:    #B8B0A0;
  --c-frost:    #D4C8D8;
  --c-white:    #ede8f0;

  --c-blood:    #7a1525;
  --c-crimson:  #b02840;
  --c-rose:     #c8405a;
  --c-blush:    #d4708a;

  --c-lavender: #8070a8;
  --c-violet:   #604878;
  --c-dusk:     #3e3070;

  /* glass pill */
  --pill:       rgba(28, 22, 30, 0.68);
  --pill-b:     rgba(184,176,184,0.14);
  --pill-glow:  rgba(176, 40, 64, 0.12);

  --font-gothic: 'UnifrakturMaguntia', serif;
  --font-cine:   'Cinzel', serif;
  --font-body:   'DM Sans', sans-serif;
  --font-head:   'Bebas Neue', sans-serif;

  --nav-h: 58px;
  --radius: 2px;
  --transition: 0.22s ease;
}

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

html { scroll-behavior: smooth; }

body {
  min-height: 100vh;
  background: var(--c-void);
  color: var(--c-ash);
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.7;
  overflow-x: hidden;
  cursor: default;
}

/* ── CUSTOM SCROLLBAR ── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--c-dark); }
::-webkit-scrollbar-thumb { background: var(--c-muted); border-radius: 2px; }
::-webkit-scrollbar-thumb:hover { background: var(--c-crimson); }

/* ── SCANLINES ── */
body::after {
  content: '';
  position: fixed; inset: 0; z-index: 9000; pointer-events: none;
  background: repeating-linear-gradient(
    0deg, transparent, transparent 2px,
    rgba(0,0,0,0.06) 2px, rgba(0,0,0,0.06) 4px
  );
}

/* ── NOISE OVERLAY ── */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: 8999; pointer-events: none;
  background-image: 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)'/%3E%3C/svg%3E");
  opacity: 0.025; mix-blend-mode: overlay;
}

/* ══════════════════════════
   NAVIGATION
══════════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  background: rgba(14,12,15,0.88);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  border-bottom: 1px solid rgba(184,176,184,0.1);
  display: flex; align-items: center;
  padding: 0 28px;
  gap: 0;
}

.nav-logo {
  font-family: var(--font-gothic);
  font-size: 22px;
  color: var(--c-white);
  text-decoration: none;
  text-shadow: 0 0 20px rgba(176,40,64,0.7);
  margin-right: auto;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.nav-logo span {
  font-family: var(--font-cine);
  font-size: 9px;
  letter-spacing: 0.22em;
  color: var(--c-stone);
  display: block;
  margin-top: -4px;
  text-shadow: none;
}

.nav-links {
  display: flex; align-items: center; gap: 2px;
}
.nav-link {
  font-family: var(--font-head);
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--c-stone);
  text-decoration: none;
  padding: 6px 12px;
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
  position: relative;
}
.nav-link:hover, .nav-link.active {
  color: var(--c-frost);
}
.nav-link.active::after {
  content: '';
  position: absolute; bottom: 1px; left: 12px; right: 12px;
  height: 1px; background: var(--c-crimson);
  box-shadow: 0 0 6px var(--c-crimson);
}

/* live badge */
.nav-live {
  display: flex; align-items: center; gap: 6px;
  font-family: var(--font-head);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--c-blush);
  padding: 4px 10px;
  border: 1px solid rgba(200,64,90,0.25);
  border-radius: 2px;
  margin-left: 10px;
}
.live-dot {
  width: 5px; height: 5px;
  background: var(--c-rose);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--c-rose);
  animation: pulse-dot 2s ease infinite;
}
@keyframes pulse-dot {
  0%,100% { opacity:1; transform:scale(1); }
  50% { opacity:0.5; transform:scale(0.7); }
}

/* ══════════════════════════
   PAGE WRAPPER
══════════════════════════ */
.page {
  padding-top: var(--nav-h);
  min-height: 100vh;
}

/* ══════════════════════════
   BACKGROUND LAYERS
══════════════════════════ */
.bg-wrap {
  position: fixed; inset: 0; z-index: 0;
}
.bg-img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  filter: brightness(0.32) saturate(0.85);
}
.bg-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: brightness(0.28) saturate(0.75);
}
.bg-vignette {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 70% at 50% 30%,
      rgba(48,28,64,0.35) 0%, transparent 65%),
    linear-gradient(180deg,
      rgba(14,12,15,0.55) 0%,
      rgba(24,16,28,0.2) 40%,
      rgba(14,12,15,0.88) 100%);
}

/* ══════════════════════════
   CONTENT WRAPPER
══════════════════════════ */
.content {
  position: relative; z-index: 5;
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px 24px 60px;
}

/* ══════════════════════════
   SECTION HEADERS
══════════════════════════ */
.section-head {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 22px;
}
.section-head h2 {
  font-family: var(--font-gothic);
  font-size: 28px;
  color: var(--c-white);
  text-shadow: 0 0 24px rgba(176,40,64,0.5);
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.section-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(176,40,64,0.5), transparent);
}
.section-label {
  font-family: var(--font-head);
  font-size: 9px;
  letter-spacing: 0.25em;
  color: var(--c-stone);
}

/* ══════════════════════════
   GLASS CARD / PILL
══════════════════════════ */
.card {
  background: var(--pill);
  backdrop-filter: blur(14px) saturate(1.3);
  -webkit-backdrop-filter: blur(14px) saturate(1.3);
  border: 1px solid var(--pill-b);
  border-radius: var(--radius);
  padding: 18px 20px;
  position: relative;
  box-shadow:
    0 2px 32px rgba(0,0,0,0.5),
    0 0 0 0.5px rgba(255,255,255,0.03) inset,
    0 0 20px var(--pill-glow);
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.card:hover {
  border-color: rgba(176,40,64,0.28);
  box-shadow:
    0 4px 40px rgba(0,0,0,0.6),
    0 0 0 0.5px rgba(255,255,255,0.04) inset,
    0 0 30px rgba(176,40,64,0.18);
  transform: translateY(-1px);
}

.card-label {
  font-family: var(--font-head);
  font-size: 8.5px;
  letter-spacing: 0.28em;
  color: var(--c-stone);
  border-bottom: 1px solid rgba(184,176,184,0.08);
  padding-bottom: 7px;
  margin-bottom: 12px;
}

/* scrollable card content */
.card-scroll {
  max-height: 200px;
  overflow-y: auto;
  padding-right: 8px;
  scrollbar-width: thin;
  scrollbar-color: var(--c-muted) transparent;
}
.card-scroll::-webkit-scrollbar { width: 3px; }
.card-scroll::-webkit-scrollbar-thumb { background: var(--c-muted); }

/* ══════════════════════════
   TAGS / BADGES
══════════════════════════ */
.tag {
  display: inline-flex; align-items: center;
  background: rgba(96,72,120,0.25);
  border: 1px solid rgba(128,112,168,0.2);
  color: var(--c-linen);
  font-family: var(--font-body);
  font-size: 10px;
  padding: 2px 8px;
  border-radius: 1px;
  letter-spacing: 0.05em;
}
.tag.red {
  background: rgba(139,20,40,0.25);
  border-color: rgba(176,40,64,0.3);
  color: var(--c-blush);
}

/* ══════════════════════════
   DIVIDER
══════════════════════════ */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(176,40,64,0.3) 30%, rgba(128,112,168,0.2) 70%, transparent);
  margin: 20px 0;
}

/* ══════════════════════════
   LINK BUTTON
══════════════════════════ */
.btn-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head);
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--c-ash);
  text-decoration: none;
  padding: 9px 18px;
  border: 1px solid rgba(184,176,184,0.15);
  border-radius: var(--radius);
  background: rgba(40,32,40,0.5);
  backdrop-filter: blur(8px);
  transition: all var(--transition);
  cursor: pointer;
}
.btn-link:hover {
  background: rgba(139,20,40,0.3);
  border-color: var(--c-crimson);
  color: var(--c-white);
  box-shadow: 0 0 14px rgba(176,40,64,0.25);
}
.btn-link .ico { font-size: 14px; }

/* ══════════════════════════
   FADE-IN ANIMATION
══════════════════════════ */
@keyframes fadeUp {
  from { opacity:0; transform:translateY(16px); }
  to   { opacity:1; transform:translateY(0); }
}
.fade-in {
  animation: fadeUp 0.55s ease both;
}
.fade-in:nth-child(1) { animation-delay:0.05s }
.fade-in:nth-child(2) { animation-delay:0.12s }
.fade-in:nth-child(3) { animation-delay:0.19s }
.fade-in:nth-child(4) { animation-delay:0.26s }
.fade-in:nth-child(5) { animation-delay:0.33s }
.fade-in:nth-child(6) { animation-delay:0.40s }

/* ══════════════════════════
   RESPONSIVE NAV
══════════════════════════ */
@media (max-width: 700px) {
  .nav { gap: 0; padding: 0 14px; flex-wrap: wrap; height: auto; min-height: var(--nav-h); }
  .nav-links { gap: 0; flex-wrap: wrap; }
  .nav-link { font-size: 10px; padding: 4px 7px; }
  .page { padding-top: 100px; }
}
