/* ============================================================
   damnyeah.de – Haupt-Stylesheet
   ============================================================ */

/* ------------------------------------------------------------
   Fonts (self-hosted, keine externen Requests)
   DM Serif Display: assets/fonts/
   DM Sans: System-Font-Fallback bis Dateien vorliegen
   ------------------------------------------------------------ */
@font-face {
    font-family: 'DM Serif Display';
    src: url('/assets/fonts/DMSerifDisplay-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'DM Serif Display';
    src: url('/assets/fonts/DMSerifDisplay-Italic.woff2') format('woff2');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}
@font-face {
    font-family: 'DM Sans';
    src: url('/assets/fonts/DMSans-Variable.woff2') format('woff2');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'DM Sans';
    src: url('/assets/fonts/DMSans-Italic.woff2') format('woff2');
    font-weight: 100 900;
    font-style: italic;
    font-display: swap;
}

/* ------------------------------------------------------------
   CSS Custom Properties
   ------------------------------------------------------------ */
:root {
    --bg:           #0a0808;
    --bg-surface:   #110d0d;
    --bg-elevated:  #171010;
    --border:       #201818;
    --border-active:#402828;

    --crimson:      #c83a3a;
    --crimson-dim:  #7a1818;
    --crimson-bg:   #1a0808;

    --text:         #e8dada;
    --text-soft:    #a08888;
    --text-muted:   #957070;  /* war #6b5050 – auf 5:1 Kontrast angehoben (WCAG AA) */
    --white:        #f5ecec;
    --crimson-text: #e05555;  /* Crimson für kleine Textelemente, 5.7:1 auf --bg */

    --accent2:      #d4954a;

    --font-serif: 'DM Serif Display', Georgia, 'Times New Roman', serif;
    --font-sans:  'DM Sans', system-ui, -apple-system, sans-serif;
}

/* ------------------------------------------------------------
   Reset & Base
   ------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 16px; }

body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-sans);
    font-weight: 400;
    line-height: 1.6;
    min-height: 100vh;
}

/* Grain Overlay */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
    opacity: 0.35;
}

a { color: var(--crimson); text-decoration: none; }
a:hover { text-decoration: underline; }

img { display: block; max-width: 100%; }

/* ------------------------------------------------------------
   Layout
   ------------------------------------------------------------ */
.container    { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }
.container-sm { max-width: 720px; margin: 0 auto; padding: 0 2rem; }

/* ------------------------------------------------------------
   Header
   ------------------------------------------------------------ */
.site-header {
    border-bottom: 1px solid var(--border);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    background: var(--bg);
    z-index: 100;
}
.site-header__inner {
    display: flex;
    align-items: baseline;
    gap: 1.5rem;
}
@media (max-width: 520px) {
    .site-header__claim { display: none; }
}
.site-logo {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--white);
    text-decoration: none;
    letter-spacing: -0.02em;
}
.site-logo span { color: var(--crimson); }
.site-header__claim {
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 0.05em;
}

/* ------------------------------------------------------------
   Main
   ------------------------------------------------------------ */
main.container {
    padding-top: 3rem;
    padding-bottom: 4rem;
}

/* ------------------------------------------------------------
   Hero
   ------------------------------------------------------------ */
.hero {
    margin-bottom: 3rem;
}
.label-overline {
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--crimson-text);
    margin-bottom: 0.75rem;
}
.site-claim {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.1;
    color: var(--white);
    font-weight: 400;
}
.index-tagline {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 400;
    line-height: 1.1;
    color: var(--white);
    margin: 0 0 1.25rem;
}

/* ------------------------------------------------------------
   Teaser-Karte (Startseite "Heute entdeckt")
   ------------------------------------------------------------ */
