﻿/* --- INFO & RECHTLICHES STYLES --- */
.content-box {
    background-color: var(--panel-bg);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 40px;
    border: var(--glass-border);
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
    color: #ddd;
}
.content-box h1, .content-box h2 { color: var(--gold-main); margin-bottom: 20px; text-transform: uppercase; }
.content-box h3 { color: #fff; margin-top: 30px; }
.content-box a { color: var(--accent-green); text-decoration: none; border-bottom: 1px solid transparent; transition: 0.3s; }
.content-box a:hover { border-color: var(--accent-green); }

.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
@media (max-width: 768px) { .about-grid { grid-template-columns: 1fr; gap: 24px; } }

/* ══════════════════════════════════════════════════════
   ÜBER UNS – animations + mobile
══════════════════════════════════════════════════════ */

/* ── Keyframes ────────────────────────────────────────── */
@keyframes au-fade-up {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes au-fade-in {
    from { opacity: 0; }
    to   { opacity: 1; }
}
@keyframes au-glow-pulse {
    0%,100% { opacity: 0.7; transform: scale(1); }
    50%      { opacity: 1;   transform: scale(1.06); }
}
@keyframes au-badge-pop {
    0%   { opacity: 0; transform: scale(0.7) translateY(-6px); }
    70%  { transform: scale(1.08) translateY(0); }
    100% { opacity: 1; transform: scale(1); }
}
@keyframes au-gradient-shift {
    0%,100% { background-position: 0% 50%; }
    50%      { background-position: 100% 50%; }
}
@keyframes au-border-glow {
    0%,100% { box-shadow: 0 0 0 0 rgba(0,200,255,0); border-color: rgba(255,255,255,0.07); }
    50%      { box-shadow: 0 0 20px 2px rgba(0,200,255,0.12); border-color: rgba(0,200,255,0.25); }
}

/* ── Animation classes (toggled by JS) ───────────────── */
[data-au] { opacity: 0; }
[data-au].au-in {
    animation: au-fade-up 0.55s cubic-bezier(0.22,1,0.36,1) forwards;
}
[data-au-fade].au-in {
    animation: au-fade-in 0.5s ease forwards;
}

/* ── Layout ───────────────────────────────────────────── */
.au-wrap { display: flex; flex-direction: column; gap: 28px; }

/* Hero */
.au-hero {
    position: relative;
    background: linear-gradient(135deg, rgba(0,200,255,0.07) 0%, rgba(163,100,255,0.07) 50%, rgba(255,215,0,0.04) 100%);
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 24px;
    padding: 60px 40px 52px;
    text-align: center;
    overflow: hidden;
}
.au-hero-glow {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 70% 55% at 50% -10%, rgba(0,200,255,0.18), transparent);
    pointer-events: none;
    animation: au-glow-pulse 5s ease-in-out infinite;
}
.au-hero-badge {
    display: inline-block;
    background: rgba(0,200,255,0.1);
    border: 1px solid rgba(0,200,255,0.3);
    color: #00c8ff;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 5px 16px;
    border-radius: 50px;
    margin-bottom: 18px;
    text-transform: uppercase;
    animation: au-badge-pop 0.6s cubic-bezier(0.22,1,0.36,1) 0.1s both;
}
.au-hero-title {
    font-size: clamp(2rem, 5vw, 3.4rem);
    font-weight: 800;
    letter-spacing: -0.5px;
    margin: 0 0 14px;
    color: #fff;
    line-height: 1.1;
    animation: au-fade-up 0.6s cubic-bezier(0.22,1,0.36,1) 0.15s both;
}
.au-hero-accent {
    background: linear-gradient(90deg, #00c8ff, #a364ff, #00c8ff);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: au-gradient-shift 4s ease infinite;
}
.au-hero-sub {
    font-size: 1rem;
    color: rgba(255,255,255,0.52);
    max-width: 520px;
    margin: 0 auto 36px;
    line-height: 1.65;
    animation: au-fade-up 0.6s cubic-bezier(0.22,1,0.36,1) 0.25s both;
}

/* Hero stats – horizontal scroll on mobile */
.au-hero-stats-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin: 0 -40px;
    padding: 0 40px;
    animation: au-fade-up 0.6s cubic-bezier(0.22,1,0.36,1) 0.35s both;
}
.au-hero-stats-wrap::-webkit-scrollbar { display: none; }
.au-hero-stats {
    display: inline-flex;
    align-items: center;
    min-width: max-content;
    gap: 0;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
    padding: 18px 8px;
    width: 100%;
    justify-content: center;
}
.au-hs { text-align: center; padding: 0 32px; }
.au-hs-num {
    font-size: 1.7rem;
    font-weight: 800;
    background: linear-gradient(90deg, #00c8ff, #a364ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}
.au-hs-lbl { font-size: 0.68rem; color: rgba(255,255,255,0.38); text-transform: uppercase; letter-spacing: 1.2px; margin-top: 4px; }
.au-hs-sep { width: 1px; height: 40px; background: rgba(255,255,255,0.09); flex-shrink: 0; }

/* Story Cards – horizontal scroll on mobile */
.au-cards-wrap {
    position: relative;
}
.au-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}
.au-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 18px;
    padding: 24px 20px;
    transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
    cursor: default;
}
.au-card:hover {
    border-color: rgba(0,200,255,0.28);
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(0,200,255,0.08);
}
.au-card-icon {
    width: 52px; height: 52px;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 16px;
    transition: transform 0.3s;
}
.au-card:hover .au-card-icon { transform: scale(1.1) rotate(-4deg); }
.au-card-ico-img {
    width: 28px; height: 28px;
    object-fit: contain;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.3));
}
.au-card-title { font-size: 0.9rem; font-weight: 700; color: #fff; margin: 0 0 8px; }
.au-card-text { font-size: 0.77rem; color: rgba(255,255,255,0.43); line-height: 1.65; margin: 0; }

/* What we offer */
.au-section-label {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #00c8ff;
    margin-bottom: 14px;
}
.au-offer {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 20px;
    padding: 24px 24px 20px;
}
.au-offer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}
.au-offer-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 14px;
    padding: 14px 16px;
    transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.au-offer-item:hover {
    border-color: rgba(0,200,255,0.25);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,200,255,0.07);
}
.au-offer-img { width: 32px; height: 32px; object-fit: contain; border-radius: 8px; flex-shrink: 0; }
.au-offer-emoji { font-size: 1.6rem; line-height: 1; flex-shrink: 0; }
.au-offer-name { font-size: 0.82rem; font-weight: 700; color: #fff; }
.au-offer-desc { font-size: 0.69rem; color: rgba(255,255,255,0.38); margin-top: 2px; line-height: 1.4; }

/* Contact section */
.au-contact-wrap {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 24px;
    align-items: start;
}
.au-contact-title { font-size: 1.5rem; font-weight: 800; color: #fff; margin: 0 0 10px; }
.au-contact-sub { font-size: 0.82rem; color: rgba(255,255,255,0.43); line-height: 1.65; margin: 0 0 20px; }
.au-contact-btns { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 20px; }
.au-contact-btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 11px 20px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
    border: none;
}
.au-contact-btn:hover { opacity: 0.9; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,0,0,0.3); }
.au-contact-btn--discord { background: #5865F2; color: #fff; }
.au-contact-btn--mail { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.14); color: #fff; }
.au-info-box {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 14px;
    padding: 16px 18px;
    display: flex; flex-direction: column; gap: 10px;
    margin-bottom: 20px;
}
.au-info-row { display: flex; align-items: center; gap: 10px; font-size: 0.79rem; color: rgba(255,255,255,0.48); }
.au-info-row svg { color: #00c8ff; flex-shrink: 0; }
.au-coffee p { font-size: 0.77rem; color: rgba(255,255,255,0.33); margin: 0 0 8px; }
.au-coffee-btn {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.65);
    padding: 9px 20px;
    border-radius: 50px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.2s;
}
.au-coffee-btn:hover { background: rgba(255,255,255,0.1); color: #fff; transform: translateY(-1px); }
.au-form-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 28px;
    transition: border-color 0.4s;
    animation: au-border-glow 6s ease-in-out 1.5s infinite;
}
.au-form-header { display: flex; align-items: center; gap: 14px; margin-bottom: 22px; }
.au-form-icon { font-size: 1.8rem; line-height: 1; }
.au-form-title { font-size: 1rem; font-weight: 700; color: #fff; }
.au-form-sub { font-size: 0.74rem; color: rgba(255,255,255,0.38); margin-top: 2px; }

/* Staggered card animations */
.au-cards-wrap.au-in .au-card {
    animation: au-fade-up 0.5s cubic-bezier(0.22,1,0.36,1) both;
    animation-delay: var(--au-delay, 0ms);
}
.au-cards-wrap[data-au] .au-card { opacity: 0; }

/* ── Responsive ────────────────────────────────────────── */
@media (max-width: 1024px) {
    .au-cards { grid-template-columns: repeat(2, 1fr); }
    .au-offer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .au-wrap { gap: 20px; }
    .au-hero { padding: 36px 20px 30px; border-radius: 18px; }
    .au-hero-stats-wrap { margin: 0 -20px; padding: 0 20px; }
    .au-hero-stats { justify-content: flex-start; width: auto; }
    .au-hs { padding: 0 22px; }
    .au-hs-num { font-size: 1.4rem; }

    /* Cards: horizontal scroll on mobile */
    .au-cards-wrap {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        margin: 0 -16px;
        padding: 0 16px 4px;
    }
    .au-cards-wrap::-webkit-scrollbar { display: none; }
    .au-cards {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        width: max-content;
        gap: 12px;
    }
    .au-card {
        flex: 0 0 220px;
        scroll-snap-align: start;
    }

    /* Offer: 2-col grid */
    .au-offer { padding: 18px 16px 14px; border-radius: 16px; }
    .au-offer-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
    .au-offer-item { padding: 12px; gap: 10px; }

    /* Contact stacked */
    .au-contact-wrap { grid-template-columns: 1fr; gap: 16px; }
    .au-contact-title { font-size: 1.25rem; }
    .au-form-card { padding: 20px; }
}

@media (max-width: 480px) {
    .au-hero { padding: 28px 16px 24px; }
    .au-hero-stats-wrap { margin: 0 -16px; padding: 0 16px; }
    .au-hero-sub { font-size: 0.88rem; margin-bottom: 24px; }
    .au-hs { padding: 0 16px; }
    .au-hs-num { font-size: 1.25rem; }
    .au-hs-lbl { font-size: 0.6rem; }
    .au-card { flex: 0 0 195px; padding: 18px 16px; }
    .au-offer-grid { grid-template-columns: 1fr; gap: 8px; }
    .au-contact-btns { flex-direction: column; }
    .au-contact-btn { justify-content: center; width: 100%; }
    .au-info-box { padding: 12px 14px; }
    .au-form-card { padding: 16px; }
}

/* --- KONTAKTFORMULAR --- */
.kontakt-panel {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.kontakt-panel-head {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}
.kontakt-panel-icon {
    font-size: 1.8rem;
    line-height: 1;
    flex-shrink: 0;
}
.kontakt-panel-title {
    color: var(--gold-main);
    font-size: 1.1rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 4px;
}
.kontakt-panel-sub {
    color: rgba(255,255,255,0.45);
    font-size: 0.82rem;
    margin: 0;
}
.kontakt-quick-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.kontakt-quick-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 16px;
    border-radius: 50px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: #ccc;
    font-size: 0.84rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
    font-family: inherit;
}
.kontakt-quick-btn:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.2);
    color: #fff;
}
.kontakt-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,0.3);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.kontakt-divider::before, .kontakt-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(255,255,255,0.08);
}
.kontakt-form { display: flex; flex-direction: column; gap: 14px; }
.kf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 600px) { .kf-row { grid-template-columns: 1fr; } }
.kf-field { display: flex; flex-direction: column; gap: 5px; }
.kf-label {
    font-size: 0.78rem;
    font-weight: 700;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.kf-input {
    background: rgba(255,255,255,0.05);
    border: 1.5px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 11px 14px;
    color: #fff;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
    font-family: inherit;
    width: 100%;
    box-sizing: border-box;
}
.kf-input:focus {
    border-color: rgba(var(--gold-rgb, 255,200,50), 0.5);
    background: rgba(255,200,50,0.03);
    box-shadow: 0 0 0 3px rgba(255,200,50,0.08);
}
.kf-input::placeholder { color: rgba(255,255,255,0.28); }
.kf-textarea { resize: vertical; min-height: 100px; }
.kf-dsgvo {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.45);
    line-height: 1.5;
}
.kf-dsgvo input[type="checkbox"] {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 2px;
    accent-color: var(--gold-main);
    cursor: pointer;
}
.kf-submit {
    background: linear-gradient(135deg, var(--gold-main, #ffd700), #e6a800);
    color: #000;
    border: none;
    border-radius: 12px;
    padding: 13px 24px;
    font-size: 0.9rem;
    font-weight: 800;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: opacity 0.2s, transform 0.2s;
    font-family: inherit;
    width: 100%;
}
.kf-submit:hover { opacity: 0.88; transform: translateY(-1px); }
.kf-submit:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }
.kf-success {
    background: rgba(0,200,100,0.1);
    border: 1px solid rgba(0,200,100,0.3);
    border-radius: 12px;
    padding: 14px;
    color: #00e67a;
    font-size: 0.88rem;
    font-weight: 600;
    text-align: center;
}
.kontakt-coffee {
    border-top: 1px solid rgba(255,255,255,0.07);
    padding-top: 18px;
    text-align: center;
}
.kontakt-coffee p {
    color: rgba(255,255,255,0.4);
    font-size: 0.8rem;
    margin-bottom: 12px;
    font-style: italic;
}

/* FOOTER */
/* ── SCROLL REVEAL ─────────────────────────────────────── */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal-on-scroll.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ── WHY US SECTION ────────────────────────────────────── */
.why-us-section {
    margin: 80px 0 60px;
    padding: 0 4px;
}
.why-us-header {
    text-align: center;
    margin-bottom: 48px;
}
.why-us-eyebrow {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold-main, #f0c040);
    background: rgba(240,192,64,0.1);
    border: 1px solid rgba(240,192,64,0.25);
    border-radius: 50px;
    padding: 5px 14px;
    margin-bottom: 16px;
}
.why-us-title {
    font-size: clamp(1.7rem, 4vw, 2.4rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.2;
    margin: 0 0 14px;
    letter-spacing: -0.5px;
}
.why-us-accent {
    background: linear-gradient(135deg, #6366f1, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.why-us-desc {
    font-size: 1rem;
    color: rgba(255,255,255,0.45);
    max-width: 480px;
    margin: 0 auto;
    line-height: 1.6;
}
.why-us-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 40px;
}
@media (max-width: 900px) { .why-us-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .why-us-grid { grid-template-columns: 1fr; } }

.why-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 28px 22px;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
    cursor: default;
}
.why-card:hover {
    transform: translateY(-5px);
    border-color: rgba(99,102,241,0.35);
    box-shadow: 0 12px 32px rgba(99,102,241,0.12);
}
.why-card-icon {
    font-size: 2rem;
    margin-bottom: 14px;
    display: block;
}
.why-card-title {
    font-size: 1rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 8px;
}
.why-card-text {
    font-size: 0.83rem;
    color: rgba(255,255,255,0.45);
    line-height: 1.6;
    margin: 0;
}
.why-us-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 28px 32px;
    flex-wrap: wrap;
}
.why-stat {
    flex: 1;
    min-width: 120px;
    text-align: center;
    padding: 8px 16px;
}
.why-stat-num {
    font-size: 1.6rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 4px;
    background: linear-gradient(135deg, #6366f1, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.why-stat-lbl {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.35);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.why-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    flex-shrink: 0;
}
@media (max-width: 580px) {
    .why-us-stats { flex-direction: column; gap: 16px; }
    .why-stat-divider { display: none; }
}

/* ══════════════════════════════════════════
   SITE FOOTER — Eneba/Itemsatis inspired
   ══════════════════════════════════════════ */
.site-footer {
    border-top: 1px solid rgba(255,255,255,0.06);
    background: #05060f;
    margin-top: 80px;
    padding: 0;
}

.sf-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 56px 32px 40px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: 40px;
}

