/* =====================================================
   ozgurbilge.com — main stylesheet
   Fonts: Vend Sans (headings) · Encode Sans SC (body)
   DSGVO: all fonts self-hosted, no external requests
   ===================================================== */

/* ── FONTS ─────────────────────────────────────────── */
@font-face {
  font-family: 'Vend Sans';
  src: url('../fonts/vend-sans-v1-latin-regular.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Vend Sans';
  src: url('../fonts/vend-sans-v1-latin-600.woff2') format('woff2');
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Vend Sans';
  src: url('../fonts/vend-sans-v1-latin-700.woff2') format('woff2');
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Encode Sans SC';
  src: url('../fonts/encode-sans-semi-condensed-v11-latin-300.woff2') format('woff2');
  font-weight: 300; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Encode Sans SC';
  src: url('../fonts/encode-sans-semi-condensed-v11-latin-regular.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Encode Sans SC';
  src: url('../fonts/encode-sans-semi-condensed-v11-latin-700.woff2') format('woff2');
  font-weight: 700; font-style: normal; font-display: swap;
}

/* ── TOKENS ─────────────────────────────────────────── */
:root {
  --bg:      #080D18;
  --surface: #0F1824;
  --card:    #131F30;
  --border:  #1C2D42;
  --cyan:    #00D4FF;
  --teal:    #28ACAC;
  --purple:  #7C3AED;
  --amber:   #F59E0B;
  --green:   #10B981;
  --red:     #EF4444;
  --violet:  #A855F7;
  --white:   #FFFFFF;
  --gray:    #94A3B8;
  --lgray:   #CBD5E1;
  --f-head:  'Vend Sans', system-ui, sans-serif;
  --f-body:  'Encode Sans SC', system-ui, sans-serif;
}

/* ── RESET ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--f-body);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}

/* Grid noise overlay */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image:
    linear-gradient(rgba(0,212,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,212,255,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none; z-index: 0;
}

section, nav, footer { position: relative; z-index: 1; }
.container { max-width: 1000px; margin: 0 auto; padding: 0 clamp(20px,5vw,60px); }

/* ── NAV ─────────────────────────────────────────────── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(8,13,24,0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  padding: 0 clamp(20px,5vw,80px);
  display: flex; align-items: center; justify-content: space-between;
  height: 60px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--f-head); font-weight: 700; font-size: 1rem;
  color: var(--white); text-decoration: none;
  letter-spacing: 0.02em;
}
.nav-logo img {
  width: 32px; height: 32px; border-radius: 50%;
  border: 1.5px solid var(--teal);
  object-fit: cover;
}
.nav-right { display: flex; align-items: center; gap: 12px; }
.nav-links { display: flex; gap: 6px; }
.nav-links a {
  color: var(--gray); text-decoration: none;
  font-family: var(--f-head); font-size: 0.78rem; font-weight: 600;
  padding: 5px 12px; border-radius: 20px;
  transition: all .2s; border: 1px solid transparent;
  letter-spacing: 0.03em;
}
.nav-links a:hover { color: var(--white); border-color: var(--border); }
.lang-toggle {
  display: flex; gap: 2px;
  background: var(--card); border: 1px solid var(--border);
  border-radius: 20px; padding: 3px;
  flex-shrink: 0;
}
.lang-btn {
  background: none; border: none; cursor: pointer;
  font-family: var(--f-head); font-weight: 700; font-size: 0.7rem;
  color: var(--gray); padding: 3px 10px; border-radius: 14px;
  transition: all .2s; letter-spacing: 0.06em;
}
.lang-btn.active {
  background: var(--teal); color: var(--bg);
}
.lang-btn:hover:not(.active) { color: var(--white); }

/* ── HERO ────────────────────────────────────────────── */
.hero {
  min-height: 92vh;
  display: flex; align-items: center;
  padding: 80px 0 60px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 70% 20%, rgba(40,172,172,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(124,58,237,0.08) 0%, transparent 60%);
}
.hero-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 50px; align-items: center;
}
.avatar-wrap { position: relative; flex-shrink: 0; }
.avatar-glow {
  position: absolute; inset: -16px; border-radius: 50%;
  background: radial-gradient(circle, rgba(40,172,172,0.25) 0%, transparent 70%);
  animation: pulse 3s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { transform: scale(1); opacity: .7; }
  50%      { transform: scale(1.06); opacity: 1; }
}
.avatar-img {
  width: 160px; height: 160px; border-radius: 50%;
  object-fit: cover; display: block;
  border: 2.5px solid var(--teal);
  position: relative; z-index: 1;
}
.avatar-fallback {
  width: 160px; height: 160px; border-radius: 50%;
  background: var(--card); border: 2.5px solid var(--teal);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-head); font-weight: 700; font-size: 2.4rem;
  color: var(--teal); position: relative; z-index: 1;
}
.hero-name {
  font-family: var(--f-head); font-weight: 700;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1.2; letter-spacing: 0.01em;
  background: linear-gradient(135deg, #fff 0%, var(--teal) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  padding-bottom: 0.1em; /* prevents gradient clip on descenders */
  margin-bottom: 16px;
}
.hero-role {
  color: var(--teal); font-family: var(--f-head); font-weight: 600;
  font-size: 0.9rem; letter-spacing: 0.08em;
  text-transform: uppercase; margin-bottom: 16px;
}
.hero-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; margin-top: 18px; }
.tag {
  padding: 4px 14px; border-radius: 20px;
  font-family: var(--f-head); font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.05em;
}
.tag-tr { background: rgba(124,58,237,0.2); border: 1px solid rgba(124,58,237,0.5); color: #c4b5fd; }
.tag-en { background: rgba(15,118,110,0.2); border: 1px solid rgba(20,184,166,0.4); color: #5eead4; }
.tag-de { background: rgba(180,83,9,0.2);  border: 1px solid rgba(245,158,11,0.4); color: #fcd34d; }
.hero-tagline {
  color: var(--lgray); font-size: 1rem; margin-bottom: 22px; line-height: 1.6;
}
.hero-socials { display: flex; flex-wrap: wrap; gap: 8px; }
.social-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--f-head); font-size: 0.75rem; font-weight: 600;
  text-decoration: none; padding: 7px 15px; border-radius: 22px;
  border: 1px solid var(--border); color: var(--gray);
  background: var(--card); transition: all .2s;
  letter-spacing: 0.03em;
}
.social-link img { width: 16px; height: 16px; }
.social-link:hover { border-color: var(--teal); color: var(--white); }
.social-link.yt { border-color: rgba(239,68,68,0.3); color: #fca5a5; }
.social-link.yt:hover { border-color: var(--red); color: var(--red); background: rgba(239,68,68,0.08); }

/* ── STATS STRIP ─────────────────────────────────────── */
.stats-strip {
  padding: 50px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 2px;
}
.stat-card {
  padding: 22px 16px; text-align: center;
  border-right: 1px solid var(--border);
  position: relative; overflow: hidden;
  transition: background .2s;
}
.stat-card:last-child { border-right: none; }
.stat-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--accent-color, var(--cyan));
}
.stat-card:hover { background: rgba(255,255,255,0.02); }
.stat-val {
  font-family: var(--f-head); font-weight: 700;
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  color: var(--accent-color, var(--cyan));
  display: block; line-height: 1; margin-bottom: 6px;
}
.stat-lbl {
  font-size: 0.65rem; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--gray);
  display: block; margin-bottom: 4px;
}
.stat-sub { font-size: 0.7rem; color: var(--green); }