.teaser-card {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-left: 3px solid var(--crimson);
    border-radius: 0 4px 4px 0;
    overflow: hidden;
}
.teaser-card__inner {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 0;
}
@media (max-width: 640px) {
    .teaser-card__inner { grid-template-columns: 1fr; }
}
.teaser-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 3/4;
}
.teaser-card__content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.teaser-card__label {
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--crimson);
}
.teaser-card__name {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 400;
    color: var(--white);
    line-height: 1.2;
}
.teaser-card__age {
    font-family: var(--font-sans);
    font-size: 1rem;
    color: var(--text-muted);
    margin-left: 0.5rem;
}

/* ------------------------------------------------------------
   KI-Narrativ
   ------------------------------------------------------------ */
.ki-narrative {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text);
    flex: 1;
}

/* ------------------------------------------------------------
   Archetype-Badge
   ------------------------------------------------------------ */
.badge-archetype {
    display: inline-block;
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    padding: 3px 10px;
    border-radius: 2px;
    background: var(--crimson-bg);
    border: 1px solid var(--crimson-dim);
    color: var(--crimson-text);
    font-style: italic;
    align-self: flex-start;
}

/* ------------------------------------------------------------
   Profil-Karte (Grid)
   ------------------------------------------------------------ */
.profile-card {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
    transition: border-color 0.2s, transform 0.15s;
    text-decoration: none;
    color: inherit;
    display: block;
}
.profile-card:hover {
    border-color: var(--border-active);
    transform: translateY(-2px);
    text-decoration: none;
}
.profile-card__img img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
}
.profile-card__body { padding: 1rem; }
.profile-card__name {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 0.25rem;
}
.profile-card__narrative {
    font-style: italic;
    color: var(--text-soft);
    font-size: 0.875rem;
    line-height: 1.6;
    margin-top: 0.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Profile Grid */
.profile-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.25rem;
    margin-top: 2rem;
}

/* ------------------------------------------------------------
   Button
   ------------------------------------------------------------ */
.btn-primary {
    display: inline-block;
    background: var(--crimson);
    color: #fff;
    padding: 0.6rem 1.5rem;
    border-radius: 2px;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    text-decoration: none;
    transition: background 0.15s;
    align-self: flex-start;
    margin-top: auto;
}
.btn-primary:hover { background: #a82e2e; text-decoration: none; }

/* ------------------------------------------------------------
   Footer
   ------------------------------------------------------------ */
.site-footer {
    border-top: 1px solid var(--border);
    padding: 1.5rem 0;
    margin-top: 4rem;
}
.site-footer__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}
.site-footer__nav { display: flex; gap: 1.5rem; }
.site-footer__nav a { font-size: 0.8rem; color: var(--text-muted); }
.site-footer__nav a:hover { color: var(--text-soft); }
.site-footer__note { font-size: 0.75rem; color: var(--text-muted); }

/* ------------------------------------------------------------
   Navigation (Site-Header)
   ------------------------------------------------------------ */
.site-nav { margin-left: auto; display: flex; gap: 0; }
.site-nav__link {
    font-size: 0.8rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-muted);
    text-decoration: none;
    padding: 0.25rem 0.75rem;
    border-bottom: 2px solid transparent;
    transition: color 0.15s, border-color 0.15s;
}
.site-nav__link:hover { color: var(--text); text-decoration: none; }
.site-nav__link.active { color: var(--crimson); border-bottom-color: var(--crimson); }

/* ------------------------------------------------------------
   Section-Header (z. B. "Kürzlich entdeckt" mit Link)
   ------------------------------------------------------------ */
.section-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-top: 3rem;
    margin-bottom: 0;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border);
}
.section-header h2 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--white);
}
.section-header a {
    font-size: 0.8rem;
    color: var(--text-muted);
}
.section-header a:hover { color: var(--crimson); }

/* ------------------------------------------------------------
   Archetype Filter-Pills (/entdecken/)
   ------------------------------------------------------------ */
.archetype-filter {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0.4rem;
    margin-bottom: 2rem;
}
.archetype-filter__pill {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1 1 auto;
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    padding: 4px 10px;
    border-radius: 2px;
    border: 1px solid var(--border);
    color: var(--text-muted);
    text-decoration: none;
    transition: border-color 0.15s, color 0.15s, background 0.15s;
    font-style: italic;
    text-align: center;
    white-space: nowrap;
}
.archetype-filter__pill:hover {
    border-color: var(--border-active);
    color: var(--text);
    text-decoration: none;
}
.archetype-filter__pill.active {
    background: var(--crimson-bg);
    border-color: var(--crimson-dim);
    color: var(--crimson);
}