/* Brand column */
.sf-brand { display: flex; flex-direction: column; gap: 14px; }
.sf-logo {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.5px;
}
.sf-logo img { width: 28px; height: 28px; border-radius: 6px; object-fit: contain; }
.sf-logo strong { color: var(--gold-main); font-weight: 900; }
.sf-desc {
    font-size: 0.8rem;
    color: #555;
    line-height: 1.7;
    margin: 0;
    max-width: 240px;
}
.sf-socials { display: flex; gap: 10px; margin-top: 4px; flex-wrap: wrap; }
.sf-soc {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    color: #aaa;
    text-decoration: none;
    transition: all 0.2s;
}
.sf-soc svg { width: 17px; height: 17px; }
.sf-soc:hover { background: rgba(255,255,255,0.12); color: #fff; transform: translateY(-2px); }

/* Link columns */
.sf-col { display: flex; flex-direction: column; gap: 11px; }
.sf-col-title {
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: #fff;
    margin-bottom: 4px;
}
.sf-link {
    font-size: 0.82rem;
    color: #555;
    text-decoration: none;
    transition: color 0.18s;
    cursor: pointer;
}
.sf-link:hover { color: #bbb; }

/* Payment badges */
.sf-pay-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.sf-pay-badge {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    padding: 6px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 52px;
    height: 34px;
}
.sf-pay-badge img { max-height: 20px; max-width: 46px; object-fit: contain; }
.sf-pay-mc { padding: 4px 8px; }
.sf-pay-more {
    font-size: 0.72rem;
    font-weight: 700;
    color: #666;
    cursor: default;
}

/* Bottom bar */
.sf-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    max-width: 1280px;
    margin: 0 auto;
    padding: 18px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}
.sf-copy { font-size: 0.74rem; color: #3a3a4a; }
.sf-copy strong { color: #555; }
.sf-bottom-links { display: flex; gap: 20px; }
.sf-bottom-links a { font-size: 0.74rem; color: #3a3a4a; text-decoration: none; transition: color 0.18s; }
.sf-bottom-links a:hover { color: #888; }

@media (max-width: 1024px) {
    .sf-inner { grid-template-columns: 1fr 1fr 1fr; gap: 32px; }
    .sf-brand { grid-column: 1 / -1; flex-direction: row; flex-wrap: wrap; align-items: flex-start; gap: 24px; }
    .sf-desc { max-width: 100%; }
    .sf-pay-col { grid-column: 1 / -1; }
    .sf-pay-grid { flex-direction: row; }
}

@media (max-width: 600px) {
    .sf-inner {
        grid-template-columns: 1fr 1fr;
        padding: 32px 18px 24px;
        gap: 24px 20px;
    }
    .sf-brand {
        grid-column: 1 / -1;
        padding-bottom: 20px;
        border-bottom: 1px solid rgba(255,255,255,0.06);
    }
    .sf-logo { font-size: 1rem; }
    .sf-desc { font-size: 0.76rem; max-width: 100%; }
    .sf-col { gap: 10px; }
    .sf-col-title { font-size: 0.68rem; margin-bottom: 2px; }
    .sf-link { font-size: 0.78rem; }
    .sf-pay-col {
        grid-column: 1 / -1;
        padding-top: 4px;
        border-top: 1px solid rgba(255,255,255,0.06);
    }
    .sf-pay-grid { gap: 7px; }
    .sf-pay-badge { padding: 5px 8px; min-width: 46px; height: 30px; border-radius: 7px; }
    .sf-pay-badge img { max-height: 16px; max-width: 40px; }

    /* Mobile bottom bar — compact, centered */
    .sf-bottom {
        padding: 14px 18px 18px;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 10px;
    }
    .sf-copy {
        font-size: 0.68rem;
        color: #333;
        line-height: 1.5;
    }
    .sf-copy strong { color: #4a4a5a; }
    .sf-bottom-links {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px 18px;
    }
    .sf-bottom-links a { font-size: 0.7rem; color: #3a3a4a; }
}

/* --- NEU: EDIT PROFILE STYLES --- */
.profile-header {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255,255,255,0.03);
    padding: 20px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.05);
    margin-bottom: 20px;
}
/* Mobile adjustment for Profile Header */
@media (max-width: 768px) {
    .profile-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}

.profile-avatar-container {
    position: relative;
    width: 100px;
    height: 100px;
    flex-shrink: 0; /* Prevents shrinking on mobile */
}
.profile-avatar-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--gold-main);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
}
.rank-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    background: var(--gold-gradient);
    color: #000;
    font-weight: bold;
    font-size: 0.7rem;
    padding: 2px 8px;
    border-radius: 10px;
    border: 2px solid #000;
}
.edit-btn-small {
    background: transparent;
    border: 1px solid #555;
    color: #aaa;
    font-size: 0.7rem;
    padding: 2px 8px;
    border-radius: 4px;
    cursor: pointer;
    margin-left: 10px;
    margin-top: 5px;
    display: inline-block;
}
.edit-btn-small:hover { border-color: #fff; color: #fff; }

.m-time-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--gold-main);
    border-radius: 12px;
    padding: 10px 15px;
    min-width: 70px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.1);
}

