/* =========================================================
   Amateur-Pornofilme.com — Dark Theme
   Designsystem: Rot-Akzent auf dunklem Grund, hoher Kontrast
   ========================================================= */

:root {
    --bg:           #0d0d10;
    --bg-alt:       #15151a;
    --bg-card:      #1c1c22;
    --bg-elevated:  #25252c;
    --border:       #2d2d36;
    --text:         #eaeaef;
    --text-muted:   #9a9aa8;
    --text-dim:     #6d6d7a;
    --accent:       #e50914;
    --accent-hover: #ff1a25;
    --accent-soft:  rgba(229, 9, 20, 0.15);
    --gold:         #ffb400;
    --radius:       8px;
    --radius-lg:    14px;
    --shadow:       0 4px 20px rgba(0, 0, 0, 0.4);
    --max-width:    1400px;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
}

a { color: inherit; text-decoration: none; }
a:hover { color: var(--accent); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* =========================================================
   AGE GATE
   ========================================================= */
.age-gate {
    position: fixed; inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: flex; align-items: center; justify-content: center;
    padding: 20px;
}
.age-gate__box {
    max-width: 500px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow);
}
.age-gate__box h1 { font-size: 1.8rem; margin-bottom: 15px; color: var(--accent); }
.age-gate__box p { color: var(--text-muted); margin-bottom: 25px; }
.age-gate__actions { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
    background: var(--bg-alt);
    border-bottom: 1px solid var(--border);
    position: sticky; top: 0; z-index: 100;
    backdrop-filter: blur(10px);
}
.site-header__inner {
    display: flex; align-items: center; justify-content: space-between;
    height: 70px;
    gap: 30px;
}
.logo {
    font-size: 1.3rem; font-weight: 800;
    letter-spacing: -0.5px;
    white-space: nowrap;
}
.logo__amateur { color: var(--text); }
.logo__porn    { color: var(--accent); }
.logo__dot     { color: var(--text-muted); font-weight: 400; }

.main-nav ul { display: flex; gap: 5px; }
.main-nav a {
    display: block;
    padding: 10px 16px;
    border-radius: var(--radius);
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.15s;
}
.main-nav a:hover {
    background: var(--bg-elevated);
    color: var(--text);
}

.nav-toggle {
    display: none;
    background: transparent;
    border: 0;
    width: 40px; height: 40px;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    padding: 0;
}
.nav-toggle span {
    display: block;
    height: 2px; width: 24px;
    background: var(--text);
    border-radius: 2px;
    margin: 0 auto;
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 10px 20px;
    border: 1px solid transparent;
    border-radius: var(--radius);
    font-weight: 600; font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.15s;
    text-decoration: none;
    white-space: nowrap;
}
.btn--primary {
    background: var(--accent);
    color: #fff;
}
.btn--primary:hover {
    background: var(--accent-hover);
    color: #fff;
    transform: translateY(-1px);
}
.btn--ghost {
    background: transparent;
    border-color: var(--border);
    color: var(--text);
}
.btn--ghost:hover {
    background: var(--bg-elevated);
    border-color: var(--text-muted);
    color: var(--text);
}
.btn--lg { padding: 14px 28px; font-size: 1rem; }
.btn--sm { padding: 6px 14px; font-size: 0.85rem; }

/* =========================================================
   HERO
   ========================================================= */
