@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800&display=swap');
/* =========================================================
   XNXXPornos.com – XNXX-Style Navy-Template (Dunkelblau & Weiß)
   Bg: #1a1a1a (XNXX-Markenblau) | Accent: #6fbf19 | Text: #ffffff
   ========================================================= */

:root {
  /* ── Globale Überschriften-Definition (Basis-Reset & Größen) ────── */
  h1, h2, h3, h4, h5, h6 {
    margin: 0;
    padding: 0;
    font-family: var(--font);
    color: var(--text);
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.3;
  }

  h1 {
    font-size: 16px;          /* Kompakt und edel für alle Haupttitel */
    margin-bottom: 14px;
  }

  h2 {
    font-size: 14px;          /* Perfekte, dezente Größe für Zwischenüberschriften */
    margin-top: 24px;         /* Schafft spürbaren Abstand zum vorherigen Inhalt */
    margin-bottom: 10px;      /* Kleiner, sauberer Abstand zum nachfolgenden Text */
  }

  h3 {
    font-size: 12px;
    margin-top: 18px;
    margin-bottom: 8px;
    color: var(--text-soft);
    letter-spacing: 0.01em;   /* Leicht geöffneter Abstand für kleinere Überschriften */
  }

  /* Hintergrundfarben - xorgasmo-Stil (sehr dunkel, fast schwarz) */
  --bg:            #051405; /* Body-Hintergrund */
  --bg-alt:        #0a1f0a; /* Etwas heller für Widgets/Abhebungen */
  --bg-card:       #0a1f0a; /* Karten heben sich dezent ab */

  /* Grenzen & Linien (dezent, nicht rot!) */
  --border:        #1e4d1e;
  --border-strong: #32ff7e;

  /* Textfarben (weich-weiß auf Dunkel) */
  --text:          #ffffff;
  --text-soft:     #dcecdc;
  --text-muted:    #9ab89a;

  /* Akzentfarben - Bravoporno-Rot (ersetzt xorgasmo-Gelb) */
  --accent:        #008000;
  --accent-ink:    #ffffff;
  --accent-soft:   rgba(50, 255, 126, 0.15);
  --accent-hover:  #2ecc71;
  --accent-deep:   #051405;
  --accent-light:  #32ff7e;
  --link:          #d1d0d0;

  /* Radien & Schatten */
  --r-sm:          6px;
  --r-md:          10px;
  --r-lg:          14px;
  --shadow-sm:     0 1px 3px rgba(0, 0, 0, 0.30);
  --shadow-md:     0 4px 20px rgba(0, 0, 0, 0.40);
  
  /* Neuer, moderner System-Font-Stack */
  --font:          system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

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

html, body {
  margin: 0; padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 14px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: var(--link); text-decoration: none; }
a:hover { color: var(--accent-hover); }
img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ── Ad Placeholders ─────────────────────────────────────── */
.ad {
  background: var(--bg-alt);
  border: 1px dashed var(--border-strong);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column;
  color: var(--text-muted); font-size: 11px;
  font-family: monospace; letter-spacing: 0.06em;
  text-transform: uppercase; text-align: center;
  position: relative; overflow: hidden;
  border-radius: var(--r-md);
}
.ad b { color: var(--text-soft); font-weight: 600; display: block; }
.ad em { color: var(--text-muted); font-size: 10px; font-style: normal; }
.ad-leaderboard { display: block; min-height: 90px; margin: 14px 0; }
.ad-mobile      { display: none; }

@media (max-width: 720px) {
  .ad-leaderboard { display: none !important; }
  .ad-mobile      { display: flex !important; min-height: 100px; margin: 10px 0; }
}
.ad-rect        { min-height: 300px; }
.ad-halfpage    { min-height: 600px; }
.ad-banner      { min-height: 120px; margin: 14px 0; }

/* ── Breadcrumbs ─────────────────────────────────────────── */
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
  list-style: none;
  padding: 10px 0 4px;
  margin: 0;
  font-size: 12px;
  color: var(--text-muted);
}
.breadcrumb a { color: var(--text-muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb .bc-sep { margin: 0 2px; opacity: .3; }
.breadcrumb li:last-child { color: var(--text-soft); }

/* ── Shell / Layout ──────────────────────────────────────── */
.shell {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 16px;
}

.page-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 24px;
  margin-top: 6px;
}
.page-layout.sidebar-left {
  grid-template-columns: 320px 1fr;
}
.page-layout.sidebar-left > aside {
  order: -1;
}
@media (max-width: 1100px) {
  .page-layout { grid-template-columns: 1fr; }
  .page-layout > aside { order: 2; }
  .page-layout.sidebar-left > aside { order: 2; }
}

/* ── Topbar ──────────────────────────────────────────────── */
.topbar {
  background: #0d0d0d; /* Sehr helles Grau für die Topbar */
  color: var(--text-muted);
  font-size: 12px;
  border-bottom: 1px solid var(--border);
}
.topbar .shell {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 32px;
}
.topbar a { color: var(--text-soft); }
.topbar a:hover { color: var(--accent); }
.topbar-left { display: flex; gap: 14px; }
.topbar-right { display: flex; gap: 14px; align-items: center; }

/* ── Header ──────────────────────────────────────────────── */
.site-header {
  background: #171717;
  border-bottom: 2px solid var(--accent);
}
.site-header .shell {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 14px;
  padding-bottom: 14px;
}

.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.logo img { height: 36px; width: auto; display: block; }
.logo:hover { opacity: 0.9; filter: drop-shadow(0 0 4px var(--accent)); }

.search-form {
  flex: 1;
  display: flex;
  max-width: 640px;
  border: 1px solid var(--border-strong);
  border-radius: var(--r-md);
  overflow: hidden;
  background: #151515;
  box-shadow: var(--shadow-sm);
}
.search-form input[type="search"] {
  flex: 1;
  border: 0; outline: 0;
  padding: 10px 14px;
  font-size: 14px;
  background: transparent;
  color: #ffffff;
}
.search-form input[type="search"]::placeholder { color: #bdbdbd; }
.search-form button {
  background: var(--accent);
  color: #ffffff;
  padding: 0 18px;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: background 0.15s ease;
}
.search-form button:hover { background: var(--accent-hover); }

/* ── Burger Button ───────────────────────────────────────── */
.burger {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  padding: 8px;
  margin-left: auto;
  flex-shrink: 0;
  border: none; background: none;
  cursor: pointer;
  border-radius: var(--r-sm);
}
.burger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.burger:hover { background: var(--bg-alt); }

/* ── Main Nav ────────────────────────────────────────────── */
.main-nav {
  background: #151515;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}
.main-nav .shell {
  display: flex;
  gap: 4px;
  overflow-x: auto;
  scrollbar-width: none;
}
.main-nav .shell::-webkit-scrollbar { display: none; }
.main-nav .shell > nav,
.main-nav .shell > div,
.main-nav .shell > ul {
  display: flex;
  gap: 4px;
}
.main-nav a {
  padding: 14px 14px;
  font-size: 13px; font-weight: 600;
  color: var(--text-soft);
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  display: block;
  transition: all 0.15s ease;
}
.main-nav a:hover { color: #ffffff; background: rgba(255,255,255,0.08); }
.main-nav a.active { color: var(--accent); border-bottom-color: var(--accent); }

/* ── Section Headings ────────────────────────────────────── */
.section { margin: 24px 0 12px; }
.page-layout > div > .section:first-child { margin-top: 2px; }
.section-hd {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 6px;
  margin-bottom: 14px;
}
.section-title {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: #ffffff;
}
.section-title .accent { color: var(--accent); }
.section-more { font-size: 13px; color: var(--text-soft); font-weight: 600; }
.section-more:hover { color: var(--accent); }

/* ── Video Grid ──────────────────────────────────────────── */
.video-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px 14px;
}
@media (max-width: 1200px) { .video-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 900px)  { .video-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px)  { .video-grid { grid-template-columns: repeat(2, 1fr); } }

/* ── Video Card ──────────────────────────────────────────── */
.video-card {
  display: block;
  color: var(--text);
  text-decoration: none;
  background: var(--bg-card);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid #6fbf19;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}
.video-card:hover { 
  color: var(--text); 
  box-shadow: 0 4px 15px rgba(255, 0, 21, 0.15); 
  border-color: #82d42e;
}

.video-thumb-wrap {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #151515;
}
.video-thumb-wrap img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.3s ease;
}
.video-card:hover .video-thumb-wrap img { transform: scale(1.03); }

.video-duration {
  position: absolute;
  bottom: 6px; right: 6px;
  background: rgba(0, 0, 0, 0.8);
  color: #ffffff;
  font-size: 11px; font-weight: 600;
  padding: 2px 6px; border-radius: 4px;
  font-variant-numeric: tabular-nums;
}
.badge-new {
  position: absolute; top: 6px; left: 6px;
  background: #6fbf19; color: #ffffff;
  font-size: 10px; font-weight: 700;
  padding: 2px 5px; border-radius: 4px;
}
.badge-top {
  position: absolute; top: 6px; left: 6px;
  background: var(--accent); color: #ffffff;
  font-size: 10px; font-weight: 700;
  padding: 2px 5px; border-radius: 4px;
}
.play-over {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.2s;
  background: rgba(255, 0, 21, 0.2);
}
.play-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.5);
}
.play-btn::after {
  content: "";
  width: 0; height: 0;
  border-left: 14px solid #ffffff;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  margin-left: 4px;
}
.video-card:hover .play-over { opacity: 1; }

.video-info { padding: 10px 12px 12px; }
.video-title {
  font-size: 13px; font-weight: 600;
  margin: 0 0 6px; line-height: 1.4;
  color: #ffffff;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 2.8em;
}
.video-card:hover .video-title { color: var(--accent); }
.video-meta {
  display: flex;
  justify-content: space-between;
  font-size: 11px; color: var(--text-muted);
  align-items: center;
}
.rating-bar {
  height: 5px; width: 50px;
  background: #6fbf19;
  border-radius: 999px; overflow: hidden;
  display: inline-block;
}
.rating-fill { height: 100%; background: var(--accent); }
.rating-pct { color: var(--accent); font-weight: 700; font-size: 11px; }

/* ── Category Grid ───────────────────────────────────────── */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}
@media (max-width: 1024px) { .cat-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 720px)  { .cat-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 480px)  { .cat-grid { grid-template-columns: repeat(2, 1fr); } }

