/* ═══════════════════════════════════════════════════════════════════════════
   cagliBot – Stylesheet (Glass + Cozy + SaaS)
   Erweitert assets/css/style.css. Wird zusätzlich auf allen /bot-Seiten geladen.
   ═══════════════════════════════════════════════════════════════════════════ */

:root {
    --bot-ink:        #1d0c2c;
    --bot-ink-2:      #2a1140;
    --bot-mint:       #7ef0c1;
    --bot-coral:      #ff7c7c;
    --bot-glass:      rgba(255, 255, 255, 0.55);
    --bot-glass-strong: rgba(255, 255, 255, 0.78);
    --bot-border:     rgba(255, 180, 210, 0.45);
    --bot-shadow:     0 14px 40px rgba(255, 65, 145, 0.18);
    --bot-shadow-lg:  0 24px 60px rgba(168, 85, 247, 0.28);

    --font-saas:      'Sora', 'Space Grotesk', 'Quicksand', sans-serif;
    --font-mono:      'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
}

/* ─── Reset / Base auf /bot überschreiben ─────────────────────────────── */

/*
 * Performance-Notiz:
 *   - Wir setzen das Gradient-Background per ::before als FIXED-Layer.
 *     So muss der Browser ihn beim Scrollen nicht repainten.
 *   - `backdrop-filter: blur(...)` ist auf der gesamten Seite teuer – jede Anwendung
 *     zwingt den Browser, alles darunter zu rastern. Wir setzen ihn nur noch auf
 *     der Sticky-Navigation (1 Layer). Alle anderen Karten nutzen einen
 *     opaken Glass-Look ohne Blur.
 */
body.bot-body {
    background: linear-gradient(180deg, #fff0f8 0%, #fff5fa 40%, #f8e8ff 100%);
    min-height: 100vh;
    position: relative;
    /* Sanftes Repaint-Verhalten beim Scrollen */
    overflow-x: hidden;
}
body.bot-body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background:
        radial-gradient(ellipse at 12% -10%, rgba(168, 85, 247, 0.32) 0%, transparent 45%),
        radial-gradient(ellipse at 88% -10%, rgba(255, 105, 168, 0.36) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 110%, rgba(255, 180, 210, 0.36) 0%, transparent 60%);
}

.bot-shell {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem 4rem;
}

/* ─── Navbar (oben, klebrig) ──────────────────────────────────────────── */

.bot-nav {
    /* Sub-Navi UNTER der Haupt-Navbar – als segmentierte Pill-Tabs aufgebaut. */
    position: relative;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.75rem 1.25rem;
    margin: 0.4rem auto 1rem;
    max-width: 1200px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.85), rgba(255, 240, 248, 0.78));
    border: 1px solid rgba(168, 85, 247, 0.18);
    border-radius: 22px;
    box-shadow: 0 8px 28px -16px rgba(168, 85, 247, 0.35);
}
@media (max-width: 760px) {
    .bot-nav {
        flex-wrap: wrap;
        gap: 0.6rem;
        margin: 0.4rem 0.8rem 1rem;
        padding: 0.6rem 0.8rem;
        border-radius: 18px;
    }
}

/* ─── Pill-Tabs (segmented control) ────────────────────────────────── */
.bot-nav__tabs {
    display: inline-flex;
    align-items: center;
    gap: 0.15rem;
    padding: 0.25rem;
    background: rgba(168, 85, 247, 0.08);
    border-radius: 14px;
    backdrop-filter: blur(4px);
    overflow-x: auto;
    scrollbar-width: none;
}
.bot-nav__tabs::-webkit-scrollbar { display: none; }

.bot-nav__tab {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 0.95rem;
    border-radius: 11px;
    color: var(--text);
    text-decoration: none;
    font-family: var(--font-saas);
    font-weight: 600;
    font-size: 0.92rem;
    line-height: 1;
    white-space: nowrap;
    transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}