.hero {
    padding: 80px 0 60px;
    background: linear-gradient(135deg, #15151a 0%, #1c0e12 100%);
    border-bottom: 1px solid var(--border);
    text-align: center;
}
.hero__title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 15px;
    background: linear-gradient(to right, #fff, #e50914);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero__subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 30px;
}
.hero__cta { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; }

/* =========================================================
   PAGE HEADER
   ========================================================= */
.page-header {
    padding: 50px 0 30px;
    background: var(--bg-alt);
    border-bottom: 1px solid var(--border);
}
.page-header h1 {
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    font-weight: 800;
    margin-bottom: 10px;
}
.page-header__subtitle { color: var(--text-muted); font-size: 1.05rem; }

.tabs { margin-top: 25px; display: flex; gap: 8px; flex-wrap: wrap; }
.tab {
    padding: 8px 18px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 100px;
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.15s;
}
.tab:hover { color: var(--text); border-color: var(--text-muted); }
.tab--active {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}
.tab--active:hover { color: #fff; }

/* =========================================================
   SECTIONS
   ========================================================= */
.section { padding: 50px 0; }
.section--alt { background: var(--bg-alt); }

.section__header {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 25px;
    gap: 20px; flex-wrap: wrap;
}
.section__header h2 {
    font-size: clamp(1.3rem, 3vw, 1.7rem);
    font-weight: 700;
}
.section__more {
    color: var(--accent);
    font-weight: 600;
    font-size: 0.95rem;
}
.section__more:hover { color: var(--accent-hover); }
.section__meta { color: var(--text-muted); font-size: 0.9rem; }

/* =========================================================
   GRID
   ========================================================= */
.grid { display: grid; gap: 20px; }
.grid--videos     { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
.grid--amateurs   { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
.grid--categories { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }

/* =========================================================
   VIDEO CARD
   ========================================================= */
.video-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.2s;
}
.video-card:hover {
    transform: translateY(-3px);
    border-color: var(--accent);
    box-shadow: var(--shadow);
}
.video-card__thumb {
    display: block;
    position: relative;
    aspect-ratio: 16 / 10;
    background: var(--bg-elevated);
    overflow: hidden;
}
.video-card__thumb img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}
.video-card:hover .video-card__thumb img { transform: scale(1.05); }
.video-card__placeholder {
    width: 100%; height: 100%;
    background: linear-gradient(135deg, #25252c, #1c1c22);
}
.video-card__time {
    position: absolute; bottom: 8px; right: 8px;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
}
.video-card__play {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 50px; height: 50px;
    background: rgba(229, 9, 20, 0.9);
    color: #fff;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
    opacity: 0;
    transition: opacity 0.2s;
    padding-left: 3px;
}
.video-card:hover .video-card__play { opacity: 1; }

.video-card__meta { padding: 12px 14px; }
.video-card__title {
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.video-card__title a { color: var(--text); }
.video-card__title a:hover { color: var(--accent); }

.video-card__info {
    display: flex; justify-content: space-between; align-items: center;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}
.video-card__amateur { color: var(--accent); font-weight: 500; }
.video-card__amateur:hover { color: var(--accent-hover); }
.video-card__rating { color: var(--gold); font-size: 0.85rem; letter-spacing: 1px; }

.video-card__cats { display: flex; gap: 5px; flex-wrap: wrap; }
.tag {
    display: inline-block;
    padding: 2px 8px;
    background: var(--bg-elevated);
    color: var(--text-muted);
    border-radius: 100px;
    font-size: 0.75rem;
    transition: all 0.15s;
}
.tag:hover { background: var(--accent-soft); color: var(--accent); }

/* =========================================================
   AMATEUR CARD
   ========================================================= */
.amateur-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.2s;
    text-align: center;
}
.amateur-card:hover {
    transform: translateY(-3px);
    border-color: var(--accent);
    box-shadow: var(--shadow);
}
.amateur-card__thumb {
    display: block;
    aspect-ratio: 1 / 1;
    background: var(--bg-elevated);
    overflow: hidden;
}
.amateur-card__thumb img { width: 100%; height: 100%; object-fit: cover; }
.amateur-card__placeholder { width: 100%; height: 100%; background: linear-gradient(135deg, #25252c, #1c1c22); }
.amateur-card__meta { padding: 14px; }
.amateur-card__name {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 6px;
}
.amateur-card__details {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 12px;
    display: flex; justify-content: center; gap: 10px;
}
.flag {
    background: var(--bg-elevated);
    padding: 1px 6px;
    border-radius: 3px;
    font-size: 0.75rem;
    font-weight: 700;
}

/* =========================================================
   CATEGORIES
   ========================================================= */
.category-card {
    display: flex; justify-content: space-between; align-items: center;
    padding: 18px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all 0.15s;
    color: var(--text);
}
.category-card:hover {
    background: var(--bg-elevated);
    border-color: var(--accent);
    color: var(--accent);
    transform: translateX(3px);
}
.category-card__name { font-weight: 600; }
.category-card__arrow { color: var(--text-dim); }
.category-card:hover .category-card__arrow { color: var(--accent); }

.category-cloud { display: flex; flex-wrap: wrap; gap: 10px; }
.category-cloud__item {
    padding: 8px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.15s;
}
.category-cloud__item:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}

/* =========================================================
   PROFILE PAGE
   ========================================================= */
.profile-hero {
    padding: 60px 0 40px;
    background: linear-gradient(135deg, #1c0e12 0%, #15151a 100%);
    border-bottom: 1px solid var(--border);
}
.profile-hero__inner { max-width: 800px; }
.profile-hero h1 {
    font-size: clamp(1.8rem, 5vw, 2.8rem);
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 8px;
}
.profile-hero__meta { color: var(--text-dim); font-size: 0.9rem; margin-bottom: 15px; }
.profile-hero__intro { color: var(--text-muted); margin-bottom: 25px; max-width: 600px; }

/* =========================================================
   BLOG
   ========================================================= */
.blog-list { display: grid; gap: 20px; max-width: 900px; margin: 0 auto; }
.blog-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    transition: border-color 0.15s;
}
.blog-card:hover { border-color: var(--accent); }
.blog-card__header { margin-bottom: 12px; }
.blog-card__author a { color: var(--accent); font-weight: 600; font-size: 0.9rem; }
.blog-card__title { font-size: 1.25rem; font-weight: 700; margin: 6px 0 4px; }
.blog-card__date { color: var(--text-dim); font-size: 0.85rem; }
.blog-card__content { color: var(--text-muted); margin-bottom: 12px; }
.blog-card__content p + p { margin-top: 10px; }
.blog-card__more {
    color: var(--accent); font-weight: 600; font-size: 0.9rem;
}

/* =========================================================
   PAGINATION
   ========================================================= */
.pagination {
    margin-top: 40px;
    display: flex; justify-content: center; align-items: center; gap: 20px;
    flex-wrap: wrap;
}
.pagination__link {
    padding: 10px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--text);
    font-weight: 500;
    transition: all 0.15s;
}
.pagination__link:hover:not(.pagination__link--disabled) {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}
.pagination__link--disabled { opacity: 0.4; cursor: not-allowed; }
.pagination__info { color: var(--text-muted); font-size: 0.95rem; }
.pagination__info small { display: block; font-size: 0.8rem; color: var(--text-dim); }

/* =========================================================
   EMPTY / ERROR
   ========================================================= */
.empty-state {
    text-align: center; padding: 60px 20px;
    background: var(--bg-card);
    border: 1px dashed var(--border);
    border-radius: var(--radius);
    color: var(--text-muted);
}
.error-page { text-align: center; padding: 80px 20px; }
.error-page h1 { font-size: 6rem; color: var(--accent); font-weight: 900; }
.error-page p { margin-bottom: 20px; color: var(--text-muted); }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
    background: var(--bg-alt);
    border-top: 1px solid var(--border);
    padding: 50px 0 25px;
    margin-top: 60px;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}
.footer-grid h4 {
    color: var(--text);
    margin-bottom: 12px;
    font-size: 1rem;
}
.footer-grid p, .footer-grid li {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 6px;
    line-height: 1.6;
}
.footer-grid a { color: var(--text-muted); }
.footer-grid a:hover { color: var(--accent); }
.footer-bottom {
    padding-top: 20px;
    border-top: 1px solid var(--border);
    text-align: center;
    color: var(--text-dim);
    font-size: 0.85rem;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 768px) {
    .nav-toggle { display: flex; }
    .main-nav {
        position: fixed;
        top: 70px; left: 0; right: 0;
        background: var(--bg-alt);
        border-bottom: 1px solid var(--border);
        transform: translateY(-110%);
        transition: transform 0.2s;
        padding: 15px 20px;
    }
    .nav-open .main-nav { transform: translateY(0); }
    .main-nav ul { flex-direction: column; gap: 0; }
    .main-nav a { padding: 12px 10px; }
    .hero { padding: 50px 0 40px; }
    .section { padding: 40px 0; }
    .grid--videos     { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 12px; }
    .grid--amateurs   { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 12px; }
    .grid--categories { grid-template-columns: 1fr 1fr; gap: 10px; }
    .video-card__meta { padding: 10px; }
    .video-card__title { font-size: 0.85rem; }
}

/* =========================================================
   LEGAL PAGES (Impressum, Datenschutz, AGB, 2257)
   ========================================================= */
.legal-content {
    max-width: 820px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
    line-height: 1.7;
}
.legal-content h2 {
    font-size: 1.4rem;
    margin: 32px 0 14px;
    color: var(--accent);
    border-bottom: 1px solid var(--border);
    padding-bottom: 8px;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 {
    font-size: 1.1rem;
    margin: 22px 0 10px;
    color: var(--text);
}
.legal-content p { color: var(--text-muted); margin-bottom: 14px; }
.legal-content strong { color: var(--text); }
.legal-content a { color: var(--accent); }
.legal-content a:hover { color: var(--accent-hover); text-decoration: underline; }
.legal-content small { color: var(--text-dim); font-size: 0.85rem; }

.legal-list {
    margin: 10px 0 16px 0;
    padding-left: 22px;
    list-style: disc;
}
.legal-list li {
    color: var(--text-muted);
    margin-bottom: 6px;
}

/* =========================================================
   FOOTER PARTNERS
   ========================================================= */
.footer-partners li a {
    color: var(--text-muted);
    transition: color 0.15s;
}
.footer-partners li a:hover {
    color: var(--accent);
}

/* =========================================================
   RICH EMPTY STATE
   ========================================================= */
.empty-state--rich {
    text-align: center;
    padding: 60px 30px;
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-alt) 100%);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    color: var(--text);
}
.empty-state__icon {
    font-size: 3.5rem;
    margin-bottom: 16px;
    opacity: 0.7;
}
.empty-state__title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text);
}
.empty-state__text {
    color: var(--text-muted);
    max-width: 500px;
    margin: 0 auto 28px;
    font-size: 1rem;
}
.empty-state__actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}
.empty-state__suggestions {
    padding-top: 28px;
    border-top: 1px solid var(--border);
    max-width: 700px;
    margin: 0 auto;
}
.empty-state__suggestions h3 {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 14px;
    font-weight: 500;
}
.empty-state__suggestions .category-cloud {
    justify-content: center;
}