/* ------------------------------------------------------------
   Archetype-Intro-Text-Block
   ------------------------------------------------------------ */
.archetype-intro {
    max-width: 680px;
    margin: 0 auto 2.5rem;
    color: var(--text-soft);
    font-size: 0.92rem;
    line-height: 1.8;
    font-style: italic;
}
.archetype-intro p + p {
    margin-top: 1em;
}
.archetype-intro p:first-child {
    color: var(--text);
    font-size: 1rem;
}
.archetype-intro__inline {
    grid-column: 1 / -1;
    max-width: 680px;
    margin: 0.5rem auto 0.5rem;
    color: var(--text-soft);
    font-size: 0.92rem;
    line-height: 1.8;
    font-style: italic;
    padding: 1.25rem 0;
    border-top: 1px solid var(--border);
}

/* ------------------------------------------------------------
   Pagination
   ------------------------------------------------------------ */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}
.pagination__btn {
    font-size: 0.875rem;
    color: var(--text-muted);
    text-decoration: none;
    padding: 0.4rem 0.75rem;
    border: 1px solid var(--border);
    border-radius: 2px;
    transition: border-color 0.15s, color 0.15s;
}
.pagination__btn:hover { border-color: var(--crimson-dim); color: var(--crimson); text-decoration: none; }
.pagination__info { font-size: 0.8rem; color: var(--text-muted); }

/* ------------------------------------------------------------
   Button Secondary
   ------------------------------------------------------------ */
.btn-secondary {
    display: inline-block;
    border: 1px solid var(--border-active);
    color: var(--text-soft);
    padding: 0.6rem 1.5rem;
    border-radius: 2px;
    font-size: 0.875rem;
    font-weight: 400;
    letter-spacing: 0.03em;
    text-decoration: none;
    transition: border-color 0.15s, color 0.15s;
}
.btn-secondary:hover { border-color: var(--crimson-dim); color: var(--crimson); text-decoration: none; }

/* ------------------------------------------------------------
   Sedcard Co-Reg Block (XloveCam)
   ------------------------------------------------------------ */
.sedcard__coreg {
    margin-top: 2.5rem;
    padding: 1.5rem;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.sedcard__coreg-text {
    font-size: 0.875rem;
    color: var(--text-soft);
    line-height: 1.5;
}
.sedcard__coreg-text strong {
    display: block;
    font-size: 1rem;
    color: var(--text);
    font-weight: 500;
    margin-bottom: 0.25rem;
}

/* ------------------------------------------------------------
   Utilities
   ------------------------------------------------------------ */
.text-muted { color: var(--text-muted); font-size: 0.9rem; }

/* ------------------------------------------------------------
   Sedcard (Profilseite)
   ------------------------------------------------------------ */
.sedcard { max-width: 800px; }
.sedcard__header {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 2rem;
    margin-bottom: 2.5rem;
}
@media (max-width: 600px) {
    .sedcard__header { grid-template-columns: 1fr; }
}
.sedcard__img img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    border-radius: 2px;
}
.sedcard__meta { display: flex; flex-direction: column; gap: 0.75rem; }
.sedcard__name {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 400;
    color: var(--white);
    line-height: 1.1;
}
.sedcard__age { color: var(--text-muted); margin-left: 0.5rem; font-family: var(--font-sans); font-size: 1rem; }

.sedcard__narrative-block {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-left: 3px solid var(--crimson);
    padding: 1.5rem;
    border-radius: 0 4px 4px 0;
    margin-bottom: 2rem;
}

/* Sedcard Info-Tags (Interessen / Charakter) */
.sedcard__infotags {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}
.sedcard__infotags-label {
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
}
.sedcard__infotags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.375rem;
}
.sedcard__infotag {
    font-size: 0.7rem;
    padding: 2px 8px;
    border-radius: 2px;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    color: var(--text-soft);
    line-height: 1.6;
}