.bot-nav__tab-icon {
    font-size: 1rem;
    filter: saturate(1.2);
    transition: transform 0.25s ease;
}
.bot-nav__tab:hover {
    background: rgba(255, 255, 255, 0.7);
    color: var(--pink-700);
}
.bot-nav__tab:hover .bot-nav__tab-icon { transform: scale(1.12) rotate(-4deg); }
.bot-nav__tab:focus-visible {
    outline: 2px solid var(--purple-500);
    outline-offset: 2px;
}
.bot-nav__tab--active {
    background: linear-gradient(135deg, #fff, rgba(255, 215, 235, 0.95));
    color: var(--pink-700);
    box-shadow: 0 6px 18px -8px rgba(255, 105, 168, 0.55), inset 0 0 0 1px rgba(255, 255, 255, 0.9);
}
.bot-nav__tab--active .bot-nav__tab-icon { transform: scale(1.08); }

/* ─── User-Block ───────────────────────────────────────────────────── */
.bot-nav__user {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.25rem 0.55rem 0.25rem 0.25rem;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(168, 85, 247, 0.18);
    border-radius: 999px;
}
.bot-nav__user-name {
    font-family: var(--font-saas);
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--text);
    max-width: 140px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
@media (max-width: 760px) {
    .bot-nav__user-name { display: none; }
}
.bot-nav__icon-btn {
    display: inline-grid;
    place-items: center;
    width: 30px; height: 30px;
    border-radius: 50%;
    color: var(--text-light);
    text-decoration: none;
    background: rgba(168, 85, 247, 0.08);
    font-size: 0.9rem;
    transition: background 0.18s, color 0.18s;
}
.bot-nav__icon-btn:hover {
    background: rgba(168, 85, 247, 0.22);
    color: var(--pink-700);
}
.bot-nav__brand {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--text);
    text-decoration: none;
    font-family: var(--font-display);
    font-size: 1.4rem;
    background: linear-gradient(135deg, var(--pink-500), var(--purple-500));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.bot-nav__brand-mark {
    display: inline-grid;
    place-items: center;
    width: 36px; height: 36px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--pink-400), var(--purple-500));
    color: #fff;
    -webkit-text-fill-color: #fff;
    box-shadow: var(--bot-shadow);
    font-family: var(--font-saas);
    font-weight: 800;
    font-size: 1rem;
}
.bot-nav__links {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}
.bot-nav__link {
    padding: 0.5rem 0.85rem;
    border-radius: 999px;
    color: var(--text);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: background 0.18s, color 0.18s;
}
.bot-nav__link:hover { background: rgba(255, 105, 168, 0.12); }
.bot-nav__link--active { background: var(--pink-100); color: var(--pink-700); }

.bot-nav__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 1.1rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--twitch), var(--pink-500));
    color: #fff !important;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 8px 22px rgba(145, 70, 255, 0.32);
    transition: transform 0.18s, box-shadow 0.18s;
    border: none;
    cursor: pointer;
    font-family: var(--font-saas);
}
.bot-nav__cta:hover { transform: translateY(-1px); box-shadow: 0 12px 28px rgba(145, 70, 255, 0.42); }

.bot-nav__avatar {
    width: 32px; height: 32px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--pink-200);
}

/* ─── Buttons ─────────────────────────────────────────────────────────── */