/* =========================================================
   RESPONSIVE: Legal Pages
   ========================================================= */
@media (max-width: 640px) {
    .legal-content { padding: 24px 18px; }
    .legal-content h2 { font-size: 1.2rem; }
    .empty-state--rich { padding: 40px 20px; }
    .empty-state__title { font-size: 1.3rem; }
}

/* =========================================================
   LOCAL-PROFILE-PAGE
   ========================================================= */
.profile-hero__grid {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 40px;
    align-items: start;
}
.profile-hero__image img {
    width: 100%;
    border-radius: var(--radius-lg);
    object-fit: cover;
    aspect-ratio: 4 / 3;
    border: 1px solid var(--border);
}
.breadcrumb {
    font-size: 0.85rem;
    color: var(--text-dim);
    margin-bottom: 10px;
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { color: var(--text); }

.profile-hero__stats {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin: 12px 0 20px;
}
.stat-chip {
    display: inline-block;
    padding: 4px 12px;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 0.85rem;
    color: var(--text);
}
.stat-chip--gold {
    background: rgba(255, 180, 0, 0.1);
    border-color: var(--gold);
    color: var(--gold);
    font-weight: 700;
}

.profile-hero__intro { margin: 18px 0 24px; color: var(--text-muted); }
.profile-hero__intro p { margin-bottom: 12px; line-height: 1.7; }
.profile-hero__intro strong { color: var(--text); }


/* =========================================================
   STECKBRIEF (Facts) — als saubere Zweispaltige Liste
   ========================================================= */
.facts-grid {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
}
.facts-grid__title {
    margin: 0 0 24px;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text);
    padding-bottom: 14px;
    border-bottom: 2px solid var(--accent);
}