.cat-text-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.cat-card { display: block; text-decoration: none; color: inherit; }
.cat-thumb-bg {
  position: relative;
  aspect-ratio: 16 / 11;
  border-radius: var(--r-md);
  overflow: hidden;
  background: #151515;
  box-shadow: var(--shadow-sm);
}
.cat-thumb-bg img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.3s ease;
}
.cat-card:hover .cat-thumb-bg img { transform: scale(1.05); }

.cat-overlay {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  justify-content: flex-end;
  padding: 10px 12px;
  background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.9) 100%);
  transition: background 0.2s ease;
}
.cat-name {
  color: #ffffff; font-weight: 700; font-size: 13px;
  letter-spacing: -0.01em; line-height: 1.2;
  text-shadow: 0 1px 3px rgba(0,0,0,0.8);
}
.cat-count {
  color: #dcdcdc;
  font-size: 11px; font-weight: 500;
  font-variant-numeric: tabular-nums; margin-top: 2px;
}
.cat-card:hover .cat-thumb-bg { box-shadow: 0 0 0 2px var(--accent); }
.cat-card:hover .cat-overlay {
  background: linear-gradient(180deg, rgba(255, 0, 21, 0.1) 30%, rgba(0,0,0,0.95) 100%);
}

/* ── Sidebar ─────────────────────────────────────────────── */
aside .widget {
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  margin-bottom: 16px;
  overflow: hidden;
  background: var(--bg-card);
  box-shadow: var(--shadow-sm);
}
.widget-title {
  padding: 10px 14px;
  font-weight: 700; font-size: 11px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-alt);
  text-transform: uppercase; letter-spacing: 0.05em;
  color: #ffffff;
}