.bot-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.7rem 1.2rem;
    border-radius: 999px;
    border: none;
    background: linear-gradient(135deg, var(--pink-500), var(--purple-500));
    color: #fff;
    font-family: var(--font-saas);
    font-weight: 700;
    font-size: 0.98rem;
    text-decoration: none;
    box-shadow: var(--bot-shadow);
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.bot-btn:hover { transform: translateY(-2px); box-shadow: var(--bot-shadow-lg); }
.bot-btn:active { transform: translateY(0); }
.bot-btn--twitch { background: linear-gradient(135deg, #9146ff, #7c3aed); }
.bot-btn--ghost {
    background: var(--white);
    color: var(--pink-700);
    border: 2px solid var(--pink-200);
    box-shadow: none;
}
.bot-btn--ghost:hover { background: var(--pink-50); }
.bot-btn--danger { background: linear-gradient(135deg, #ff4d6d, #c21065); }
.bot-btn--sm { padding: 0.45rem 0.85rem; font-size: 0.88rem; }

/* ─── Hero ─────────────────────────────────────────────────────────────── */

.bot-hero {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2.5rem;
    align-items: center;
    padding: 3.5rem 0 2.5rem;
}
.bot-hero__eyebrow {
    display: inline-flex;
    gap: 0.4rem;
    align-items: center;
    padding: 0.3rem 0.8rem;
    border-radius: 999px;
    background: var(--pink-100);
    color: var(--pink-700);
    font-family: var(--font-saas);
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.bot-hero__headline {
    margin: 1rem 0 0.6rem;
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    line-height: 1.1;
    color: var(--text);
    background: linear-gradient(135deg, var(--pink-500), var(--purple-500));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.bot-hero__subline {
    margin: 0 0 1.5rem;
    font-size: 1.15rem;
    line-height: 1.55;
    color: var(--text-light);
    max-width: 38rem;
}
.bot-hero__ctas {
    display: flex;
    gap: 0.7rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}
.bot-hero__microtrust {
    font-size: 0.9rem;
    color: var(--text-light);
}
.bot-hero__mockup {
    position: relative;
    padding: 1.4rem;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid var(--bot-border);
    border-radius: 22px;
    box-shadow: var(--bot-shadow-lg);
}
.bot-hero__mockup::before {
    content: '';
    position: absolute;
    inset: -22px;
    border-radius: 30px;
    background: radial-gradient(circle at 20% 20%, rgba(255, 105, 168, 0.30), transparent 60%),
                radial-gradient(circle at 80% 80%, rgba(168, 85, 247, 0.26), transparent 60%);
    z-index: -1;
}

/* ─── Demo-Chat ────────────────────────────────────────────────────────── */

.bot-chat {
    font-family: var(--font-mono);
    font-size: 0.92rem;
    line-height: 1.6;
    background: var(--bot-ink);
    color: #f5e8ff;
    border-radius: 18px;
    padding: 1.1rem 1.2rem;
    overflow: hidden;
}
.bot-chat__title {
    font-family: var(--font-saas);
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #c4a5ff;
    margin-bottom: 0.6rem;
}
.bot-chat__msg { display: block; margin-bottom: 0.35rem; }
.bot-chat__user { color: #ff9bcf; font-weight: 700; margin-right: 0.4rem; }
.bot-chat__bot  { color: var(--bot-mint); font-weight: 700; margin-right: 0.4rem; }
.bot-chat__bot::before { content: '🤖 '; }

/* ─── Strip ──────────────────────────────────────────────────────────── */

.bot-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin: 1.8rem 0 2.5rem;
}
.bot-strip__item {
    display: flex;
    gap: 0.6rem;
    align-items: center;
    padding: 1rem 1.2rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid var(--bot-border);
    font-family: var(--font-saas);
    font-weight: 600;
    color: var(--text);
}
.bot-strip__icon { font-size: 1.3rem; }

/* ─── Section ──────────────────────────────────────────────────────────── */

.bot-section {
    padding: 3rem 0 1.5rem;
    /* Sections, die gerade nicht sichtbar sind, vom Layout/Paint entlasten. */
    content-visibility: auto;
    contain-intrinsic-size: 800px;
}
.bot-section__title {
    margin: 0 0 0.4rem;
    font-family: var(--font-saas);
    font-weight: 700;
    font-size: clamp(1.7rem, 3vw, 2.3rem);
    color: var(--text);
}
.bot-section__lead {
    margin: 0 0 2rem;
    color: var(--text-light);
    max-width: 50rem;
    font-size: 1.05rem;
}
.bot-section__header {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

/* ─── Feature Grid ─────────────────────────────────────────────────────── */

.bot-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.1rem;
}
.bot-feature {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid var(--bot-border);
    border-radius: var(--radius);
    box-shadow: var(--bot-shadow);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.bot-feature:hover { transform: translateY(-6px); box-shadow: var(--bot-shadow-lg); }
.bot-feature__icon {
    display: inline-grid;
    place-items: center;
    width: 46px; height: 46px;
    margin-bottom: 0.9rem;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--pink-300), var(--purple-400));
    color: #fff;
    font-size: 1.4rem;
    box-shadow: var(--bot-shadow);
}
.bot-feature__title {
    margin: 0 0 0.3rem;
    font-family: var(--font-saas);
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--text);
}
.bot-feature__body { color: var(--text-light); line-height: 1.5; font-size: 0.97rem; margin: 0; }

/* ─── Pricing ──────────────────────────────────────────────────────────── */

.bot-pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    align-items: stretch;
}
.bot-plan {
    position: relative;
    padding: 1.6rem 1.4rem;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid var(--bot-border);
    border-radius: 22px;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}
.bot-plan--featured {
    border: 2px solid var(--purple-400);
    box-shadow: var(--bot-shadow-lg);
    transform: translateY(-4px);
}
.bot-plan__badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.3rem 0.9rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--pink-500), var(--purple-500));
    color: #fff;
    font-family: var(--font-saas);
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    box-shadow: var(--bot-shadow);
}
.bot-plan__name {
    font-family: var(--font-saas);
    font-size: 1rem;
    color: var(--text-light);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.bot-plan__price {
    font-family: var(--font-saas);
    font-weight: 800;
    font-size: 2.1rem;
    color: var(--text);
    margin: 0;
    line-height: 1;
}
.bot-plan__price small {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-light);
}
.bot-plan__credits {
    font-size: 0.92rem;
    color: var(--purple-500);
    font-weight: 700;
}
.bot-plan__features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    color: var(--text);
    font-size: 0.93rem;
}
.bot-plan__features li::before { content: '✓ '; color: var(--purple-500); font-weight: 800; }
.bot-plan__cta { margin-top: auto; text-align: center; }