.facts-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    margin: 0;
}
.facts-list > div {
    display: flex;
    align-items: baseline;
    gap: 12px;
    padding: 12px 16px;
    border-bottom: 1px solid var(--border);
}
/* Abwechselnde Streifen für bessere Lesbarkeit */
.facts-list > div:nth-child(4n+1),
.facts-list > div:nth-child(4n+2) {
    background: rgba(255, 255, 255, 0.015);
}
.facts-list > div:hover {
    background: rgba(229, 9, 20, 0.04);
}

.facts-list dt {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
    min-width: 120px;
    flex: 0 0 auto;
}
/* Doppelpunkt nach dem Label */
.facts-list dt::after {
    content: ":";
    margin-left: 2px;
}
.facts-list dd {
    margin: 0;
    font-weight: 600;
    color: var(--text);
    flex: 1 1 auto;
    text-align: left;
}

@media (max-width: 640px) {
    .facts-list { grid-template-columns: 1fr; }
    .facts-grid { padding: 20px; }
    .facts-grid__title { font-size: 1.25rem; }
    .facts-list dt { min-width: 90px; font-size: 0.8rem; }
}

/* =========================================================
   AMATEUR-INDEX / A-Z-LISTE
   ========================================================= */

/* --- Sticky A-Z Navigation --- */
.az-nav-wrap {
    position: sticky;
    top: 70px;
    z-index: 50;
    background: var(--bg-alt);
    border-bottom: 1px solid var(--border);
    padding: 18px 0;
    backdrop-filter: blur(10px);
}
.az-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    justify-content: center;
    margin-bottom: 14px;
}
.az-nav__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--text);
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.15s;
    min-width: 40px;
    justify-content: center;
}
.az-nav__link:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
    transform: translateY(-1px);
}
.az-nav__link--empty {
    opacity: 0.25;
    cursor: default;
    pointer-events: none;
}
.az-nav__count {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-muted);
    background: var(--bg);
    padding: 2px 7px;
    border-radius: 20px;
    min-width: 20px;
    text-align: center;
}
.az-nav__link:hover .az-nav__count {
    background: rgba(0, 0, 0, 0.25);
    color: #fff;
}