/* ── SECTION HEADERS ─────────────────────────────────── */
.sec-header {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 24px;
}
.sec-bar { width: 4px; height: 24px; border-radius: 2px; flex-shrink: 0; }
.sec-title {
  font-family: var(--f-head); font-weight: 700;
  font-size: 1.1rem; letter-spacing: 0.04em; text-transform: uppercase;
  margin: 0; /* reset h2 default */
}
.sec-line {
  flex: 1; height: 1px;
  background: linear-gradient(90deg, var(--border) 0%, transparent 100%);
}

/* ── ABOUT ───────────────────────────────────────────── */
.about-sec { padding: 70px 0 50px; }
.about-text {
  color: var(--lgray); font-size: 1rem; line-height: 1.75;
  max-width: 720px;
}
.about-text strong { color: var(--white); }

/* ── TOP VIDEOS ──────────────────────────────────────── */
.videos-sec { padding: 20px 0 60px; }
.video-list { display: flex; flex-direction: column; gap: 4px; }
.video-row {
  display: grid; grid-template-columns: 28px minmax(0,1fr) auto;
  align-items: center; gap: 14px;
  padding: 11px 16px; border-radius: 8px;
  background: var(--card); border: 1px solid transparent;
  transition: all .2s;
}
.video-row:nth-child(even) { background: var(--surface); }
.video-row:hover { border-color: var(--border); transform: translateX(3px); }
.video-num {
  font-family: var(--f-head); font-weight: 700;
  font-size: 0.8rem; text-align: center;
}
.video-title {
  font-size: 0.88rem; color: var(--lgray);
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap; min-width: 0;
}
.video-views {
  font-family: var(--f-head); font-weight: 700;
  font-size: 0.82rem; padding: 4px 12px; border-radius: 12px; white-space: nowrap;
}