/* ─── FAQ ──────────────────────────────────────────────────────────────── */

.bot-faq { display: flex; flex-direction: column; gap: 0.7rem; max-width: 720px; }
.bot-faq__item {
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid var(--bot-border);
    border-radius: 16px;
    padding: 1rem 1.2rem;
}
.bot-faq__item summary {
    cursor: pointer;
    font-family: var(--font-saas);
    font-weight: 700;
    color: var(--text);
    list-style: none;
}
.bot-faq__item summary::after { content: ' +'; color: var(--pink-500); }
.bot-faq__item[open] summary::after { content: ' −'; }
.bot-faq__item p { margin: 0.6rem 0 0; color: var(--text-light); font-size: 0.97rem; line-height: 1.55; }

/* ─── Footer ───────────────────────────────────────────────────────────── */

.bot-footer {
    margin-top: 4rem;
    padding: 3rem 1.25rem 2rem;
    background: linear-gradient(180deg, transparent, rgba(168, 85, 247, 0.08));
    border-top: 1px solid var(--bot-border);
}
.bot-footer__grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
}
.bot-footer__brand h2 {
    margin: 0 0 0.5rem;
    font-family: var(--font-display);
    background: linear-gradient(135deg, var(--pink-500), var(--purple-500));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.6rem;
}
.bot-footer__brand p { color: var(--text-light); margin: 0; font-size: 0.95rem; line-height: 1.5; max-width: 22rem; }
.bot-footer__col h3 {
    margin: 0 0 0.8rem;
    font-family: var(--font-saas);
    font-size: 0.85rem;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.bot-footer__col a {
    display: block;
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.93rem;
    padding: 0.22rem 0;
    transition: color 0.18s;
}
.bot-footer__col a:hover { color: var(--pink-500); }
.bot-footer__bottom {
    max-width: 1200px;
    margin: 2rem auto 0;
    padding-top: 1.5rem;
    border-top: 1px solid var(--bot-border);
    color: var(--text-light);
    font-size: 0.85rem;
    text-align: center;
}

/* ─── Dashboard Layout ─────────────────────────────────────────────────── */

.bot-dashboard {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 1.5rem;
    align-items: start;
    padding: 1.5rem 0;
}
.bot-sidebar {
    position: sticky;
    top: 80px;
    padding: 1.2rem;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--bot-border);
    border-radius: 22px;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}