.sidebar-cat-list { list-style: none; margin: 0; padding: 0; }
.sidebar-cat-list li {
  display: flex; justify-content: space-between;
  padding: 8px 14px;
  border-bottom: 1px dashed var(--border);
  font-size: 13px;
}
.sidebar-cat-list li:last-child { border-bottom: 0; }
.sidebar-cat-list a { color: var(--text-soft); font-weight: 500; }
.sidebar-cat-list a:hover { color: var(--accent); }
.sidebar-cat-list .cnt { color: var(--text-muted); font-size: 11px; font-weight: 600; }

.tag-cloud { display: flex; flex-wrap: wrap; gap: 6px; padding: 12px 14px; }
.tag {
  display: inline-block;
  padding: 4px 10px; border-radius: 999px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  color: var(--text-soft); font-size: 12px; font-weight: 500;
  transition: all 0.15s ease;
}
.tag:hover { background: var(--accent-soft); border-color: var(--accent); color: #ffffff; }
.tag.active { background: var(--accent); color: #ffffff; border-color: var(--accent); }

.sidebar-videos { padding: 8px 0; }
.sidebar-videos a {
  display: flex; gap: 10px;
  padding: 8px 14px;
  color: var(--text-soft); text-decoration: none;
  border-bottom: 1px dashed var(--border);
  align-items: flex-start;
}
.sidebar-videos a:last-child { border-bottom: 0; }
.sidebar-videos a:hover { background: var(--bg-alt); color: #ffffff; }
.sv-thumb { flex-shrink: 0; width: 80px; border-radius: 4px; overflow: hidden; background: #151515; }
.sv-thumb img { width: 80px; height: 50px; object-fit: cover; display: block; }
.sv-title {
  font-size: 12px; font-weight: 600; line-height: 1.35;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.sv-meta { font-size: 11px; color: var(--text-muted); margin-top: 3px; }

/* ── Breadcrumb ──────────────────────────────────────────── */
.crumbs {
  display: flex; gap: 6px;
  font-size: 12px; color: var(--text-muted);
  margin: 14px 0 8px;
  align-items: center; flex-wrap: wrap;
}
.crumbs a { color: var(--text-soft); }
.crumbs .sep { opacity: 0.3; }
.crumbs .cur { color: #ffffff; font-weight: 600; }

/* ── Sort / Filter Bar ───────────────────────────────────── */
.sort-bar { display: flex; gap: 8px; align-items: center; margin-bottom: 14px; flex-wrap: wrap; }
.sort-label { font-size: 12px; color: var(--text-muted); font-weight: 500; }
.sort-btn {
  padding: 6px 14px; border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--bg-card); font-size: 12px; font-weight: 600;
  color: var(--text-soft); cursor: pointer; text-decoration: none;
  box-shadow: var(--shadow-sm);
  transition: all 0.15s ease;
}
.sort-btn:hover { border-color: var(--border-strong); color: #ffffff; background: var(--bg-alt); }
.sort-btn.active { background: var(--accent); color: #ffffff; border-color: var(--accent); }

/* ── Category Page Header ────────────────────────────────── */
.cat-page-head {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 16px 20px;
  margin: 12px 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
  box-shadow: var(--shadow-sm);
}
.cat-page-head h1 { margin: 0; font-size: 16px; font-weight: 700; letter-spacing: -0.01em; color: #ffffff; }
.cat-page-head h1 .accent { color: var(--accent); }
.cat-page-desc { color: var(--text-soft); font-size: 13px; margin-top: 4px; }
.cat-page-desc p, .cat-page-desc li { margin: 0 0 6px; line-height: 1.5; }
.cat-page-desc p:last-child { margin-bottom: 0; }
.cat-long-desc { color: var(--text-soft); font-size: 13px; line-height: 1.6; margin: 20px 0 14px; padding: 16px; background: var(--bg-card); border-radius: var(--r-md); border: 1px solid var(--border); box-shadow: var(--shadow-sm); }
.cat-long-desc p, .cat-long-desc li { margin: 0 0 6px; line-height: 1.5; }
.cat-long-desc p:last-child { margin-bottom: 0; }
.cat-page-stats { display: flex; gap: 18px; font-size: 12px; color: var(--text-muted); }
.cat-page-stats b { color: #ffffff; font-size: 15px; display: block; margin-top: 2px; }

/* ── Pagination ──────────────────────────────────────────── */
.pagination {
  display: flex; gap: 6px;
  justify-content: center;
  margin: 24px 0; flex-wrap: wrap;
}
.pagination a, .pagination span {
  min-width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  font-size: 13px; font-weight: 600;
  color: var(--text-soft); padding: 0 10px;
  background: var(--bg-card);
  box-shadow: var(--shadow-sm);
  transition: all 0.15s ease;
}
.pagination a:hover { border-color: var(--accent); color: var(--accent); background: var(--bg-alt); }
.pagination .cur { background: var(--accent); color: #ffffff; border-color: var(--accent); }
.pagination .gap { border: 0; color: var(--text-muted); background: transparent; box-shadow: none; }

/* ── Player Page ─────────────────────────────────────────── */
.player-box {
  background: #000000;
  border-radius: var(--r-md);
  overflow: hidden;
  position: relative;
  aspect-ratio: 16 / 9;
  margin-bottom: 14px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.player-box > * { width: 100%; height: 100%; border: 0; display: block; }

/* Facade-Play-Button (xvideos Klick-Klau-Schutz) */
.sf-play-facade {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0, 0, 0, 0.30);
  border: 0; padding: 0; cursor: pointer;
  transition: background 0.15s;
  z-index: 6;
}
.sf-play-facade:hover { background: rgba(0, 0, 0, 0.18); }
.sf-play-circle {
  position: relative;
  width: 76px; height: 76px;
  border-radius: 50%;
  background: var(--accent, #6fbf19);
  box-shadow: 0 4px 22px rgba(0, 0, 0, 0.55);
  transition: transform 0.15s;
}
.sf-play-facade:hover .sf-play-circle { transform: scale(1.06); }
.sf-play-circle::after {
  content: '';
  position: absolute;
  top: 50%; left: 54%;
  transform: translate(-50%, -50%);
  width: 0; height: 0;
  border-style: solid;
  border-width: 16px 0 16px 26px;
  border-color: transparent transparent transparent #ffffff;
}

/* Transparente Schutzschicht ueber dem Video; untere Steuerleiste bleibt frei */
.sf-shield {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 52px;
  width: auto; height: auto;
  background: transparent;
  z-index: 5;
  cursor: default;
}

.film-title {
  font-size: 17px; font-weight: 700;
  letter-spacing: -0.01em; margin: 0 0 10px;
  color: #ffffff;
}
.film-meta-row {
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 12px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 12px; margin-bottom: 14px;
}
.film-stats {
  display: flex; gap: 16px;
  font-size: 13px; color: var(--text-soft); align-items: center;
}
.film-stats strong { color: #ffffff; }
.film-actions { display: flex; gap: 6px; flex-wrap: wrap; }

.action-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 14px; border-radius: var(--r-sm);
  font-size: 13px; font-weight: 600;
  border: 1px solid var(--border-strong);
  background: var(--bg-card); color: var(--text-soft);
  cursor: pointer; text-decoration: none; white-space: nowrap;
  box-shadow: var(--shadow-sm);
  transition: all 0.15s ease;
}
.action-btn:hover { border-color: var(--accent); color: #ffffff; background: var(--accent-soft); }
.action-btn.primary { background: var(--accent); color: #ffffff; border-color: var(--accent); }
.action-btn.primary:hover { background: var(--accent-hover); border-color: var(--accent-hover); color: #ffffff; }

.film-rating-bar {
  height: 6px; background: #6fbf19;
  border-radius: 999px; overflow: hidden;
  width: 110px; display: inline-block;
  vertical-align: middle; margin-right: 6px;
}
.film-rating-fill { display: block; height: 100%; background: var(--accent); }
.film-rating-pct { color: var(--accent); font-weight: 700; }

.film-tags { display: flex; flex-wrap: wrap; gap: 6px; margin: 12px 0; }
.film-tag {
  display: inline-block;
  padding: 4px 10px; border-radius: 999px;
  background: var(--bg-alt); border: 1px solid var(--border);
  color: var(--text-soft); font-size: 12px; font-weight: 500;
  transition: all 0.15s ease;
}
.film-tag:hover { background: var(--accent-soft); border-color: var(--accent); color: #ffffff; }

.film-cat {
  background: var(--bg-alt); border-color: var(--border-strong);
  color: #ffffff; font-weight: 600;
}
.film-cat:hover { background: var(--accent); color: #ffffff; }

.film-desc { font-size: 14px; color: var(--text-soft); line-height: 1.6; margin-bottom: 14px; }

.rate-form { display: inline-flex; gap: 8px; align-items: center; margin: 10px 0; }
.rate-label { font-size: 13px; color: var(--text-muted); }

/* Comments */
.comments { border-top: 1px solid var(--border); padding-top: 18px; margin-top: 14px; }
.comments h3 { margin: 0 0 12px; font-size: 14px; font-weight: 700; color: #ffffff; }
.comment-form { display: flex; gap: 10px; margin-bottom: 16px; }
.comment-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--bg-alt); display: flex;
  align-items: center; justify-content: center;
  font-size: 13px; color: var(--text-muted);
  font-weight: 700; flex-shrink: 0;
  border: 1px solid var(--border);
}
.comment-form textarea,
.comment-form input[type="text"] {
  border: 1px solid var(--border-strong);
  border-radius: var(--r-md); padding: 10px 12px;
  font-family: inherit; font-size: 13px; outline: 0;
  background: #202020; color: #ffffff;
  box-shadow: var(--shadow-sm);
}
.comment-form textarea { resize: vertical; min-height: 64px; }
.comment-form textarea:focus,
.comment-form input[type="text"]:focus { border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }
.comment-item {
  display: flex; gap: 10px;
  padding: 12px 0; border-bottom: 1px dashed var(--border);
}
.comment-item:last-child { border-bottom: 0; }
.comment-item .comment-avatar {
  width: 32px; height: 32px;
  font-size: 12px; color: var(--text-soft);
}
.comment-body { flex: 1; }
.comment-who { font-weight: 700; font-size: 13px; color: #ffffff; }
.comment-when { color: var(--text-muted); font-size: 11px; margin-left: 6px; font-weight: normal; }
.comment-text { margin: 4px 0 6px; font-size: 13px; color: var(--text-soft); line-height: 1.5; }

/* ── Search / No results ─────────────────────────────────── */
.no-results { text-align: center; padding: 48px 0; color: var(--text-muted); }
.no-results h2 { font-size: 15px; font-weight: 700; margin-bottom: 8px; color: #ffffff; }

/* ── Static pages ────────────────────────────────────────── */
.static-page { max-width: 780px; padding: 8px 0 40px; }
.static-page h1 { font-size: 16px; margin-bottom: 14px; font-weight: 700; color: #ffffff; }
.static-page h2 { font-size: 13px; font-weight: 700; margin: 20px 0 8px; color: #ffffff; }
.static-page h3 { font-size: 12px; font-weight: 700; margin: 16px 0 6px; color: #ffffff; }
.static-page p { color: var(--text-soft); line-height: 1.6; margin-bottom: 12px; font-size: 14px; }
.static-page ul, .static-page ol { color: var(--text-soft); font-size: 14px; line-height: 1.6; padding-left: 22px; margin-bottom: 12px; }
.static-page li { margin-bottom: 4px; }
.static-page a { color: var(--accent); }
.static-page strong { color: #ffffff; font-weight: 600; }

/* ── 404 ─────────────────────────────────────────────────── */
.error-page { text-align: center; padding: 64px 16px; }
.error-page h1 {
  font-size: 64px; font-weight: 900; color: var(--accent);
  letter-spacing: -2px; margin: 0;
}
.error-page h2 { font-size: 18px; font-weight: 700; margin: 8px 0 12px; color: #ffffff; }
.error-page p { color: var(--text-soft); margin-bottom: 24px; }

/* ── Footer ──────────────────────────────────────────────── */
.site-footer {
  background: #0d0d0d;
  color: var(--text-soft);
  margin-top: 32px; padding: 32px 0 0;
  border-top: 1px solid var(--border);
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px; padding-bottom: 24px;
}
@media (max-width: 720px) { .footer-cols { grid-template-columns: 1fr; } }
.footer-brand p { font-size: 13px; color: var(--text-muted); margin: 8px 0 12px; line-height: 1.6; max-width: 36ch; }
.age-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 2px 8px; border: 1px solid var(--border-strong); border-radius: 4px;
  color: #ffffff; font-weight: 700; font-size: 11px;
}
.site-footer h4 { color: #ffffff; font-size: 12px; margin: 0 0 12px; text-transform: uppercase; letter-spacing: 0.06em; font-weight: 700; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer ul li { padding: 4px 0; font-size: 13px; }
.site-footer ul a { color: var(--text-soft); transition: color 0.15s ease; }
.site-footer ul a:hover { color: #ffffff; }
.footer-bottom {
  border-top: 1px solid var(--border); padding: 14px 0;
  display: flex; justify-content: space-between;
  font-size: 11px; color: var(--text-muted); flex-wrap: wrap; gap: 8px;
}
.footer-links { color: var(--text-muted); }
.footer-links:hover { color: #ffffff; }

/* ── Tags A-Z ────────────────────────────────────────────── */
.tags-total { font-size: 0.6em; color: var(--text-muted); font-weight: 400; margin-left: 4px; }

.az-nav {
  display: flex; flex-wrap: wrap; gap: 4px;
  margin-bottom: 28px;
  padding: 12px 16px;
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
}
.az-nav a {
  display: inline-block; min-width: 28px; padding: 4px 6px;
  text-align: center; font-size: 13px; font-weight: 700;
  color: var(--accent); border-radius: 4px; text-decoration: none;
  transition: background .15s, color .15s;
}
.az-nav a:hover { background: var(--accent); color: #ffffff; }

.az-section { margin-bottom: 28px; }
.az-letter {
  font-size: 18px; font-weight: 800; color: var(--accent);
  border-bottom: 2px solid var(--accent); padding-bottom: 4px;
  margin-bottom: 12px; line-height: 1;
}
.az-tags { columns: 3; column-gap: 16px; }
.az-tag {
  display: block; break-inside: avoid;
  padding: 4px 0; color: var(--text-soft); font-size: 13px;
  text-decoration: none; white-space: nowrap; overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 500;
}
.az-tag:hover { color: var(--accent); }
.az-count { font-size: 11px; color: var(--text-muted); margin-left: 3px; font-weight: 600; }
@media (max-width: 720px) { .az-tags { columns: 2; } }

/* ══════════════════════════════════════════════════════════════
   Mobile Optimierungen
   ══════════════════════════════════════════════════════════════ */

@media (max-width: 720px) {
  .page-layout {
    display: block !important;
  }
  .page-layout > aside,
  .page-layout > div {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden;
  }
}

@media (max-width: 640px) {
  .topbar { display: none; }
}

@media (max-width: 720px) {
  .site-header .shell {
    flex-wrap: wrap;
    gap: 8px;
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .logo { padding: 4px 6px; }
  .search-form {
    order: 10;
    width: 100%;
    max-width: 100%;
    flex: none;
  }
  .search-form button {
    padding: 0 14px;
    font-size: 11px;
    letter-spacing: 0;
    text-transform: none;
    min-width: 44px;
  }
}

@media (max-width: 720px) {
  .burger { display: flex; }
  .burger span { background: #ffffff; }

  .main-nav {
    position: static;
    display: none;
    border-bottom: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 200;
    background: #151515;
  }
  .main-nav.open { display: block; }

  .main-nav .shell {
    display: block !important;
    overflow-x: visible;
    -webkit-mask-image: none !important;
    mask-image: none !important;
    padding: 0;
  }
  .main-nav .shell > nav,
  .main-nav .shell > div,
  .main-nav .shell > ul {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    gap: 0 !important;
    align-items: stretch !important;
    padding: 0 !important;
    margin: 0 !important;
    list-style: none !important;
  }
  .main-nav a {
    display: flex !important;
    align-items: center;
    padding: 13px 16px;
    min-height: 44px;
    border-bottom: 1px solid var(--border) !important;
    margin-bottom: 0;
    white-space: normal;
    width: 100%;
    box-sizing: border-box;
    color: var(--text-soft);
  }
  .main-nav a:last-child { border-bottom: 0 !important; }
  .main-nav a.active {
    color: var(--accent);
    background: var(--accent-soft);
  }
}

@media (max-width: 1100px) {
  .ad-halfpage { min-height: 250px; }
}

@media (max-width: 480px) {
  .section-hd {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
}

@media (max-width: 600px) {
  .film-title { font-size: 15px; }
  .film-stats { flex-wrap: wrap; gap: 4px; font-size: 12px; }
  .film-actions { gap: 4px; }
  .film-actions .action-btn { padding: 7px 10px; font-size: 12px; }
  .film-actions .action-btn:nth-child(n+4) { display: none; }
}

@media (max-width: 720px) {
  .film-tag  { min-height: 36px; padding: 7px 12px; }
  .tag       { min-height: 36px; padding: 7px 10px; }
  .az-tag    { min-height: 36px; padding: 6px 0; }
  .sidebar-cat-list li { padding: 10px 14px; }
  .sort-btn  { min-height: 36px; }
}

.cat-name  { display: block; }
.cat-count { display: block; }

.FooterBar {
    list-style: none;
    padding: 0;
    margin: 10px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.FooterBar li {
    display: inline;
}

.FooterBar a {
    text-decoration: none;
}

/* ---------- mobile bottom-leiste ---------- */
:root { --bottombar-h: 56px; }
body { padding-bottom: var(--bottombar-h); }
.bottombar {
  position: fixed; left: 0; right: 0; bottom: 0;
  z-index: 50;
  display: flex;
  height: calc(var(--bottombar-h) + env(safe-area-inset-bottom, 0px));
  padding-bottom: env(safe-area-inset-bottom, 0px);
  background: #171717;
  border-top: 1px solid var(--border-strong);
  box-shadow: 0 -4px 16px rgba(0,0,0,0.12);
}
.bottombar a {
  flex: 1;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 3px;
  color: var(--text-soft);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-align: center;
}
.bottombar a svg { width: 22px; height: 22px; }
.bottombar a:hover { color: var(--accent); }
.bottombar a.active { color: var(--accent); background: var(--accent-soft); }
@media (min-width: 1024px) {
  .bottombar { display: none; }
  body { padding-bottom: 0; }
}
/* Home-H1 (SEO-Hauptüberschrift) */
.home-h1 { font-size: 20px; font-weight: 700; color: var(--text); margin: 14px 0 4px; line-height: 1.3; }
@media (max-width: 720px) { .home-h1 { font-size: 17px; } }

/* ══════════════════════════════════════════════════════════════
   XORGASMO-SKIN — dunkel (#0f0f0f) + Bravoporno-Rot Akzent
   Vollbreite 5-Spalten-Grid, Pill-Nav, zentrierte Suche
   ══════════════════════════════════════════════════════════════ */

/* Vollbreite auf Browse-Seiten (keine Sidebar) — Video-Seite behält ihre Sidebar (verwandte Videos) */
.page-layout:not(:has(.sidebar-videos)) { display: block; }
.page-layout:not(:has(.sidebar-videos)) > aside { display: none; }
.shell { max-width: 1400px; }

/* Header: Logo links, Suche mittig/breit, Aktionen rechts */
.site-header .shell { display: flex; align-items: center; gap: 20px; padding-top: 10px; padding-bottom: 10px; }
.site-header .logo { flex: 0 0 auto; }
.search-form { flex: 1 1 auto; max-width: 620px; margin: 0 auto; }
.search-form input[type="search"] {
  width: 100%; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.10);
  color: var(--text); border-radius: 10px; padding: 11px 16px; font-size: 14px;
}
.search-form input[type="search"]:focus { border-color: var(--accent); outline: none; }
.search-form button { background: var(--accent); color: #fff; border: none; border-radius: 10px; }

/* Sub-Nav als Pills (xorgasmo-Stil) */
.main-nav { background: transparent; border: none; }
.main-nav .shell { gap: 8px; padding-top: 8px; padding-bottom: 8px; flex-wrap: wrap; }
.main-nav a {
  background: #1a1a1a; border: 1px solid var(--border); color: var(--text-soft);
  padding: 7px 14px; border-radius: 999px; font-size: 13px; font-weight: 600;
  white-space: nowrap; transition: all .15s ease;
}
.main-nav a:hover, .main-nav a.active { background: var(--accent); border-color: var(--accent); color: #fff; }

/* Topbar dezent */
.topbar { background: #0b0b0b; border-bottom: 1px solid var(--border); }
.topbar a:hover { color: var(--accent); }

/* Section-Header: roter Balken links + Akzent */
.section-hd { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.section-title {
  font-size: 17px; font-weight: 800; display: flex; align-items: center; gap: 9px;
  padding-left: 12px; border-left: 4px solid var(--accent); text-transform: none;
}
.section-title .accent { color: var(--accent); }
.section-more { color: var(--text-muted); font-size: 13px; font-weight: 600; }
.section-more:hover { color: var(--accent); }

/* Video-Karten: xorgasmo-Look */
.video-card { background: transparent; border: none; box-shadow: none; }
.video-card:hover { box-shadow: none; transform: none; }
.video-thumb-wrap { border-radius: 8px; overflow: hidden; background: #000; }
.video-info { padding: 8px 2px 0; }
.video-title { font-size: 13.5px; font-weight: 600; color: var(--text); line-height: 1.35; }
.video-card:hover .video-title { color: var(--accent); }
.video-meta { color: var(--text-muted); font-size: 11.5px; margin-top: 5px; gap: 10px; }
.rating-pct { color: var(--accent); }
.rating-fill { background: var(--accent); }
.video-duration { background: rgba(0,0,0,.82); color: #fff; font-weight: 600; border-radius: 4px; }
.badge-new { background: var(--accent); color: #fff; }
.badge-top { background: #ffcc00; color: #111; }

/* Kategorie-Kacheln etwas dichter */
.cat-grid { grid-template-columns: repeat(6, 1fr); }
@media (max-width:1200px){ .cat-grid { grid-template-columns: repeat(4,1fr); } }
@media (max-width:700px){ .cat-grid { grid-template-columns: repeat(2,1fr); } }

/* ── XORGASMO-SKIN: Mobile-Korrekturen (nach den Overrides, damit Mobile stimmt) ── */
@media (max-width: 720px) {
  /* Header: Logo + Burger oben, Suche Vollbreite darunter */
  .site-header .shell { flex-wrap: wrap; gap: 8px; padding-top: 10px; padding-bottom: 10px; }
  .search-form { order: 10; flex: 1 0 100%; width: 100%; max-width: 100%; margin: 0; }
  /* Mobile-Nav-Dropdown: Hintergrund zurück + Menüpunkte als volle Zeilen (keine engen Pills) */
  .main-nav { background: #151515; }
  .main-nav a {
    display: block; width: 100%; text-align: left;
    background: transparent; border: none; border-bottom: 1px solid var(--border);
    border-radius: 0; padding: 12px 16px;
  }
  .main-nav a:hover, .main-nav a.active { background: var(--accent-soft); color: var(--accent); }
}
@media (max-width: 600px) {
  .section-title { font-size: 15px; }
  .video-title { font-size: 13px; }
}

/* Porno-Links-Seite komplett zentriert (nur diese statische Seite) */
.static-page.page-porno-links { text-align: center; }
.static-page.page-porno-links h1,
.static-page.page-porno-links h2,
.static-page.page-porno-links p,
.static-page.page-porno-links ul { text-align: center; list-style-position: inside; }

/* ── Sexgeschichten ─────────────────────────────────────────── */
.story-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
@media (max-width: 700px) { .story-list { grid-template-columns: 1fr; } }
.story-card { display: flex; flex-direction: column; background: var(--bg-card); border: 1px solid var(--border); border-radius: 10px; padding: 18px 20px; text-decoration: none; color: var(--text); transition: border-color .15s, transform .15s; }
.story-card:hover { border-color: var(--accent); transform: translateY(-2px); }
.story-card-title { font-size: 17px; line-height: 1.35; margin-bottom: 8px; color: var(--text); }
.story-card:hover .story-card-title { color: var(--accent); }
.story-card-ex { font-size: 13.5px; color: var(--text-muted); line-height: 1.6; margin: 0 0 12px; flex: 1; }
.story-card-more { font-size: 13px; color: var(--accent); font-weight: 600; }
.story-article { background: var(--bg-card); border: 1px solid var(--border); border-radius: 10px; padding: 28px 32px; max-width: 840px; }
@media (max-width: 700px) { .story-article { padding: 20px; } }
.story-title { font-size: 26px; line-height: 1.25; margin-bottom: 20px; }
.story-body { font-size: 16px; line-height: 1.75; color: var(--text-soft); }
.story-body h2 { font-size: 20px; margin: 28px 0 12px; color: var(--text); }
.story-body h3 { font-size: 17px; margin: 22px 0 10px; color: var(--text); }
.story-body p { margin: 0 0 16px; }
.story-breadcrumb a { color: var(--accent); text-decoration: none; }
.story-breadcrumb a:hover { text-decoration: underline; }


/* ════ ALPENRAMMLER-ORIGINAL-SKIN (1:1 aus WP-Custom-CSS übernommen) ════ */

/* Body: Smaragd-Radial-Gradient + Inter (wie Original) */
body {
  background: radial-gradient(circle at top, #0f3d0f 0%, #051405 70%, #000000 100%);
  background-attachment: fixed;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
}

/* Header: Berg-Panorama als Hintergrund (repeat-x), 180px hoch */
.site-header {
  background: #0a2f0a url('../../berge-header.jpg') repeat-x center bottom;
  min-height: 180px;
  display: flex;
  align-items: center;
  border-bottom: 0;
}
.site-header .shell { width: 100%; }

/* Logo: volle Größe mit grünem Glow (wie Original max 300x128) */
.logo { background: none; padding: 0; }
.logo img {
  height: 110px; width: auto; display: block;
  filter: drop-shadow(0px 0px 12px rgba(50, 255, 126, 0.5));
}

/* Suche im Header: dunkel + grüner Button */
.search-form input[type="search"] {
  background: rgba(5, 20, 5, 0.9);
  border: 1px solid #1e4d1e;
  color: #ffffff;
}
.search-form input[type="search"]:focus { border-color: #32ff7e; }
.search-form button {
  background: #2ecc71; color: #000; font-weight: 700;
  transition: all .2s ease-in-out;
}
.search-form button:hover { background: #f1c40f; color: #000; box-shadow: 0 0 20px rgba(241, 196, 15, 0.7); }

/* Navigation: dunkles Waldgrün + Neon-Unterkante + Glow (wie Original) */
.main-nav {
  background: #081a08;
  border-bottom: 3px solid #32ff7e;
  box-shadow: 0 4px 15px rgba(50, 255, 126, 0.2);
}
.main-nav a { color: #ffffff; }
.main-nav a:hover { background: #1a4d1a; color: #ffffff; }
.main-nav a.active { background: #008000; color: #ffffff; }

/* H1 gelb + uppercase (Original-Typografie) */
h1, .home-h1, .story-title {
  color: #f1c40f;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 800;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}
.home-h1 { font-size: 17px; }

/* Section-Titel: dunkelgrüner Balken mit gelber Kante (wie widget-title) */
.section-title, .cat-page-head h1 {
  background: rgba(15, 60, 15, 0.85);
  color: #ffffff;
  padding: .4em .8em;
  border-left: 6px solid #f1c40f;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
  border-radius: 0 4px 4px 0;
}
.section-title .accent { color: #32ff7e; }
.cat-page-head h1 { text-transform: none; font-size: 16px; }

/* Karten: Neon-grüne Ränder (wie Original 1px #32ff7e) */
.video-card .video-thumb-wrap, .cat-thumb-bg {
  border: 1px solid #32ff7e;
  border-radius: 6px;
  background: #0a1f0a;
}
.video-card:hover .video-thumb-wrap, .cat-card:hover .cat-thumb-bg { border-color: #f1c40f; }
.story-card { border-color: #32ff7e; }
.story-card:hover { border-color: #f1c40f; }

/* Buttons: sattes Grün, schwarzer Text, Hover gelb + Glow (Original) */
.action-btn, .btn, button[type="submit"], .pagination a.current {
  transition: all .2s ease-in-out;
}
.action-btn.primary, .btn-primary {
  background: #2ecc71; color: #000; font-weight: 700; border: 0;
}
.action-btn.primary:hover, .btn-primary:hover {
  background: #f1c40f; color: #000;
  box-shadow: 0 0 20px rgba(241, 196, 15, 0.7);
}

/* Links in Fließtexten: Original-Grün, Hover neon */
.cat-page-desc a, .cat-long-desc a, .story-body a, .comments a {
  color: #00a000; font-weight: 600; text-decoration: none;
}
.cat-page-desc a:hover, .cat-long-desc a:hover, .story-body a:hover { color: #32ff7e; }

/* Scrollbar Neon-Grün (Original) */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #051405; }
::-webkit-scrollbar-thumb { background: linear-gradient(#32ff7e, #1e8449); border-radius: 5px; }

/* Topbar minimal dunkler (über den Bergen) */
.topbar { background: #000000; }

/* Mobile: Header kompakter, Logo kleiner */
@media (max-width: 768px) {
  .site-header { min-height: 120px; }
  .logo img { height: 72px; }
}

/* ── Lesbarkeit: Kategorie-/Home-Beschreibungstexte größer (waren 13px) ── */
.cat-page-desc { font-size: 16px; line-height: 1.7; color: #e8f4e8; }
.cat-page-desc p, .cat-page-desc li { line-height: 1.7; margin: 0 0 10px; }
.cat-long-desc { font-size: 16px; line-height: 1.75; color: #e8f4e8; padding: 20px 24px; }
.cat-long-desc p, .cat-long-desc li { line-height: 1.75; margin: 0 0 12px; }
.cat-long-desc h2, .cat-page-desc h2 { font-size: 18px; color: #ffffff; margin: 18px 0 10px; }
.cat-long-desc h3, .cat-page-desc h3 { font-size: 16px; color: #ffffff; margin: 14px 0 8px; }
.cat-long-desc h2:first-child, .cat-page-desc h2:first-child { margin-top: 0; }

/* ── Home-Texte kleiner (Index war zu groß); Kategorie-Texte normal statt fett ── */
.cat-page-desc.home-desc { font-size: 13.5px; line-height: 1.65; }
.cat-long-desc.home-desc { font-size: 13.5px; line-height: 1.65; }
.cat-page-desc.home-desc h2, .cat-long-desc.home-desc h2 { font-size: 15px; }
.cat-page-desc.home-desc h3, .cat-long-desc.home-desc h3 { font-size: 14px; }
/* Kategorie-Beschreibungen: kein Fettdruck (WP-<strong>/<b> normal darstellen) */
.cat-page-desc:not(.home-desc) strong, .cat-page-desc:not(.home-desc) b,
.cat-long-desc:not(.home-desc) strong, .cat-long-desc:not(.home-desc) b { font-weight: 400; }

/* ── Home-Feinabstand: Menü↔Überschrift Luft, Kategorien-Grid dichter (Label raus) ── */
.shell .home-h1 { margin-top: 26px; }
.section-cats { margin-top: 6px; }

/* ── Kategorie-Beschreibungstexte: finale Schriftgrößen/Gewichte (nach h6→p-Bereinigung) ── */
.cat-long-desc:not(.home-desc) p, .cat-page-desc:not(.home-desc) p { font-size: 16px; line-height: 1.75; font-weight: 400; margin: 0 0 12px; color: #e8f4e8; }
.cat-long-desc:not(.home-desc) h2, .cat-page-desc:not(.home-desc) h2 {
  font-size: 19px; font-weight: 700; color: #ffffff; margin: 22px 0 10px;
  text-transform: none; letter-spacing: 0; text-shadow: none;
}
.cat-long-desc:not(.home-desc) h2:first-child, .cat-page-desc:not(.home-desc) h2:first-child { margin-top: 0; }
.cat-long-desc:not(.home-desc) h3, .cat-page-desc:not(.home-desc) h3 { font-size: 17px; font-weight: 700; color: #ffffff; margin: 18px 0 8px; }
/* Überschriften fett halten trotz globalem strong→400-Override, Fließtext-strong bleibt normal */
.cat-long-desc:not(.home-desc) h2 strong, .cat-page-desc:not(.home-desc) h2 strong,
.cat-long-desc:not(.home-desc) h3 strong, .cat-page-desc:not(.home-desc) h3 strong { font-weight: 700; }

/* ── Kategorie-Texte: kein Fett, kompakter (User-Wunsch) ── */
.cat-long-desc:not(.home-desc), .cat-page-desc:not(.home-desc) { font-size: 14.5px; }
.cat-long-desc:not(.home-desc) p, .cat-page-desc:not(.home-desc) p { font-size: 14.5px; line-height: 1.7; font-weight: 400; margin: 0 0 10px; }
.cat-long-desc:not(.home-desc) h2, .cat-page-desc:not(.home-desc) h2 { font-size: 15.5px; font-weight: 400; color: #ffffff; margin: 16px 0 6px; }
.cat-long-desc:not(.home-desc) h3, .cat-page-desc:not(.home-desc) h3 { font-size: 15px; font-weight: 400; color: #ffffff; margin: 14px 0 6px; }
/* jegliches Fett (auch in Überschriften) auf normal */
.cat-long-desc:not(.home-desc) strong, .cat-page-desc:not(.home-desc) strong,
.cat-long-desc:not(.home-desc) b, .cat-page-desc:not(.home-desc) b,
.cat-long-desc:not(.home-desc) h2 strong, .cat-page-desc:not(.home-desc) h2 strong,
.cat-long-desc:not(.home-desc) h3 strong, .cat-page-desc:not(.home-desc) h3 strong { font-weight: 400; }

/* ── Kategorie-Texte auf Pill-Größe (Inter 12px, User-Wunsch) ── */
.cat-long-desc:not(.home-desc), .cat-page-desc:not(.home-desc),
.cat-long-desc:not(.home-desc) p, .cat-page-desc:not(.home-desc) p { font-size: 12px; line-height: 1.6; font-weight: 400; color: #dceccc; }
.cat-long-desc:not(.home-desc) h2, .cat-page-desc:not(.home-desc) h2 { font-size: 13px; font-weight: 400; color: #ffffff; margin: 14px 0 5px; }
.cat-long-desc:not(.home-desc) h3, .cat-page-desc:not(.home-desc) h3 { font-size: 12px; font-weight: 400; color: #ffffff; margin: 12px 0 5px; }

/* ── Sexgeschichten-Voting (10 Sterne, alpenporno-Stil) ── */
.story-voting { background: var(--bg-card); border: 1px solid var(--border); border-radius: 10px; padding: 16px 20px; margin-top: 26px; }
.story-voting-head { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-bottom: 12px; }
.story-voting-avg { font-size: 26px; font-weight: 800; color: #f1c40f; line-height: 1; }
.story-voting-max { color: var(--text-muted); font-size: 14px; margin-left: -6px; }
.story-voting-stars, .story-vote-stars { display: inline-flex; }
.story-star { font-size: 20px; line-height: 1; color: #33402f; }
.story-star-full { color: #f1c40f; }
.story-star-half { position: relative; color: #33402f; }
.story-star-half::after { content: "\2605"; position: absolute; left: 0; top: 0; width: 50%; overflow: hidden; color: #f1c40f; }
.story-voting-count { color: var(--text-muted); font-size: 13px; }
.story-voting-input { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; border-top: 1px solid var(--border); padding-top: 12px; }
.story-voting-label { font-size: 13px; color: var(--text-soft); }
.story-vote-btn { background: none; border: none; cursor: pointer; font-size: 23px; line-height: 1; color: #33402f; padding: 0 1px; transition: transform .1s, color .1s; }
.story-vote-btn:hover, .story-vote-btn.on { color: #f1c40f; transform: scale(1.18); }
.story-vote-btn:disabled { cursor: default; }
.story-voting-msg { font-size: 13px; color: #32ff7e; margin-left: 6px; }
/* Rating in der Story-Liste */
.story-card-rating { display: inline-flex; align-items: center; gap: 5px; font-size: 12px; color: var(--text-muted); margin-bottom: 8px; }
.story-card-rating .story-star { font-size: 13px; }
.story-card-rating b { color: #f1c40f; font-size: 13px; }