.sedcard__starters {
    margin-top: 2rem;
}
.sedcard__starters h3 {
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--crimson);
    margin-bottom: 0.5rem;
}
.sedcard__starters-hint {
    font-size: 0.825rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 1rem;
}
.starter-item {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 0.875rem 1rem;
    font-size: 0.9rem;
    color: var(--text-soft);
    margin-bottom: 0.5rem;
}

/* ------------------------------------------------------------
   777 Bonus Block (Profilseite)
   ------------------------------------------------------------ */
.sedcard__bonus {
    margin-top: 2.5rem;
    padding: 1.75rem;
    background: linear-gradient(135deg, rgba(212,149,74,0.06) 0%, var(--bg-elevated) 60%);
    border: 1px solid rgba(212,149,74,0.25);
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.sedcard__bonus-header { display: flex; flex-direction: column; gap: 0.375rem; }
.sedcard__bonus-headline {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--white);
    line-height: 1.3;
}
.sedcard__bonus-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}
@media (max-width: 480px) {
    .sedcard__bonus-grid { grid-template-columns: 1fr; }
}
.sedcard__bonus-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.sedcard__bonus-badge-wrap {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    flex-wrap: wrap;
}
.sedcard__bonus-badge {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    padding: 5px 14px;
    border-radius: 2px;
    background: rgba(212,149,74,0.12);
    border: 1px solid rgba(212,149,74,0.45);
    color: var(--accent2);
    white-space: nowrap;
}
.sedcard__bonus-copy {
    background: none;
    border: 1px solid var(--border-active);
    color: var(--text-muted);
    font-size: 0.6rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 3px 9px;
    border-radius: 2px;
    cursor: pointer;
    transition: border-color 0.15s, color 0.15s;
    font-family: var(--font-sans);
}
.sedcard__bonus-copy:hover,
.sedcard__bonus-copy.copied { border-color: var(--accent2); color: var(--accent2); }
.sedcard__bonus-desc {
    font-size: 0.8rem;
    color: var(--text-soft);
    line-height: 1.55;
}
.sedcard__bonus-cta {
    display: block;
    text-align: center;
    border: 1px solid rgba(212,149,74,0.45);
    color: var(--accent2);
    padding: 0.7rem 1.5rem;
    border-radius: 2px;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.15s, border-color 0.15s;
}
.sedcard__bonus-cta:hover {
    background: rgba(212,149,74,0.08);
    border-color: var(--accent2);
    text-decoration: none;
}
.sedcard__bonus-footer {
    font-size: 0.72rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: -0.25rem;
}

.sedcard__cta-wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.3rem;
}

.sedcard__affiliate-hint {
    font-size: 0.7rem;
    font-family: var(--font-sans);
    font-weight: 400;
    color: var(--text-soft);
    letter-spacing: 0;
}
.sedcard__cross {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.65rem 1rem;
    margin-top: 1.5rem;
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: 3px;
}
.sedcard__cross-desc {
    font-size: 0.78rem;
    color: var(--text-muted);
}
.sedcard__cross-link {
    font-size: 0.78rem;
    color: var(--text-soft);
    text-decoration: none;
    white-space: nowrap;
}
.sedcard__cross-link:hover { color: var(--text); }

/* ---------------------------------------------------------------------------
   Profil-Badges
   --------------------------------------------------------------------------- */

.profile-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin-top: 0.5rem;
}
.profile-badges--card {
    margin-top: 0.3rem;
}
.profile-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.25em;
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    padding: 3px 8px;
    border-radius: 3px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--text-soft);
    white-space: nowrap;
    cursor: default;
}
.profile-badge:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.18);
}

/* ---------------------------------------------------------------------------
   Das Gegenteil – Profil-Block
   --------------------------------------------------------------------------- */