/* ── AUDIENCE ────────────────────────────────────────── */
.audience-sec { padding: 60px 0; background: var(--surface); }
.audience-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.aud-col h3 {
  font-family: var(--f-head); font-weight: 700;
  font-size: 0.75rem; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--gray);
  margin-bottom: 14px; padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}
.bar-row { margin-bottom: 10px; }
.bar-label {
  display: flex; justify-content: space-between;
  font-size: 0.78rem; color: var(--lgray); margin-bottom: 4px;
}
.bar-label span:last-child { font-weight: 600; color: var(--white); }
.bar-track { height: 7px; background: var(--border); border-radius: 4px; overflow: hidden; }
.bar-fill {
  height: 100%; border-radius: 4px; width: 0;
  transition: width 1.2s cubic-bezier(.4,0,.2,1);
}
.gender-row {
  display: flex; gap: 3px; height: 10px; border-radius: 5px; overflow: hidden;
  margin-bottom: 8px;
}
.gender-m { background: var(--cyan); flex: 91.5; }
.gender-f { background: var(--red); flex: 8.5; }
.gender-labels {
  display: flex; justify-content: space-between;
  font-size: 0.73rem; color: var(--gray);
}
.viewer-note {
  padding: 12px 14px; border-radius: 8px;
  background: rgba(16,185,129,0.07); border: 1px solid rgba(16,185,129,0.25);
}
.viewer-note p:first-child {
  font-size: 0.75rem; color: var(--green); font-weight: 700; margin-bottom: 3px;
}
.viewer-note p:last-child { font-size: 0.72rem; color: var(--gray); }

/* ── NICHES ──────────────────────────────────────────── */
.niches-sec { padding: 60px 0; }
.niches-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; }
.niche-card {
  padding: 20px 16px; border-radius: 10px;
  background: var(--card); border: 1px solid var(--border);
  transition: all .25s; text-align: center;
}
.niche-card:hover { transform: translateY(-4px); border-color: var(--accent-color, var(--cyan)); }
.niche-icon { font-size: 1.8rem; margin-bottom: 8px; }
.niche-title {
  font-family: var(--f-head); font-weight: 700;
  font-size: 0.85rem; margin-bottom: 4px;
}
.niche-desc { font-size: 0.73rem; color: var(--gray); line-height: 1.4; }

/* ── BRANDS ──────────────────────────────────────────── */
.brands-sec { padding: 20px 0 60px; }
.brands-cloud {
  display: flex; flex-wrap: wrap; gap: 8px;
  padding: 24px; border-radius: 12px;
  background: var(--card); border: 1px solid var(--border);
}
.brand-tag {
  padding: 5px 13px; border-radius: 16px;
  font-family: var(--f-head); font-size: 0.75rem; font-weight: 600;
  border: 1px solid; transition: all .2s; cursor: default;
}
.brand-tag:hover { transform: scale(1.05); }

/* ── PRICING ─────────────────────────────────────────── */
.pricing-sec { padding: 70px 0; background: var(--surface); }
.pricing-note { font-size: 0.78rem; color: var(--gray); margin-bottom: 24px; }
.pricing-grid {
  display: grid; grid-template-columns: repeat(2,1fr);
  gap: 14px; margin-bottom: 16px;
}
.price-card {
  padding: 24px; border-radius: 12px;
  background: var(--card); border: 1px solid var(--border);
  position: relative; overflow: hidden; transition: all .25s;
}
.price-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--accent-color, var(--cyan));
}
.price-card:hover {
  transform: translateY(-3px);
  border-color: var(--accent-color, var(--cyan));
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}
.price-title {
  font-family: var(--f-head); font-weight: 700;
  font-size: 0.9rem; margin-bottom: 8px;
}
.price-amount {
  font-family: var(--f-head); font-weight: 700;
  font-size: 1.7rem; line-height: 1;
  color: var(--accent-color, var(--cyan)); margin-bottom: 10px;
}
.price-desc { font-size: 0.8rem; color: var(--gray); line-height: 1.5; }
.bundle-note {
  padding: 12px 18px; border-radius: 8px;
  background: rgba(16,185,129,0.07); border: 1px solid rgba(16,185,129,0.3);
  font-size: 0.8rem; color: var(--green);
}