/* --- Legende mit farbigen Punkten --- */
.az-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    font-size: 0.85rem;
    color: var(--text-muted);
}
.legend-item {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}
.legend-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}
.legend-dot--new         { background: var(--accent); }
.legend-dot--top-week    { background: var(--gold); }
.legend-dot--top-month   { background: #4ade80; }
.legend-dot--top-alltime { background: linear-gradient(135deg, #e50914 0%, #ffb400 100%); }

/* --- Gruppen-Überschriften --- */
.az-group {
    margin-bottom: 48px;
    scroll-margin-top: 180px;
}
.az-group__heading {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--accent);
    padding-bottom: 10px;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--accent);
    display: flex;
    align-items: baseline;
    gap: 16px;
}
.az-group__count {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* --- Die Amateur-Kärtchen --- */
.amateur-index-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 10px;
}
.amateur-index-item {
    list-style: none;
    padding: 0;
    margin: 0;
}
.amateur-index-link {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--text);
    text-decoration: none;
    transition: all 0.15s;
    min-height: 64px;
}
.amateur-index-link:hover {
    border-color: var(--accent);
    background: var(--bg-elevated);
    transform: translateX(4px);
    color: var(--text);
    box-shadow: 0 2px 12px rgba(229, 9, 20, 0.12);
}

.amateur-index-item__thumb {
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--bg-elevated);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--border);
}
.amateur-index-item__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.amateur-index-item__initial {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--accent);
}