.gegenteil-block {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.08);
}
.gegenteil-label {
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}
.gegenteil-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.2s;
}
.gegenteil-card:hover { opacity: 0.8; }
.gegenteil-card img {
    width: 56px;
    height: 56px;
    object-fit: cover;
    border-radius: 4px;
    flex-shrink: 0;
}
.gegenteil-info {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}
.gegenteil-name {
    font-weight: 600;
    font-size: 0.95rem;
}
.gegenteil-archetype {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-style: italic;
}
.live-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    background: #4caf50;
    border-radius: 50%;
    margin-right: 4px;
    vertical-align: middle;
}

/* Live dot / badge on profile cards */
.profile-card__img { position: relative; }
.profile-card__live-dot {
    position: absolute;
    top: 6px;
    left: 6px;
    width: 8px;
    height: 8px;
    background: #4caf50;
    border-radius: 50%;
    border: 1px solid rgba(0,0,0,0.4);
}
.profile-card__live-badge {
    position: absolute;
    top: 6px;
    left: 6px;
    padding: 2px 7px;
    background: rgba(0,0,0,0.6);
    color: #4caf50;
    font-size: 0.62rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 2px;
}

/* ---------------------------------------------------------------------------
   Coin-Rechner
   --------------------------------------------------------------------------- */

.rechner {
    max-width: 520px;
    margin: 0 auto 2.5rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 6px;
    padding: 1.75rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.rechner__showtype {
    display: flex;
    gap: 1.5rem;
}
.rechner__radio-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-soft);
    cursor: pointer;
    user-select: none;
}
.rechner__radio-label input { accent-color: var(--accent); cursor: pointer; }

.rechner__field-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.6rem;
}
.rechner__field-label {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
}
.rechner__duration-display {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-main);
}

.rechner__slider {
    width: 100%;
    accent-color: var(--accent);
    cursor: pointer;
    margin: 0;
}
.rechner__slider-ticks {
    display: flex;
    justify-content: space-between;
    font-size: 0.68rem;
    color: var(--text-muted);
    margin-top: 4px;
}

.rechner__budget-wrap {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 4px;
    padding: 0.45rem 0.75rem;
    background: rgba(255,255,255,0.04);
}
.rechner__budget-input {
    background: none;
    border: none;
    outline: none;
    color: var(--text-main);
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 500;
    width: 100%;
    -moz-appearance: textfield;
}
.rechner__budget-input::-webkit-inner-spin-button,
.rechner__budget-input::-webkit-outer-spin-button { -webkit-appearance: none; }
.rechner__budget-unit {
    font-size: 0.85rem;
    color: var(--text-muted);
    flex-shrink: 0;
}

.rechner__result {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.rechner__result-box {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    padding: 0.9rem 1rem;
    background: rgba(200,58,58,0.07);
    border: 1px solid rgba(200,58,58,0.2);
    border-radius: 4px;
    text-align: center;
}
.rechner__result-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-main);
}
.rechner__result-label {
    font-size: 0.68rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.rechner__hint {
    font-size: 0.82rem;
    color: var(--text-soft);
    text-align: center;
    margin: -0.5rem 0 0;
    min-height: 1.2em;
}

.rechner__profiles {
    margin-top: 1rem;
}
.rechner__profiles-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}
.rechner__sort {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 3px;
    color: var(--text-soft);
    font-size: 0.75rem;
    padding: 4px 8px;
    cursor: pointer;
    font-family: var(--font-sans);
}
.rechner__sort option { background: #1a1010; }
.rechner__card-hint {
    font-size: 0.72rem;
    color: var(--text-muted);
    margin-top: 0.2rem;
}
.rechner__voyeur-hint {
    margin-top: 0.4rem;
    font-size: 0.78rem;
    color: var(--text-muted);
}
.rechner__no-results {
    margin-top: 1rem;
}
.rechner__more {
    margin-top: 1.25rem;
    font-size: 0.8rem;
    text-align: center;
    color: var(--text-muted);
}

@media (max-width: 480px) {
    .rechner { padding: 1.25rem 1.1rem; }
    .rechner__result { grid-template-columns: 1fr 1fr; }
}

/* ------------------------------------------------------------
   Coreg-Modal (XloveCam-Registrierung)
   ------------------------------------------------------------ */
.coreg-modal {
    position: fixed;
    inset: 0;
    z-index: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}
.coreg-modal[hidden] { display: none; }

.coreg-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.88);
    backdrop-filter: blur(6px);
}