/* ── WHY ─────────────────────────────────────────────── */
.why-sec { padding: 60px 0; }
.why-list { display: flex; flex-direction: column; gap: 8px; }
.why-row {
  display: grid; grid-template-columns: 4px 1fr;
  gap: 16px; align-items: stretch;
  padding: 14px 18px; border-radius: 8px;
  background: var(--card); border: 1px solid var(--border);
  transition: all .2s;
}
.why-row:hover { border-color: var(--accent-color, var(--cyan)); transform: translateX(4px); }
.why-bar { border-radius: 2px; background: var(--accent-color, var(--cyan)); }
.why-title {
  font-family: var(--f-head); font-weight: 700;
  font-size: 0.9rem; margin-bottom: 3px;
}
.why-desc { font-size: 0.8rem; color: var(--gray); }

/* ── CTA ─────────────────────────────────────────────── */
.cta-sec {
  padding: 80px 0; text-align: center;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(40,172,172,0.07) 0%, transparent 70%);
}
.cta-title {
  font-family: var(--f-head); font-weight: 700;
  font-size: clamp(1.6rem,3.5vw,2.4rem);
  margin-bottom: 12px; line-height: 1.2;
}
.cta-sub { color: var(--lgray); font-size: 1rem; margin-bottom: 28px; }
.cta-btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--f-head); font-weight: 700;
  font-size: 1rem; color: var(--teal);
  text-decoration: none;
  padding: 14px 36px; border-radius: 40px;
  border: 1.5px solid var(--teal);
  background: rgba(40,172,172,0.06);
  transition: all .25s; margin-bottom: 14px;
}
.cta-btn:hover { background: rgba(40,172,172,0.15); box-shadow: 0 0 30px rgba(40,172,172,0.2); }
.cta-btn img { width: 20px; height: 20px; }
.cta-note { font-size: 0.78rem; color: var(--gray); }

/* ── FOOTER ──────────────────────────────────────────── */
footer {
  padding: 20px; text-align: center;
  border-top: 1px solid var(--border);
  font-size: 0.75rem; color: var(--gray);
  background: var(--surface);
}

/* ── WALLPAPERS (homepage) ───────────────────────────── */
.wallpapers-sec { padding: 60px 0; background: var(--surface); }
.wallpapers-sub {
  color: var(--lgray); font-size: 1rem; margin-bottom: 18px;
}
.wallpapers-link {
  display: inline-flex; align-items: center;
  font-family: var(--f-head); font-weight: 700; font-size: 0.9rem;
  color: var(--purple); text-decoration: none;
  padding: 11px 28px; border-radius: 30px;
  border: 1.5px solid rgba(168,85,247,0.5);
  background: rgba(168,85,247,0.07);
  transition: all .25s;
}
.wallpapers-link:hover {
  background: rgba(168,85,247,0.15);
  border-color: var(--violet);
  box-shadow: 0 0 24px rgba(168,85,247,0.2);
}
.wallpapers-preview {
  display: flex; gap: 14px; justify-content: flex-start;
  margin-bottom: 22px;
}
.wallpapers-preview-card {
  flex: 0 0 auto; width: 130px;
  border-radius: 14px; overflow: hidden;
  border: 1px solid var(--border);
  background: var(--card);
  transition: border-color .2s, transform .2s;
}
.wallpapers-preview-card:hover { border-color: var(--violet); transform: translateY(-3px); }
.wallpapers-preview-card img {
  width: 100%; aspect-ratio: 9/19.5;
  object-fit: cover; display: block;
}
.wallpapers-preview-all {
  display: flex; align-items: center; justify-content: center;
  aspect-ratio: 9/19.5;
  background: rgba(168,85,247,0.07);
  border-color: rgba(168,85,247,0.3);
  text-decoration: none;
}
.wallpapers-preview-all span {
  font-family: var(--f-head); font-weight: 700; font-size: 0.78rem;
  color: var(--violet); text-align: center; line-height: 1.6;
}
.wallpapers-preview-all:hover { background: rgba(168,85,247,0.15); }
@media (max-width: 480px) {
  .wallpapers-preview-card { width: 100px; }
}
@media (max-width: 600px) {
  .wallpapers-sec { padding: 40px 0; }
}