.m-time-box span {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.m-time-box small {
    font-size: 0.6rem;
    color: var(--gold-main);
    margin-top: 5px;
    letter-spacing: 1px;
}
/* --- HAPPY HOUR HEADER --- */
header.happy-hour-active {
    background: linear-gradient(180deg, rgba(255, 0, 85, 0.8) 0%, rgba(20, 0, 5, 0.95) 100%) !important;
    border-bottom: 1px solid #ff0055 !important;
    box-shadow: 0 10px 50px rgba(255, 0, 85, 0.4), inset 0 0 20px rgba(255, 0, 85, 0.2) !important;
    animation: hhGlowPulse 2s infinite alternate;
}

@keyframes hhGlowPulse {
    0% { box-shadow: 0 10px 40px rgba(255, 0, 85, 0.3), inset 0 0 15px rgba(255, 0, 85, 0.1); }
    100% { box-shadow: 0 15px 60px rgba(255, 0, 85, 0.6), inset 0 0 30px rgba(255, 0, 85, 0.3); }
}

header.happy-hour-active .nav-link {
    color: #fff !important;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.9);
}

/* Happy Hour Badge im Warenkorb */
.hh-badge {
    background: linear-gradient(135deg, #ff0055, #ff4d4d);
    color: #fff;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 900;
    margin-left: 10px;
    border: 1px solid #ffb3c6;
    box-shadow: 0 0 15px rgba(255, 0, 85, 0.6);
    animation: hhBadgeBeat 1.5s infinite;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@keyframes hhBadgeBeat {
    0%, 100% { transform: scale(1); box-shadow: 0 0 10px rgba(255, 0, 85, 0.5); }
    50% { transform: scale(1.1); box-shadow: 0 0 25px rgba(255, 0, 85, 0.8); }
}

/* --- COMMUNITY VOTING STYLES --- */
.voting-option {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 10px;
    margin-bottom: 8px;
    border-radius: 10px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: 0.3s;
}

.voting-option:hover {
    border-color: var(--gold-main);
    transform: translateX(5px);
}

.vote-bar-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: rgba(255,255,255,0.1);
    width: 100%;
}

.vote-bar-fill {
    height: 100%;
    background: var(--gold-gradient);
    width: 0%;
    transition: width 1s ease;
}

.vote-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    font-weight: 600;
    color: #eee;
    margin-bottom: 5px;
    position: relative;
    z-index: 2;
}
/* --- Custom Toast Notification (Ersatz für Alert) --- */
#custom-toast {
    visibility: hidden;
    min-width: 280px;
    background-color: #1a1a1a; /* Dunkler Hintergrund */
    color: #fff;
    text-align: center;
    border-radius: 8px;
    padding: 14px 20px;
    position: fixed;
    z-index: 9999;
    left: 50%;
    bottom: 30px;
    transform: translateX(-50%);
    box-shadow: 0 5px 20px rgba(0,0,0,0.6);
    border: 1px solid rgba(255,255,255,0.1);
    opacity: 0;
    transition: opacity 0.3s, bottom 0.3s;
    font-size: 0.95rem;
    font-weight: 500;
}