.coreg-modal__box {
    position: relative;
    background: rgba(0,0,0,0.6);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2rem 1.75rem 1.5rem;
    width: 100%;
    max-width: 420px;
    max-height: 90vh;
    overflow-y: auto;
}

.coreg-modal__close {
    position: absolute;
    top: 0.75rem;
    right: 1rem;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    padding: 0.25rem 0.5rem;
    transition: color 0.15s;
}
.coreg-modal__close:hover { color: var(--text); }

.coreg-modal__sub {
    color: var(--text-soft);
    font-size: 0.9rem;
    margin: 0.25rem 0 1.25rem;
}

.coreg-modal__alert {
    background: rgba(200, 58, 58, 0.15);
    border: 1px solid var(--crimson-dim);
    border-radius: 6px;
    padding: 0.65rem 0.9rem;
    font-size: 0.85rem;
    color: var(--crimson);
    margin-bottom: 1rem;
}

.coreg-modal__form { display: flex; flex-direction: column; gap: 1rem; }

.coreg-field { display: flex; flex-direction: column; gap: 0.3rem; }
.coreg-field label { font-size: 0.78rem; color: var(--text-muted); letter-spacing: 0.03em; }
.coreg-field input {
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 0.55rem 0.8rem;
    color: var(--text);
    font-size: 0.95rem;
    width: 100%;
    transition: border-color 0.15s;
}
.coreg-field input:focus { outline: none; border-color: var(--border-active); }
.coreg-field__hint { font-size: 0.72rem; color: var(--text-muted); min-height: 1em; }
.coreg-field__hint.ok    { color: #5c9e5c; }
.coreg-field__hint.error { color: var(--crimson); }

.coreg-pw-wrap { display: flex; gap: 0.5rem; align-items: stretch; }
.coreg-pw-wrap input { flex: 1; }
.coreg-pw-gen {
    background: rgba(255,255,255,0.06);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 0 0.7rem;
    font-size: 1rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: border-color 0.15s, color 0.15s;
    flex-shrink: 0;
}
.coreg-pw-gen:hover { border-color: var(--border-active); color: var(--text); }

.coreg-modal__legal {
    font-size: 0.72rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
}
.coreg-modal__legal a { color: var(--text-muted); text-decoration: underline; }

.coreg-modal__submit { width: 100%; justify-content: center; }
.coreg-modal__submit:disabled { opacity: 0.6; cursor: not-allowed; }

.coreg-modal__login {
    text-align: center;
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-top: 1rem;
}
.coreg-modal__login a { color: var(--text-soft); }

/* ------------------------------------------------------------
   Limelight – Live-Acts-Seite (/stage/)
   ------------------------------------------------------------ */

.limelight-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--white);
    margin: 0;
    line-height: 1.1;
}

.limelight-subtitle {
    color: var(--text-soft);
    font-size: 0.95rem;
    margin: 0.35rem 0 0;
}

/* Toolbar */
.limelight-toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1.1rem;
    border-bottom: 1px solid var(--border);
}

.limelight-filter-btn {
    padding: 0.3rem 0.85rem;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.12);
    background: transparent;
    color: var(--text-muted);
    font-size: 0.78rem;
    font-family: var(--font-sans);
    cursor: pointer;
    transition: border-color 0.15s, color 0.15s, background 0.15s;
    white-space: nowrap;
}
.limelight-filter-btn:hover {
    border-color: var(--border-active);
    color: var(--text-soft);
}
.limelight-filter-btn.active {
    border-color: var(--crimson);
    color: var(--text);
    background: rgba(200, 58, 58, 0.1);
}