.bot-sidebar__user {
    display: flex;
    gap: 0.6rem;
    align-items: center;
    padding: 0.6rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.8rem;
}
.bot-sidebar__user img { width: 38px; height: 38px; border-radius: 50%; }
.bot-sidebar__user-name { font-family: var(--font-saas); font-weight: 700; color: var(--text); font-size: 0.95rem; }
.bot-sidebar__user-plan { font-size: 0.78rem; color: var(--purple-500); font-weight: 700; text-transform: uppercase; }
.bot-sidebar__link {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.6rem 0.8rem;
    border-radius: 12px;
    color: var(--text);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.94rem;
    transition: background 0.18s;
}
.bot-sidebar__link:hover { background: rgba(255, 105, 168, 0.1); }
.bot-sidebar__link--active {
    background: linear-gradient(135deg, var(--pink-400), var(--purple-400));
    color: #fff !important;
    box-shadow: var(--bot-shadow);
}

.bot-dashboard__main { display: flex; flex-direction: column; gap: 1.3rem; min-width: 0; }
.bot-card {
    padding: 1.4rem;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid var(--bot-border);
    border-radius: 22px;
    box-shadow: var(--bot-shadow);
}
.bot-card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}
.bot-card__title {
    margin: 0;
    font-family: var(--font-saas);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text);
}
.bot-card__lead {
    margin: 0;
    color: var(--text-light);
    font-size: 0.92rem;
}

.bot-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
}
.bot-kpi { display: flex; flex-direction: column; gap: 0.3rem; }
.bot-kpi__label { font-size: 0.85rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.06em; font-family: var(--font-saas); font-weight: 700; }
.bot-kpi__value { font-family: var(--font-saas); font-weight: 800; font-size: 1.8rem; color: var(--text); line-height: 1.1; }
.bot-kpi__hint  { font-size: 0.85rem; color: var(--text-light); }

/* Bot-Status-Badge */
.bot-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.3rem 0.7rem;
    border-radius: 999px;
    font-family: var(--font-saas);
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.bot-status-badge--online {
    background: rgba(126, 240, 193, 0.25);
    color: #0f7c5a;
}
.bot-status-badge--offline {
    background: rgba(255, 124, 124, 0.2);
    color: #b8323e;
}
.bot-status-badge--online .dot,
.bot-status-badge--offline .dot {
    width: 8px; height: 8px; border-radius: 50%; background: currentColor;
}
.bot-status-badge--online .dot { animation: bot-pulse 1.6s ease-out infinite; }
@keyframes bot-pulse {
    0%   { box-shadow: 0 0 0 0 rgba(126, 240, 193, 0.7); }
    70%  { box-shadow: 0 0 0 8px rgba(126, 240, 193, 0); }
    100% { box-shadow: 0 0 0 0 rgba(126, 240, 193, 0); }
}

/* Progress (Credits) */
.bot-progress {
    width: 100%;
    height: 10px;
    background: rgba(168, 85, 247, 0.12);
    border-radius: 999px;
    overflow: hidden;
}
.bot-progress__fill {
    height: 100%;
    background: linear-gradient(90deg, var(--pink-400), var(--purple-500));
    border-radius: 999px;
    transition: width 0.4s ease;
}

/* Toast */
.bot-toast {
    position: fixed;
    right: 1.5rem;
    bottom: 1.5rem;
    z-index: 1000;
    padding: 0.8rem 1.2rem;
    background: var(--bot-ink);
    color: #fff;
    border-radius: 14px;
    box-shadow: var(--bot-shadow-lg);
    font-family: var(--font-saas);
    font-weight: 600;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.25s, transform 0.25s;
    pointer-events: none;
}
.bot-toast.is-visible { opacity: 1; transform: translateY(0); }

/* Banner (Wartungsmodus / Credits leer) */
.bot-banner {
    padding: 0.9rem 1.2rem;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(255, 200, 80, 0.25), rgba(255, 124, 124, 0.18));
    border: 1px solid rgba(255, 124, 124, 0.4);
    color: #8a3b14;
    font-weight: 600;
}
.bot-banner--info {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.18), rgba(255, 105, 168, 0.18));
    border-color: rgba(168, 85, 247, 0.35);
    color: #5b2148;
}