.amateur-index-item__main {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.amateur-index-item__nick {
    font-weight: 700;
    font-size: 1rem;
    color: var(--text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.amateur-index-item__meta {
    font-size: 0.82rem;
    color: var(--text-muted);
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.amateur-index-item__meta span + span::before {
    content: "·";
    margin-right: 8px;
    color: var(--text-dim);
}

/* --- Badges: farbige Punkte mit Mini-Label --- */
.amateur-index-item__badges {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
    flex-shrink: 0;
    justify-content: flex-end;
    align-items: center;
}
.ai-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 3px 8px 3px 6px;
    border-radius: 100px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    white-space: nowrap;
    line-height: 1.4;
}
.ai-badge::before {
    content: "";
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    flex-shrink: 0;
}
.ai-badge--new {
    background: rgba(229, 9, 20, 0.15);
    color: var(--accent);
}
.ai-badge--new::before { background: var(--accent); }

.ai-badge--top-week {
    background: rgba(255, 180, 0, 0.15);
    color: var(--gold);
}
.ai-badge--top-week::before { background: var(--gold); }

.ai-badge--top-month {
    background: rgba(74, 222, 128, 0.15);
    color: #4ade80;
}
.ai-badge--top-month::before { background: #4ade80; }

.ai-badge--top-alltime {
    background: linear-gradient(135deg, rgba(229, 9, 20, 0.2), rgba(255, 180, 0, 0.2));
    color: #fff;
    border: 1px solid rgba(255, 180, 0, 0.4);
}
.ai-badge--top-alltime::before {
    background: linear-gradient(135deg, #e50914, #ffb400);
}

/* --- Zurück-nach-oben Button --- */
.back-to-top {
    text-align: center;
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

/* --- Responsive --- */
@media (max-width: 900px) {
    .amateur-index-list {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
}

@media (max-width: 640px) {
    .az-nav-wrap { top: 64px; padding: 12px 0; }
    .az-nav__link { padding: 6px 8px; font-size: 0.82rem; min-width: 32px; gap: 4px; }
    .az-nav__count { display: none; }
    .az-legend { font-size: 0.75rem; gap: 12px; }
    .amateur-index-list { grid-template-columns: 1fr; }
    .az-group__heading { font-size: 1.6rem; }
    .az-group { scroll-margin-top: 140px; }
    .amateur-index-link { padding: 10px 12px; gap: 10px; }
    .amateur-index-item__thumb { flex: 0 0 40px; width: 40px; height: 40px; }
    .amateur-index-item__nick { font-size: 0.95rem; }
}

/* =========================================================
   PLACEHOLDER-BILDER (wenn kein Thumbnail verfügbar)
   ========================================================= */
.amateur-card__placeholder-img,
.video-card__placeholder-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    background: var(--bg-elevated);
}

/* Im Hero des Local-Profile */
.profile-hero__image--placeholder {
    opacity: 0.9;
}

/* =========================================================
   CONTENT-BLOCKS (Tags-Sektion, Highlights)
   ========================================================= */
.content-block {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
}
.content-block__title {
    margin: 0 0 18px;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text);
    padding-bottom: 12px;
    border-bottom: 2px solid var(--accent);
}
.content-block__body {
    color: var(--text-muted);
    line-height: 1.7;
}
.content-block__body p { margin: 0 0 12px; }
.content-block__body p:last-child { margin-bottom: 0; }
.content-block__body strong { color: var(--text); }

/* Top-Highlights als ordered list */
.profile-highlights {
    list-style: none;
    counter-reset: hl-counter;
    padding: 0;
    margin: 16px 0 0;
}
.profile-highlights li {
    counter-increment: hl-counter;
    position: relative;
    padding: 16px 16px 16px 56px;
    margin-bottom: 12px;
    background: var(--bg-elevated);
    border-radius: var(--radius);
    border-left: 3px solid var(--accent);
    color: var(--text);
}
.profile-highlights li::before {
    content: counter(hl-counter);
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    background: var(--accent);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.9rem;
}

/* Tag-Cloud unter der Tags-Sektion */
.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px dashed var(--border);
}
.tag-cloud__item {
    padding: 4px 12px;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 100px;
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* =========================================================
   FAQ
   ========================================================= */
.faq-block {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
}
.faq-block__title {
    margin: 0 0 22px;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text);
    padding-bottom: 12px;
    border-bottom: 2px solid var(--accent);
}
.faq-list {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.faq-item {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color 0.15s;
}
.faq-item[open] {
    border-color: var(--accent);
}
.faq-item__q {
    padding: 14px 18px;
    cursor: pointer;
    font-weight: 700;
    color: var(--text);
    font-size: 1rem;
    list-style: none;
    position: relative;
    padding-right: 44px;
    user-select: none;
}
.faq-item__q::-webkit-details-marker { display: none; }
.faq-item__q::after {
    content: "+";
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    width: 22px;
    height: 22px;
    background: var(--accent);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    line-height: 1;
    transition: transform 0.2s;
}
.faq-item[open] .faq-item__q::after {
    content: "−";
    transform: translateY(-50%) rotate(180deg);
}
.faq-item__a {
    padding: 0 18px 16px;
    color: var(--text-muted);
    line-height: 1.6;
}

@media (max-width: 640px) {
    .content-block,
    .faq-block { padding: 22px 18px; }
    .content-block__title,
    .faq-block__title { font-size: 1.25rem; }
    .profile-highlights li { padding-left: 50px; padding-right: 14px; }
}