#custom-toast.show {
    visibility: visible;
    opacity: 1;
    bottom: 50px;
}

#custom-toast.error {
    border-left: 4px solid #ff4444; /* Roter Rand bei Fehler */
}

#custom-toast.success {
    border-left: 4px solid #00c851; /* Grüner Rand bei Erfolg */
}
/* ============================================================
   PROOFS / VOUCHES — REDESIGN
   ============================================================ */

/* Hero */
/* ──────────────────────────────────────────────────────────
   PROOFS / VOUCHES  v2
   ────────────────────────────────────────────────────────── */
.vouch-hero-wrap {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 28px;
    align-items: center;
    background: linear-gradient(135deg, #0c160c 0%, #0f0f18 60%, #0a0a0f 100%);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 24px;
    padding: 40px;
    margin-bottom: 28px;
    position: relative;
    overflow: hidden;
}
.vouch-hero-wrap::before {
    content: '';
    position: absolute;
    top: -80px; left: -80px;
    width: 350px; height: 350px;
    background: radial-gradient(circle, rgba(0,182,122,0.07) 0%, transparent 65%);
    pointer-events: none;
}
.vouch-hero-badge {
    display: inline-block;
    padding: 5px 14px;
    background: rgba(0,182,122,0.12);
    border: 1px solid rgba(0,182,122,0.35);
    border-radius: 50px;
    color: #00b67a;
    font-size: 0.67rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}
.vouch-hero-title {
    font-size: 2.55rem;
    font-weight: 900;
    line-height: 1.1;
    margin: 0 0 14px 0;
    color: #fff;
    letter-spacing: -0.5px;
}
.vouch-title-accent {
    background: linear-gradient(90deg, #00e676 0%, #ffd700 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.vouch-hero-sub {
    color: rgba(255,255,255,0.48);
    font-size: 0.9rem;
    line-height: 1.65;
    margin: 0 0 26px 0;
}
.vouch-stat-boxes {
    display: flex;
    gap: 10px;
}
.vsb {
    flex: 1;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    padding: 16px 10px;
    text-align: center;
}
.vsb-icon {
    font-size: 1.4rem;
    display: block;
    margin-bottom: 6px;
    line-height: 1;
}
.vsb-val {
    font-size: 1.75rem;
    font-weight: 900;
    line-height: 1;
    color: #00e676;
    font-variant-numeric: tabular-nums;
    display: block;
}
.vsb:nth-child(1) .vsb-val,
.vsb:nth-child(3) .vsb-val { color: #ffd700; }
.vsb-lbl {
    font-size: 0.58rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: rgba(255,255,255,0.45);
    margin-top: 5px;
    display: block;
}
.vsb-sub {
    font-size: 0.6rem;
    color: rgba(255,255,255,0.28);
    margin-top: 2px;
    display: block;
}
.vouch-tp-card {
    background: rgba(0,0,0,0.45);
    border: 1px solid rgba(0,182,122,0.22);
    border-radius: 20px;
    padding: 30px 22px;
    text-align: center;
    backdrop-filter: blur(10px);
}
.vouch-tp-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 18px;
}
.vouch-tp-brand {
    font-size: 1.35rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.5px;
}
.vouch-tp-score-row {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
}
.vouch-tp-score {
    font-size: 3rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
}
.vouch-tp-score-label {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.55);
}
.vouch-tp-stars {
    font-size: 1.6rem;
    color: #00b67a;
    letter-spacing: 3px;
    margin-bottom: 9px;
    display: block;
}
.vouch-tp-count {
    font-size: 0.77rem;
    color: rgba(255,255,255,0.4);
    margin-bottom: 20px;
}
.vouch-tp-btn {
    display: block;
    background: #00b67a;
    color: #fff;
    text-decoration: none;
    padding: 11px 18px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.87rem;
    transition: all 0.25s ease;
}
.vouch-tp-btn:hover {
    background: #00d68f;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,182,122,0.4);
}
.vouch-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 22px;
    flex-wrap: wrap;
}
.vouch-filter-tabs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.vft {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 16px;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.04);
    color: rgba(255,255,255,0.55);
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: 'Poppins', sans-serif;
    white-space: nowrap;
}
.vft:hover { border-color: rgba(255,255,255,0.22); color: #fff; }
.vft.active {
    background: rgba(130,80,255,0.15);
    border-color: rgba(130,80,255,0.5);
    color: #fff;
}
.vft-count {
    background: rgba(255,255,255,0.1);
    border-radius: 50px;
    padding: 1px 7px;
    font-size: 0.7rem;
    font-weight: 700;
}
.vft.active .vft-count { background: rgba(130,80,255,0.4); }
.vouch-sort-row { display: flex; gap: 10px; }
.vouch-sort-select {
    appearance: none;
    -webkit-appearance: none;
    background-color: #12121c;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13' height='13' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.45)' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 13px;
    border: 1px solid rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.8);
    padding: 8px 36px 8px 14px;
    border-radius: 10px;
    font-size: 0.82rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    outline: none;
    transition: border-color 0.18s;
}
.vouch-sort-select:hover { border-color: rgba(130,80,255,0.4); }
.vouch-sort-select:focus { border-color: rgba(130,80,255,0.6); background-color: #16162a; }
.vouch-sort-select option {
    background: #12121c;
    color: #fff;
}
.vouch-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-bottom: 30px;
}
.vouch-card {
    background: rgba(14,14,22,0.97);
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.07);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
}
.vouch-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 45px rgba(0,0,0,0.55);
    border-color: rgba(255,255,255,0.13);
}
.vouch-card-head {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px 13px 11px;
}
.vouch-card-head-info { flex: 1; min-width: 0; }
.vouch-verified-badge {
    background: rgba(16,185,129,0.9);
    color: #fff;
    font-size: 0.58rem;
    font-weight: 800;
    padding: 4px 9px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    white-space: nowrap;
    flex-shrink: 0;
}
.vouch-img-wrap {
    position: relative;
    width: 100%;
    height: 185px;
    overflow: hidden;
    background: rgba(255,255,255,0.03);
}
.vouch-skeleton {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255,255,255,0.04) 25%, rgba(255,255,255,0.08) 50%, rgba(255,255,255,0.04) 75%);
    background-size: 200% 100%;
    animation: vouch-shimmer 1.4s infinite;
}
@keyframes vouch-shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}
.vouch-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.4s ease, transform 0.3s ease;
}
.vouch-img.vouch-loaded { opacity: 1; }
.vouch-card:hover .vouch-img { transform: scale(1.04); }
.vouch-card-footer {
    padding: 11px 13px 13px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 7px;
}
.vouch-card-footer-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 6px;
}
.vouch-info-avatar {
    width: 34px; height: 34px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.1);
    object-fit: cover;
    flex-shrink: 0;
}
.vouch-info-name {
    font-weight: 700;
    color: #fff;
    font-size: 0.87rem;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.vouch-info-date {
    font-size: 0.63rem;
    color: rgba(255,255,255,0.3);
    margin-top: 2px;
}
.vouch-info-text {
    font-size: 0.81rem;
    color: rgba(255,255,255,0.52);
    font-style: italic;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.vouch-info-stars { color: #ffd700; font-size: 0.78rem; letter-spacing: 1.5px; }
.vouch-cat-tag {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.11);
    color: rgba(255,255,255,0.55);
    font-size: 0.64rem;
    font-weight: 600;
    padding: 3px 9px;
    border-radius: 20px;
}
.vouch-cta-banner {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(14,14,22,0.97);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 22px 28px;
    margin-top: 6px;
}
.vcb-icon-wrap {
    font-size: 1.8rem;
    width: 50px; height: 50px;
    background: rgba(130,80,255,0.13);
    border: 1px solid rgba(130,80,255,0.2);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.vcb-text { flex: 1; min-width: 0; }
.vcb-title { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 3px; }
.vcb-sub { font-size: 0.78rem; color: rgba(255,255,255,0.4); }
.vcb-btn {
    background: linear-gradient(135deg, #ffd700, #ff8c00);
    color: #000;
    border: none;
    border-radius: 50px;
    padding: 13px 24px;
    font-weight: 800;
    font-size: 0.83rem;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.25s ease;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 6px 20px rgba(255,215,0,0.28);
}
.vcb-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(255,215,0,0.45); }
@media (max-width: 920px) {
    .vouch-hero-wrap { grid-template-columns: 1fr; padding: 28px 22px; }
    .vouch-hero-right { display: none; }
    .vouch-hero-title { font-size: 2rem; }
    .vouch-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
}
@media (max-width: 600px) {
    .vouch-hero-wrap { padding: 20px 16px; gap: 14px; }
    .vouch-hero-title { font-size: 1.5rem; }
    .vouch-hero-sub { font-size: 0.82rem; }
    .vouch-hero-badge { font-size: 0.6rem; padding: 4px 10px; margin-bottom: 10px; }
    .vsb-val { font-size: 1.3rem; }
    .vsb-sub { display: none; }
    .vsb { padding: 12px 6px; }
    .vouch-toolbar { gap: 8px; flex-direction: column; }
    .vouch-sort-row { width: 100%; }
    .vouch-sort-select { width: 100%; }
    .vouch-filter-tabs { overflow-x: auto; flex-wrap: nowrap; padding-bottom: 4px; -webkit-overflow-scrolling: touch; }
    .vouch-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .vouch-img-wrap { height: 140px; }
    .vouch-card-head { padding: 9px 9px 7px; gap: 7px; }
    .vouch-info-avatar { width: 28px; height: 28px; }
    .vouch-info-name { font-size: 0.78rem; }
    .vouch-verified-badge { font-size: 0.5rem; padding: 3px 6px; }
    .vouch-card-footer { padding: 8px 9px 10px; }
    .vouch-info-text { font-size: 0.75rem; }
    .vouch-cta-banner { flex-direction: column; text-align: center; padding: 18px 16px; gap: 12px; }
    .vcb-btn { width: 100%; text-align: center; }
    /* Show trustpilot card compactly on mobile */
    .vouch-hero-right { display: block !important; }
    .vouch-tp-card {
        display: flex; align-items: center; gap: 14px; padding: 10px 14px;
        border-radius: 14px; flex-wrap: wrap;
        backdrop-filter: none !important; -webkit-backdrop-filter: none !important;
    }
    .vouch-tp-header { margin: 0; }
    .vouch-tp-score-row { margin: 0; }
    .vouch-tp-score { font-size: 1.8rem; }
    .vouch-tp-stars { font-size: 1rem; letter-spacing: 1px; margin-bottom: 0; display: inline; }
    .vouch-tp-count { font-size: 0.65rem; margin-bottom: 0; }
    .vouch-tp-btn { padding: 7px 14px; font-size: 0.73rem; margin-top: 0; display: inline-flex; }
}
@media (max-width: 380px) {
    .vsb-lbl { font-size: 0.53rem; }
    .vouch-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════════
   BLOG SHARE BUTTON
   ══════════════════════════════════════════════════════ */
.blog-share-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(0,210,255,0.08);
    border: 1px solid rgba(0,210,255,0.3);
    color: var(--gold-main);
    padding: 10px 22px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 700;
    font-size: 0.85rem;
    font-family: inherit;
    transition: all 0.25s;
    white-space: nowrap;
}
.blog-share-btn:hover {
    background: rgba(0,210,255,0.16);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(0,210,255,0.2);
}

/* ══════════════════════════════════════════════════════
   LEGAL PAGES V2  –  AGB & Datenschutzerklärung
   ══════════════════════════════════════════════════════ */
.lv2-wrap { max-width: 860px; margin: 0 auto; }

.lv2-hero {
    text-align: center;
    padding: 32px 20px 26px;
    margin-bottom: 24px;
    border-bottom: 1px solid rgba(0,220,200,0.15);
    background: linear-gradient(180deg, rgba(0,220,200,0.04) 0%, transparent 100%);
    border-radius: 14px 14px 0 0;
}
.lv2-hero-icon { font-size: 2.8rem; display: block; margin-bottom: 10px; }
.lv2-hero h1 {
    margin: 0 0 6px;
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold-main);
}
.lv2-meta {
    font-size: 0.74rem;
    color: rgba(255,255,255,0.36);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 14px;
}
.lv2-badges { display: flex; gap: 6px; flex-wrap: wrap; justify-content: center; }
.lv2-badge {
    display: inline-flex; align-items: center; gap: 4px;
    background: rgba(0,220,200,0.08); border: 1px solid rgba(0,220,200,0.22);
    border-radius: 20px; padding: 3px 10px;
    font-size: 0.67rem; color: var(--gold-main);
    font-weight: 700; text-transform: uppercase; letter-spacing: 0.8px;
}

.lv2-toc {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 12px;
    padding: 16px 18px;
    margin-bottom: 22px;
}
.lv2-toc-label {
    font-size: 0.67rem; text-transform: uppercase; letter-spacing: 2px;
    color: rgba(255,255,255,0.3); font-weight: 700; margin-bottom: 12px;
}
.lv2-toc-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(185px, 1fr)); gap: 4px;
}
.lv2-toc-grid a {
    display: flex; align-items: center; gap: 8px;
    font-size: 0.78rem; color: rgba(255,255,255,0.52);
    text-decoration: none; padding: 6px 8px; border-radius: 7px;
    transition: all 0.15s;
}
.lv2-toc-grid a:hover { background: rgba(255,255,255,0.05); color: var(--gold-main); }
.lv2-toc-num {
    width: 20px; height: 20px; border-radius: 50%;
    background: rgba(0,220,200,0.12); color: var(--gold-main);
    font-size: 0.6rem; font-weight: 800;
    display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0;
}