/* Tabellen */
.bot-table {
    width: 100%;
    border-collapse: collapse;
}
.bot-table th, .bot-table td {
    padding: 0.65rem 0.8rem;
    text-align: left;
    border-bottom: 1px solid rgba(255, 180, 210, 0.35);
    font-size: 0.93rem;
}
.bot-table th {
    font-family: var(--font-saas);
    font-size: 0.78rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.bot-table tr:hover td { background: rgba(255, 240, 245, 0.6); }

/* Inputs */
.bot-input, .bot-select, .bot-textarea {
    width: 100%;
    padding: 0.65rem 0.9rem;
    border-radius: 12px;
    border: 1px solid var(--bot-border);
    background: var(--bot-glass-strong);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 0.96rem;
}
.bot-input:focus, .bot-select:focus, .bot-textarea:focus {
    outline: 2px solid var(--purple-400);
    outline-offset: 1px;
}
.bot-textarea { min-height: 80px; resize: vertical; }
.bot-label {
    display: block;
    font-family: var(--font-saas);
    font-size: 0.82rem;
    color: var(--text);
    margin-bottom: 0.3rem;
    font-weight: 600;
}

/* Skeleton */
.bot-skeleton {
    background: linear-gradient(90deg, rgba(255, 200, 220, 0.4) 0%, rgba(255, 235, 245, 0.7) 50%, rgba(255, 200, 220, 0.4) 100%);
    background-size: 200% 100%;
    animation: bot-shimmer 1.4s infinite linear;
    border-radius: 10px;
}
@keyframes bot-shimmer { to { background-position: -200% 0; } }

/* ─── Admin-Portal-Variante (dezenter, sachlicher) ────────────────────── */

body.bot-admin-body {
    background: linear-gradient(180deg, #1d0c2c 0%, #2a1140 100%);
    color: #f3e8ff;
    min-height: 100vh;
}
body.bot-admin-body a { color: #ffb3d4; }
body.bot-admin-body .bot-nav {
    background: linear-gradient(135deg, rgba(29, 12, 44, 0.92), rgba(50, 16, 75, 0.85));
    border: 1px solid rgba(168, 85, 247, 0.32);
    box-shadow: 0 10px 32px -16px rgba(168, 85, 247, 0.6);
}
body.bot-admin-body .bot-nav__brand { background: linear-gradient(135deg, #ff9bcf, #c084fc); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
body.bot-admin-body .bot-nav__tabs { background: rgba(168, 85, 247, 0.14); }
body.bot-admin-body .bot-nav__tab { color: #f3e8ff; }
body.bot-admin-body .bot-nav__tab:hover { background: rgba(168, 85, 247, 0.22); color: #fff; }
body.bot-admin-body .bot-nav__tab--active {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.55), rgba(255, 105, 168, 0.45));
    color: #fff;
    box-shadow: 0 6px 18px -8px rgba(168, 85, 247, 0.7), inset 0 0 0 1px rgba(255, 255, 255, 0.15);
}
body.bot-admin-body .bot-nav__user { background: rgba(168, 85, 247, 0.18); border-color: rgba(168, 85, 247, 0.3); }
body.bot-admin-body .bot-nav__user-name { color: #f3e8ff; }
body.bot-admin-body .bot-nav__icon-btn { background: rgba(168, 85, 247, 0.22); color: #f3e8ff; }
body.bot-admin-body .bot-nav__icon-btn:hover { background: rgba(168, 85, 247, 0.4); color: #fff; }
body.bot-admin-body .bot-sidebar,
body.bot-admin-body .bot-card {
    background: rgba(42, 17, 64, 0.55);
    border-color: rgba(168, 85, 247, 0.3);
    color: #f3e8ff;
}
body.bot-admin-body .bot-sidebar__link { color: #f3e8ff; }
body.bot-admin-body .bot-sidebar__link:hover { background: rgba(168, 85, 247, 0.2); }
body.bot-admin-body .bot-card__title { color: #fff; }
body.bot-admin-body .bot-kpi__value { color: #fff; }
body.bot-admin-body .bot-kpi__label, body.bot-admin-body .bot-card__lead, body.bot-admin-body .bot-kpi__hint { color: #d6b8f5; }
body.bot-admin-body .bot-table th { color: #d6b8f5; border-color: rgba(168, 85, 247, 0.25); }
body.bot-admin-body .bot-table td { border-color: rgba(168, 85, 247, 0.18); }
body.bot-admin-body .bot-table tr:hover td { background: rgba(168, 85, 247, 0.12); }
body.bot-admin-body .bot-input, body.bot-admin-body .bot-select, body.bot-admin-body .bot-textarea {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border-color: rgba(168, 85, 247, 0.35);
}

/* ═══ Valorant-Power Hero (Dashboard Overview + Pages) ════════════════════ */
.bot-valpower {
    position: relative;
    margin-top: 0.5rem;
    padding: 1.6rem 1.6rem 1.4rem;
    border-radius: 24px;
    background:
        radial-gradient(120% 80% at 100% 0%, rgba(255, 70, 84, 0.18), transparent 55%),
        radial-gradient(80% 60% at 0% 100%, rgba(168, 85, 247, 0.22), transparent 55%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 240, 248, 0.95));
    border: 1px solid rgba(255, 70, 84, 0.22);
    box-shadow: 0 18px 40px -22px rgba(168, 85, 247, 0.5);
    overflow: hidden;
}
.bot-valpower::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200' viewBox='0 0 200 200'%3E%3Cg fill='none' stroke='%23ff4654' stroke-width='1' opacity='0.04'%3E%3Cpath d='M100 0 L200 100 L100 200 L0 100 Z'/%3E%3Cpath d='M100 40 L160 100 L100 160 L40 100 Z'/%3E%3Cpath d='M100 70 L130 100 L100 130 L70 100 Z'/%3E%3C/g%3E%3C/svg%3E") no-repeat right top / 200px 200px;
    pointer-events: none;
}
.bot-valpower__head {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1.4rem;
    align-items: flex-start;
    position: relative;
    z-index: 1;
}
.bot-valpower__pill {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.3rem 0.7rem;
    border-radius: 999px;
    background: rgba(255, 70, 84, 0.12);
    color: #b8203a;
    font-family: var(--font-saas);
    font-weight: 700;
    font-size: 0.74rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.bot-valpower__pill-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: #ff4654;
    box-shadow: 0 0 0 4px rgba(255, 70, 84, 0.22);
    animation: bot-valpower-pulse 1.8s ease-out infinite;
}
@keyframes bot-valpower-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 70, 84, 0.5); }
    50%      { box-shadow: 0 0 0 6px rgba(255, 70, 84, 0); }
}
.bot-valpower__title {
    margin: 0.6rem 0 0.4rem;
    font-family: var(--font-saas);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text);
    letter-spacing: -0.01em;
}
.bot-valpower__lead {
    margin: 0;
    max-width: 56ch;
    color: var(--text-light);
    line-height: 1.5;
    font-size: 0.95rem;
}
.bot-valpower__stats {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    min-width: 180px;
}
.bot-valpower__stat {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    padding: 0.7rem 0.9rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(168, 85, 247, 0.18);
}
.bot-valpower__stat-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-light);
    font-weight: 600;
}
.bot-valpower__stat strong {
    font-family: var(--font-saas);
    font-size: 1.05rem;
    color: var(--text);
}

.bot-valpower__cmds {
    position: relative;
    z-index: 1;
    margin-top: 1.3rem;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    gap: 0.55rem;
}
.bot-valpower__cmd {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.6rem 0.85rem;
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(168, 85, 247, 0.16);
    border-radius: 14px;
    transition: transform 0.18s, border-color 0.18s, background 0.18s;
}
.bot-valpower__cmd:hover {
    transform: translateY(-1px);
    border-color: rgba(255, 70, 84, 0.4);
    background: rgba(255, 255, 255, 0.95);
}
.bot-valpower__cmd > code {
    display: inline-block;
    padding: 0.18rem 0.5rem;
    border-radius: 7px;
    background: linear-gradient(135deg, #ff4654, #c026d3);
    color: #fff;
    font-family: var(--font-mono);
    font-size: 0.78rem;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 4px 12px -4px rgba(255, 70, 84, 0.5);
}
.bot-valpower__cmd span {
    font-size: 0.84rem;
    color: var(--text-light);
    line-height: 1.35;
}
.bot-valpower__cmd span code {
    background: rgba(168, 85, 247, 0.15);
    color: #6b21a8;
    padding: 0.05rem 0.32rem;
    border-radius: 5px;
    font-size: 0.72rem;
}

.bot-valpower__cta {
    position: relative;
    z-index: 1;
    margin-top: 1.3rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.55rem;
    padding-top: 1rem;
    border-top: 1px dashed rgba(168, 85, 247, 0.22);
}
.bot-valpower__alias-hint {
    margin-left: auto;
    font-size: 0.78rem;
    color: var(--text-light);
}
.bot-valpower__alias-hint code {
    padding: 0.05rem 0.32rem;
    border-radius: 5px;
    background: rgba(168, 85, 247, 0.13);
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: #6b21a8;
    margin: 0 0.05rem;
}

body.bot-admin-body .bot-valpower {
    background:
        radial-gradient(120% 80% at 100% 0%, rgba(255, 70, 84, 0.22), transparent 55%),
        radial-gradient(80% 60% at 0% 100%, rgba(168, 85, 247, 0.3), transparent 55%),
        linear-gradient(135deg, rgba(42, 17, 64, 0.85), rgba(29, 12, 44, 0.85));
    border-color: rgba(255, 70, 84, 0.3);
}
body.bot-admin-body .bot-valpower__title { color: #f3e8ff; }
body.bot-admin-body .bot-valpower__lead { color: rgba(243, 232, 255, 0.78); }
body.bot-admin-body .bot-valpower__stat { background: rgba(168, 85, 247, 0.14); border-color: rgba(168, 85, 247, 0.32); }
body.bot-admin-body .bot-valpower__stat-label { color: rgba(243, 232, 255, 0.7); }
body.bot-admin-body .bot-valpower__stat strong { color: #fff; }
body.bot-admin-body .bot-valpower__cmd { background: rgba(168, 85, 247, 0.12); border-color: rgba(168, 85, 247, 0.28); }
body.bot-admin-body .bot-valpower__cmd:hover { background: rgba(168, 85, 247, 0.22); }
body.bot-admin-body .bot-valpower__cmd span { color: rgba(243, 232, 255, 0.82); }
body.bot-admin-body .bot-valpower__cmd span code { background: rgba(255, 255, 255, 0.12); color: #fff; }
body.bot-admin-body .bot-valpower__cta { border-top-color: rgba(168, 85, 247, 0.32); }
body.bot-admin-body .bot-valpower__alias-hint { color: rgba(243, 232, 255, 0.7); }
body.bot-admin-body .bot-valpower__alias-hint code { background: rgba(255, 255, 255, 0.12); color: #fff; }

/* ─── Responsive ──────────────────────────────────────────────────────── */

@media (max-width: 980px) {
    .bot-hero { grid-template-columns: 1fr; }
    .bot-strip { grid-template-columns: 1fr; }
    .bot-feature-grid { grid-template-columns: 1fr 1fr; }
    .bot-pricing-grid { grid-template-columns: 1fr 1fr; }
    .bot-footer__grid { grid-template-columns: 1fr 1fr; }
    .bot-dashboard { grid-template-columns: 1fr; }
    .bot-sidebar { position: static; }
}
@media (max-width: 720px) {
    .bot-valpower__head { grid-template-columns: 1fr; }
    .bot-valpower__alias-hint { margin-left: 0; flex: 1 1 100%; }
}
@media (max-width: 640px) {
    .bot-feature-grid { grid-template-columns: 1fr; }
    .bot-pricing-grid { grid-template-columns: 1fr; }
    .bot-footer__grid { grid-template-columns: 1fr; }
    .bot-nav__links { display: none; }
    /* Pill-Tabs bleiben sichtbar – scrollen horizontal */
    .bot-nav__tabs { flex: 1 1 100%; order: 3; }
    .bot-nav__tab { padding: 0.45rem 0.7rem; font-size: 0.85rem; }
    .bot-nav__tab-icon { display: none; }
}

@media (prefers-reduced-motion: reduce) {
    .bot-feature, .bot-btn, .bot-nav__cta { transition: none; }
    .bot-skeleton { animation: none; }
}