/* ── LATEST CONTENT (homepage) ──────────────────────── */
.latest-sec { padding: 60px 0; }
.latest-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
}
.latest-card {
  border-radius: 12px; overflow: hidden;
  background: var(--card); border: 1px solid var(--border);
  transition: all .25s; text-decoration: none; display: block;
}
.latest-card:hover {
  border-color: var(--accent-color, var(--teal));
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.35);
}
.latest-card-thumb {
  width: 100%; aspect-ratio: 16/9;
  object-fit: cover; display: block;
  background: var(--surface);
}
.latest-card-thumb.square { aspect-ratio: 1/1; }
.latest-card-body {
  padding: 16px 18px;
  display: flex; align-items: center; gap: 10px;
}
.latest-card-icon { width: 22px; height: 22px; flex-shrink: 0; }
.latest-card-meta {}
.latest-card-platform {
  font-family: var(--f-head); font-weight: 700;
  font-size: 0.7rem; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--accent-color, var(--teal));
  margin-bottom: 2px;
}
.latest-card-label {
  font-size: 0.82rem; color: var(--lgray);
}
.latest-card-loading {
  width: 100%; aspect-ratio: 16/9;
  background: var(--surface);
  display: flex; align-items: center; justify-content: center;
  color: var(--gray); font-size: 0.8rem;
}
.latest-card-loading.square { aspect-ratio: 1/1; }

@media (max-width: 600px) {
  .latest-grid { grid-template-columns: 1fr; gap: 14px; }
  .latest-sec { padding: 40px 0; }
}

/* ── FOOTER ──────────────────────────────────────────── */
footer a {
  color: var(--gray); text-decoration: none;
  transition: color .2s;
}
footer a:hover { color: var(--teal); }