.limelight-count {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-left: auto;
    white-space: nowrap;
}

/* Zonen */
.limelight-zone { margin-bottom: 3rem; }

.limelight-zone__header {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border);
    padding-bottom: 0.6rem;
    margin-bottom: 1.25rem;
}

/* 2-Spalten-Layout: links Gerade angefangen, rechts Seit über einer Stunde */
.limelight-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

/* Grid innerhalb jeder Zone-Spalte: 3 Karten pro Reihe */
.limelight-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
}

.limelight-empty {
    font-size: 0.82rem;
    margin-top: 0.5rem;
}

/* Cards */
.limelight-card {
    display: block;
    text-decoration: none;
    color: inherit;
    border-radius: 8px;
    overflow: hidden;
    background: var(--bg-surface);
    border: 1px solid var(--border);
    transition: border-color 0.2s, transform 0.2s;
}
.limelight-card--overflow { display: none; }
.limelight-card:hover {
    border-color: var(--border-active);
    transform: translateY(-2px);
}

.limelight-card__img {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    background: var(--bg-elevated);
}
.limelight-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Live-Dot oben rechts */
.limelight-card__dot {
    position: absolute;
    top: 0.5rem;
    right: 0.6rem;
    font-size: 0.55rem;
    color: #5cb85c;
    line-height: 1;
    text-shadow: 0 0 8px rgba(92, 184, 92, 0.7);
}

.limelight-card__body {
    padding: 0.4rem 0.5rem 0.55rem;
}

.limelight-card__name {
    font-size: 0.78rem;
    color: var(--text);
    margin: 0.2rem 0 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.limelight-card__duration {
    font-size: 0.68rem;
    color: var(--crimson);
    font-weight: 500;
    margin: 0.15rem 0 0;
}

.limelight-card__attr {
    font-size: 0.65rem;
    color: var(--text-muted);
    margin: 0.1rem 0 0;
}

/* Reload */
.limelight-reload {
    text-align: center;
    padding: 0.5rem 0 2.5rem;
}
.limelight-reload__btn {
    font-size: 0.78rem;
    color: var(--text-muted);
    text-decoration: none;
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 0.4rem 1.25rem;
    transition: color 0.15s, border-color 0.15s;
}
.limelight-reload__btn:hover {
    color: var(--text-soft);
    border-color: var(--border-active);
}

/* Nav-Dot */
.nav-live-dot {
    font-size: 0.5rem;
    color: #5cb85c;
    vertical-align: middle;
    margin-left: 0.15rem;
    text-shadow: 0 0 6px rgba(92, 184, 92, 0.6);
}

@media (max-width: 900px) {
    .limelight-layout { grid-template-columns: 1fr; gap: 1.5rem; }
    .limelight-grid   { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 600px) {
    .limelight-grid   { grid-template-columns: repeat(3, 1fr); }
    .limelight-toolbar { gap: 0.4rem; }
}

/* Limelight Hero – 2-Spalten */
.limelight-hero {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 2.5rem;
    align-items: center;
    padding: 2rem 0 1.5rem;
}
.limelight-intro {
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.7;
    margin: 0;
}
@media (max-width: 700px) {
    .limelight-hero { grid-template-columns: 1fr; gap: 1rem; }
}

/* Limelight Promo-Block (Startseite) */
.limelight-promo {
    display: block;
    padding: 1.25rem 1.5rem;
    margin: 2rem 0;
    border: 1px solid rgba(200, 58, 58, 0.3);
    border-radius: 8px;
    background: rgba(200, 58, 58, 0.05);
    text-decoration: none;
    color: var(--fg);
    transition: border-color 0.15s, background 0.15s;
}
.limelight-promo:hover {
    border-color: rgba(200, 58, 58, 0.55);
    background: rgba(200, 58, 58, 0.09);
    text-decoration: none;
}
.limelight-promo__header {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.6rem;
}
.limelight-promo__dot {
    font-size: 0.55rem;
    color: #5cb85c;
    text-shadow: 0 0 6px rgba(92, 184, 92, 0.7);
}
.limelight-promo__count {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent);
}
.limelight-promo__name {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--fg);
    margin-left: 0.25rem;
}
.limelight-promo__text {
    font-size: 0.875rem;
    color: var(--muted);
    line-height: 1.6;
    margin: 0 0 0.75rem;
}
.limelight-promo__cta {
    font-size: 0.8rem;
    color: var(--accent);
    font-weight: 500;
}