.lv2-card {
    margin-bottom: 14px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 13px; overflow: hidden;
    transition: border-color 0.2s, box-shadow 0.2s;
    scroll-margin-top: 80px;
}
.lv2-card:hover { border-color: rgba(0,220,200,0.22); box-shadow: 0 4px 22px rgba(0,0,0,0.28); }
.lv2-card-head {
    display: flex; align-items: center; gap: 12px;
    padding: 13px 17px;
    background: rgba(255,255,255,0.025);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.lv2-card-icon {
    width: 36px; height: 36px; border-radius: 9px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.15rem; flex-shrink: 0;
    background: linear-gradient(135deg, rgba(0,220,200,0.14), rgba(0,180,160,0.05));
    border: 1px solid rgba(0,220,200,0.18);
}
.lv2-card-title { flex: 1; min-width: 0; }
.lv2-card-title h2 {
    margin: 0 0 1px; font-size: 0.93rem; font-weight: 700;
    color: #ebebeb; letter-spacing: 0.2px;
}
.lv2-card-sub {
    font-size: 0.65rem; color: rgba(255,255,255,0.28);
    text-transform: uppercase; letter-spacing: 0.9px;
}
.lv2-card-body {
    padding: 15px 17px; font-size: 0.83rem;
    color: #adadad; line-height: 1.76;
}
.lv2-card-body p { margin: 0 0 10px; }
.lv2-card-body p:last-child { margin-bottom: 0; }
.lv2-card-body strong, .lv2-card-body b { color: #d8d8d8; }
.lv2-card-body a { color: var(--gold-main); text-decoration: underline; }
.lv2-card-body a:hover { color: #fff; }
.lv2-card-body code {
    background: rgba(255,255,255,0.07); border-radius: 4px;
    padding: 1px 5px; font-size: 0.8rem; color: #ccc;
}

.lv2-hl {
    background: rgba(0,220,200,0.06);
    border-left: 3px solid var(--gold-main);
    border-radius: 0 8px 8px 0;
    padding: 11px 14px; margin: 10px 0; font-size: 0.82rem;
    color: #c5c5c5; line-height: 1.65;
}
.lv2-warn {
    background: rgba(220,50,40,0.08); border-left: 3px solid #d63030;
    border-radius: 0 8px 8px 0;
    padding: 11px 14px; margin: 10px 0; font-size: 0.82rem;
    color: #ffb8b3; line-height: 1.65;
}
.lv2-warn strong, .lv2-warn b { color: #ff7b70; }
.lv2-info {
    background: rgba(30,155,255,0.07); border-left: 3px solid #1e9bff;
    border-radius: 0 8px 8px 0;
    padding: 11px 14px; margin: 10px 0; font-size: 0.82rem;
    color: #9fcfff; line-height: 1.65;
}
.lv2-info strong, .lv2-info b { color: #6bb8ff; }

.lv2-list { list-style: none; padding: 0; margin: 8px 0; }
.lv2-list li {
    display: flex; gap: 10px; padding: 9px 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    font-size: 0.83rem; color: #b2b2b2; line-height: 1.55;
    align-items: flex-start;
}
.lv2-list li:last-child { border-bottom: none; padding-bottom: 0; }
.lv2-list .lk { color: #e5e5e5; font-weight: 600; min-width: 150px; flex-shrink: 0; font-size: 0.82rem; }

.lv2-table { width: 100%; border-collapse: collapse; font-size: 0.78rem; margin: 10px 0; }
.lv2-table th {
    text-align: left; padding: 8px 11px;
    background: rgba(0,220,200,0.08);
    color: var(--gold-main); font-size: 0.69rem;
    text-transform: uppercase; letter-spacing: 1px; font-weight: 700;
    border-bottom: 1px solid rgba(0,220,200,0.18);
}
.lv2-table td {
    padding: 9px 11px; border-bottom: 1px solid rgba(255,255,255,0.04);
    color: #adadad; vertical-align: top;
}
.lv2-table tr:last-child td { border-bottom: none; }
.lv2-table tr:hover td { background: rgba(255,255,255,0.02); }

.lv2-formbox {
    background: rgba(255,255,255,0.025); border: 1px dashed rgba(255,255,255,0.1);
    border-radius: 10px; padding: 15px;
    font-size: 0.8rem; color: #959595; line-height: 1.8; font-style: italic;
}

.lv2-cta { display: flex; justify-content: center; margin-top: 26px; gap: 12px; flex-wrap: wrap; }

@media (max-width: 768px) {
    .lv2-hero h1 { font-size: 1.3rem; letter-spacing: 2px; }
    .lv2-toc-grid { grid-template-columns: 1fr 1fr; }
    .lv2-card-head { padding: 11px 13px; gap: 10px; }
    .lv2-card-body { padding: 13px 13px; }
    .lv2-card-icon { width: 30px; height: 30px; font-size: 1rem; }
    .lv2-card-title h2 { font-size: 0.87rem; }
    .lv2-list .lk { min-width: 100px; font-size: 0.78rem; }
    .lv2-table { font-size: 0.73rem; }
    .lv2-table th, .lv2-table td { padding: 7px 8px; }
    .lv2-list li { flex-direction: column; gap: 3px; }
    .lv2-list .lk { min-width: unset; }
}