/* ── SCROLL REVEAL ───────────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(22px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ── HAMBURGER ───────────────────────────────────────── */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 22px; height: 16px;
  background: none; border: none; cursor: pointer;
  padding: 0; margin-left: 12px; flex-shrink: 0;
}
.nav-burger span {
  display: block; height: 2px; width: 100%;
  background: var(--white); border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease;
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── RESPONSIVE — TABLET ─────────────────────────────── */
@media (max-width: 860px) {
  .niches-grid { grid-template-columns: repeat(2,1fr); }
  .pricing-grid { grid-template-columns: 1fr; }
}

/* ── RESPONSIVE — MOBILE ─────────────────────────────── */
@media (max-width: 600px) {

  /* Nav */
  nav { padding: 0 16px; position: relative; }
  .nav-right { gap: 8px; }
  .nav-burger { display: flex; }
  .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: rgba(8,13,24,0.97);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--border);
    padding: 8px 16px 20px;
    gap: 2px;
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease, transform .25s ease;
    z-index: 99;
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-links a {
    font-size: 0.95rem;
    padding: 12px 8px;
    border-radius: 0;
    border-bottom: 1px solid var(--border);
    border-left: none; border-right: none; border-top: none;
  }
  .nav-links a:last-child { border-bottom: none; }

  /* Hero */
  .hero { padding: 48px 0 40px; min-height: auto; }
  .hero-inner { grid-template-columns: 1fr; gap: 20px; text-align: center; justify-items: center; }
  .hero-text { justify-self: stretch; }
  .avatar-img, .avatar-fallback { width: 100px; height: 100px; font-size: 1.8rem; }
  .hero-name { font-size: 2rem; }
  .hero-role { font-size: 0.78rem; letter-spacing: 0.05em; }
  .hero-tagline { font-size: 0.88rem; text-align: center; }
  .hero-tags { justify-content: center; }
  .hero-socials { justify-content: center; }

  /* Stats — 2×2 even grid */
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .stat-card {
    padding: 16px 10px;
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .stat-card:nth-child(odd) { border-right: 1px solid var(--border); }
  .stat-card:nth-child(3),
  .stat-card:nth-child(4) { border-bottom: none; }
  .stat-card:last-child { border-right: none; border-bottom: none; }
  .stat-val { font-size: 1.4rem; }

  /* General */
  .container { padding: 0 16px; }
  .about-sec { padding: 40px 0; }
  .cta-sec { padding: 50px 0; }

  /* Sections — mediakit */
  .videos-sec, .niches-sec, .brands-sec, .why-sec { padding: 40px 0; }
  .audience-sec, .pricing-sec { padding: 40px 0; }
  .audience-grid { grid-template-columns: 1fr; gap: 32px; }
  .niches-grid { grid-template-columns: repeat(2,1fr); gap: 8px; }
  .niche-card { padding: 14px 10px; }
  .niche-icon { font-size: 1.4rem; }
  .video-row { grid-template-columns: 22px 1fr auto; gap: 8px; padding: 10px; }
  .video-title { font-size: 0.78rem; }
  .video-views { font-size: 0.7rem; padding: 3px 8px; }
  .pricing-grid { grid-template-columns: 1fr; gap: 10px; }
  .price-card { padding: 18px; }
  .price-amount { font-size: 1.4rem; }
  .why-row { padding: 12px 14px; }
  .why-title { font-size: 0.85rem; }
  .why-desc { font-size: 0.75rem; }
  .brands-cloud { padding: 16px; gap: 6px; }
  .brand-tag { font-size: 0.7rem; padding: 4px 10px; }
  .cta-title { font-size: 1.5rem; }
  .cta-btn { font-size: 0.9rem; padding: 12px 24px; }

  /* Section headers */
  .sec-title { font-size: 0.85rem; }

  /* Latest */
  .latest-grid { grid-template-columns: 1fr; gap: 14px; }
  .latest-sec { padding: 40px 0; }

  /* Wallpapers */
  .wallpapers-sec { padding: 40px 0; }
  .wallpapers-sub { text-align: center; }
  .wallpapers-link { display: block; text-align: center; }
}

/* ── COOKIE CONSENT ─────────────────────────────── */
#cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: rgba(8, 13, 24, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
  padding: 20px 24px;
  display: flex;
  align-items: flex-end;
  gap: 20px;
  transform: translateY(0);
  transition: transform .4s ease, opacity .4s ease;
}
#cookie-banner.hidden {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}
.cookie-text {
  flex: 1;
  font-size: 0.82rem;
  color: var(--lgray);
  line-height: 1.6;
}
.cookie-text strong { color: var(--white); }
.cookie-text a { color: var(--teal); text-decoration: none; }
.cookie-text a:hover { text-decoration: underline; }
.cookie-emoji {
  font-size: 1.4rem;
  margin-right: 8px;
  vertical-align: middle;
}
.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-shrink: 0;
}
.cookie-btn {
  padding: 9px 20px;
  border-radius: 8px;
  font-family: var(--f-body);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  white-space: nowrap;
  transition: opacity .2s;
}
.cookie-btn:hover { opacity: 0.85; }
.cookie-btn-accept {
  background: var(--teal);
  color: #fff;
}
.cookie-btn-reject {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--lgray);
}
@media (max-width: 600px) {
  #cookie-banner {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    padding: 16px;
  }
  .cookie-actions { flex-direction: row; }
  .cookie-btn { flex: 1; text-align: center; }
}

/* ── UTILITY CLASSES ────────────────────────────────
   Replaces all inline style="..." attributes in HTML
   ──────────────────────────────────────────────────── */

/* Accent color (used via --accent-color on cards) */
.accent-cyan   { --accent-color: var(--cyan); }
.accent-violet { --accent-color: var(--violet); }
.accent-amber  { --accent-color: var(--amber); }
.accent-purple { --accent-color: var(--purple); }
.accent-red    { --accent-color: var(--red); }
.accent-teal   { --accent-color: var(--teal); }

/* Background colors (sec-bar, bar-fill) */
.bg-cyan   { background: var(--cyan); }
.bg-teal   { background: var(--teal); }
.bg-purple { background: var(--purple); }
.bg-amber  { background: var(--amber); }
.bg-violet { background: var(--violet); }
.bg-gray   { background: var(--gray); }