/* ============================================================
   Favoriten – Herz-Button
   ============================================================ */
.fav-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.4rem;
    line-height: 1;
    color: var(--muted);
    padding: 0.2rem 0.3rem;
    transition: color 0.15s, transform 0.15s;
    display: inline-flex;
    align-items: center;
    margin-left: 0.5rem;
    vertical-align: middle;
    transform-origin: left center;
}
.fav-btn:hover {
    color: var(--accent);
    transform: scale(1.15);
}
.fav-btn--active {
    color: var(--accent);
}

/* Herz auf Karten (entdecken + limelight) */
.fav-btn--card {
    position: absolute;
    top: 0.4rem;
    right: 0.4rem;
    font-size: 1.1rem;
    background: rgba(0,0,0,0.45);
    border-radius: 50%;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin: 0;
    padding: 0;
    z-index: 1;
}
.fav-btn--card:hover,
.fav-btn--card.fav-btn--active {
    background: var(--accent);
    color: #fff;
    transform: scale(1.1);
}

/* Favoriten-Verwaltungsseite – Entfernen-Button */
.fav-manage-card {
    position: relative;
}
.fav-remove-btn {
    position: absolute;
    top: 0.4rem;
    left: 0.4rem;
    background: rgba(0,0,0,0.5);
    border: none;
    color: #fff;
    font-size: 0.75rem;
    width: 1.6rem;
    height: 1.6rem;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    transition: background 0.15s;
}
.fav-remove-btn:hover {
    background: var(--accent);
}

/* Live-Dot auf Favoriten-Seite */
.fav-live-dot {
    position: absolute;
    top: 0.4rem;
    right: 0.4rem;
    color: #4caf50;
    font-size: 0.75rem;
    text-shadow: 0 0 4px rgba(0,0,0,0.6);
    z-index: 1;
}

/* Favoriten leer-Zustand */
.fav-empty {
    margin-top: 2rem;
    color: var(--muted);
}

/* ============================================================
   Favoriten – Nav-Counter (optional)
   ============================================================ */
.nav-fav-count {
    font-size: 0.7rem;
    background: var(--accent);
    color: #fff;
    border-radius: 999px;
    padding: 0 0.35rem;
    margin-left: 0.2rem;
    vertical-align: middle;
    display: none;
}
.nav-fav-count.visible {
    display: inline;
}

/* ============================================================
   Toast-Benachrichtigungen
   ============================================================ */
#dy-toast-container {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    pointer-events: none;
    max-width: 320px;
}
.dy-toast {
    pointer-events: all;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--card-bg, #1a1a1a);
    border: 1px solid rgba(200,58,58,0.4);
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    color: var(--fg);
    text-decoration: none;
    font-size: 0.875rem;
    box-shadow: 0 4px 16px rgba(0,0,0,0.4);
    animation: toastIn 0.25s ease;
}
.dy-toast:hover {
    text-decoration: none;
    border-color: var(--accent);
}
.dy-toast--out {
    animation: toastOut 0.3s ease forwards;
}
.dy-toast__dot {
    color: #4caf50;
    font-size: 0.75rem;
    flex-shrink: 0;
}
.dy-toast__text {
    flex: 1;
}
.dy-toast__close {
    background: none;
    border: none;
    color: var(--muted);
    cursor: pointer;
    font-size: 0.75rem;
    padding: 0;
    flex-shrink: 0;
}
.dy-toast__close:hover {
    color: var(--fg);
}
@keyframes toastIn {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes toastOut {
    from { opacity: 1; transform: translateY(0); }
    to   { opacity: 0; transform: translateY(8px); }
}