/* Text colors */
.clr-cyan   { color: var(--cyan); }
.clr-teal   { color: var(--teal); }
.clr-purple { color: var(--purple); }
.clr-amber  { color: var(--amber); }
.clr-violet { color: var(--violet); }
.clr-red    { color: var(--red); }
.clr-light  { color: #c4b5fd; }

/* Video views badges (background + text) */
.views-cyan   { background: rgba(0,212,255,0.15);  color: var(--cyan); }
.views-purple { background: rgba(124,58,237,0.15); color: #c4b5fd; }
.views-amber  { background: rgba(245,158,11,0.15); color: var(--amber); }
.views-teal   { background: rgba(40,172,172,0.15); color: var(--teal); }
.views-violet { background: rgba(168,85,247,0.15); color: var(--violet); }

/* Spacing utilities */
.mb-10 { margin-bottom: 10px; }
.mb-20 { margin-bottom: 20px; }
.mb-24 { margin-bottom: 24px; }
.mt-24 { margin-top: 24px; }

/* JS-controlled visibility */
.js-hidden { display: none; }

/* ── PRIVACY PAGE ────────────────────────────────── */
.privacy-sec { padding: 70px 0 80px; }
.privacy-updated { font-size: 0.78rem; color: var(--gray); margin-bottom: 40px; }
.privacy-body { max-width: 720px; }
.privacy-body h2 {
  font-family: var(--f-head); font-weight: 700;
  font-size: 1rem; color: var(--teal);
  letter-spacing: 0.04em; text-transform: uppercase;
  margin-top: 36px; margin-bottom: 10px;
}
.privacy-body p { color: var(--lgray); font-size: 0.95rem; line-height: 1.75; margin-bottom: 10px; }
.privacy-body strong { color: var(--white); }
.privacy-body ul { list-style: none; padding: 0; margin-bottom: 10px; }
.privacy-body ul li {
  color: var(--lgray); font-size: 0.95rem; line-height: 1.75;
  padding-left: 16px; position: relative;
}
.privacy-body ul li::before { content: '·'; position: absolute; left: 0; color: var(--teal); }
.privacy-body code {
  font-family: monospace; font-size: 0.85em;
  background: var(--card); border: 1px solid var(--border);
  padding: 1px 6px; border-radius: 4px; color: var(--cyan);
}
.privacy-body a { color: var(--teal); text-decoration: none; }
.privacy-body a:hover { text-decoration: underline; }

/* ── MEDIA KIT PASSWORD GATE ─────────────────────── */
#mk-gate {
  position: fixed; inset: 0; z-index: 99999;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
}
#mk-gate.unlocked { display: none; }
.mk-gate-box {
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 20px;
  padding: 48px 32px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 16px; width: 100%; max-width: 360px; margin: 16px;
}
.mk-gate-box img { opacity: 0.9; }
.mk-gate-title { font-family: var(--f-head); font-weight: 700; font-size: 1.4rem; color: var(--white); margin: 0; }
.mk-gate-sub { font-size: 0.85rem; color: var(--lgray); margin: -12px 0 0; }
.mk-gate-row { display: flex; width: 100%; gap: 8px; }
#mk-pw {
  flex: 1; padding: 11px 14px;
  background: var(--card); border: 1px solid var(--border);
  border-radius: 8px; color: var(--white);
  font-family: var(--f-body); font-size: 1rem;
  outline: none; transition: border-color .2s;
}
#mk-pw:focus { border-color: var(--teal); }
#mk-submit {
  padding: 11px 20px; background: var(--teal); color: #fff;
  border: none; border-radius: 8px;
  font-family: var(--f-body); font-weight: 600; font-size: 1rem;
  cursor: pointer; white-space: nowrap; transition: opacity .2s;
}
#mk-submit:hover { opacity: 0.85; }
#mk-error { font-size: 0.82rem; color: var(--red); display: none; }

/* Brand tag color variants */
.brand-cyan   { color: var(--cyan);   border-color: rgba(0,212,255,0.3);  background: rgba(0,212,255,0.06); }
.brand-purple { color: var(--purple); border-color: rgba(124,58,237,0.3); background: rgba(124,58,237,0.06); }
.brand-teal   { color: var(--teal);   border-color: rgba(40,172,172,0.3); background: rgba(40,172,172,0.06); }
.brand-amber  { color: var(--amber);  border-color: rgba(245,158,11,0.3); background: rgba(245,158,11,0.06); }
.brand-violet { color: var(--violet); border-color: rgba(168,85,247,0.3); background: rgba(168,85,247,0.06); }
.brand-more   { color: var(--gray);   border-color: var(--border);        background: transparent; }
