/* =========================================
   RESET & GLOBAL
========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body { height: 100%; }

:root{
    --text: #e8f3ff;
    --muted: rgba(230,240,255,0.78);
    --panel: rgba(255,255,255,0.08);
    --panel-strong: rgba(12, 18, 24, 0.55);
    --line: rgba(0,160,255,0.18);
    --accent: #00caff;
    --accent-2: #0077ff;

    --shadow-soft: 0 0 20px rgba(0,160,255,0.25);
    --shadow-hover: 0 0 35px rgba(0,160,255,0.55);

    --radius-lg: 18px;
    --radius-md: 14px;
}

body {
    font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    color: var(--text);
    overflow-x: hidden;

    /* NUR das Bild als Basis */
    background: url("/assets/images/background.jpg") center center / cover no-repeat fixed;
}

/* EIN globaler Overlay-Layer (immer gleich) */
body::after{
    content:"";
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;

    /* konstantes Tuning: oben etwas heller, unten dunkler + weiche Neon-Glows */
    background:
        radial-gradient(1100px 520px at 50% 10%, rgba(0,202,255,0.16), transparent 60%),
        radial-gradient(900px 520px at 15% 70%, rgba(0,119,255,0.10), transparent 60%),
        radial-gradient(900px 520px at 85% 75%, rgba(0,119,255,0.08), transparent 60%),
        linear-gradient(180deg, rgba(0,0,0,0.45), rgba(0,0,0,0.82));
}

/* optional: dezentes Grid - aber nicht mehr als eigener "Helligkeitslayer" */
body::before{
    content:"";
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;

    background:
        linear-gradient(to right, rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 120px 120px;
    opacity: 0.10;
}

a { color: inherit; }
.muted { color: var(--muted); }

.page { padding-top: 96px; }

.container{
    max-width: 1200px;
    margin: 0 auto;
}

/* =========================================
   NAVBAR
========================================= */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 18px 52px;
    display: flex;
    justify-content: space-between;
    align-items: center;

    background: rgba(10, 14, 20, 0.55);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0,160,255,0.22);
    box-shadow: 0 0 22px rgba(0,160,255,0.28);
    transition: 0.35s ease;
    z-index: 999;
}

.navbar.scrolled {
    background: rgba(10,14,20,0.82);
    box-shadow: 0 0 35px rgba(0,160,255,0.45);
}

.logo {
    font-size: 26px;
    font-weight: 900;
    color: var(--accent);
    text-shadow: 0 0 18px rgba(0,160,255,1);
    letter-spacing: 0.4px;
}

.nav-links {
    display: flex;
    gap: 26px;
    list-style: none;
}

.nav-links a {
    color: rgba(232,243,255,0.92);
    font-weight: 700;
    text-decoration: none;
    transition: 0.25s ease;
    position: relative;
    padding: 6px 0;
}

.nav-links a:hover {
    color: var(--accent);
    text-shadow: 0 0 12px rgba(0,160,255,1);
}

/* NAV ACTIVE STATE (wie Screenshot) */
.nav-links a.active{
    color: var(--accent);
    text-shadow: 0 0 12px rgba(0,160,255,0.9);
}
.nav-links a.active::after{
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -10px;
    height: 2px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--accent), var(--accent-2));
    box-shadow: 0 0 10px rgba(0,160,255,0.55);
    opacity: 0.95;
}

/* =========================================
   HERO (modernisiert)
========================================= */
.hero{
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 7% 80px;
    position: relative;
    overflow: hidden;
}

.hero-modern::before{
    content:"";
    position:absolute;
    inset:0;
    background:
        radial-gradient(900px 520px at 50% 35%, rgba(0,202,255,0.16), transparent 60%),
        radial-gradient(700px 420px at 10% 70%, rgba(0,119,255,0.12), transparent 55%),
        radial-gradient(700px 420px at 90% 75%, rgba(0,119,255,0.10), transparent 55%),
        linear-gradient(180deg, rgba(0,0,0,0.42), rgba(0,0,0,0.66));
    z-index: 0;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background: rgba(0,0,0,0.28);
    z-index: 0;
}

.hero-inner{
    position: relative;
    z-index: 2;
    max-width: 980px;
    text-align: center;
}

.hero-badges{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 16px;
}

.hero-badge{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.10);
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    color: rgba(232,243,255,0.86);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.hero-badge i{
    color: rgba(0,202,255,0.92);
}

.hero-title{
    font-size: 64px;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.05;
}

.hero-title-modern span{
    background: linear-gradient(90deg, var(--accent), var(--accent-2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-desc{
    font-size: 18px;
    margin-top: 16px;
    color: rgba(220,235,255,0.88);
    line-height: 1.6;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions{
    margin-top: 22px;
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-primary{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 0;
    padding: 14px 22px;
    border-radius: 12px;
    background: #009dff;
    color: #000;
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 0 25px rgba(0,150,255,0.62);
    transition: 0.25s ease;
}

.btn-primary:hover{
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 0 35px rgba(0,150,255,0.95);
}

.btn-primary-compact{
    padding: 12px 18px;
    border-radius: 12px;
    font-weight: 900;
}

.btn-secondary{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 22px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 900;
    color: rgba(232,243,255,0.90);
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.10);
    backdrop-filter: blur(10px);
    transition: 0.25s ease;
}

.btn-secondary:hover{
    transform: translateY(-2px);
    border-color: rgba(0,160,255,0.22);
    box-shadow: 0 0 16px rgba(0,160,255,0.18);
    color: var(--accent);
}

.btn-secondary-compact{
    padding: 12px 18px;
}

.hero-trust{
    margin-top: 18px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    color: rgba(230,240,255,0.75);
    font-size: 13px;
}

.hero-trust i{
    color: rgba(0,202,255,0.9);
    margin-right: 6px;
}

.scroll-indicator{
    margin-top: 26px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: rgba(230,240,255,0.70);
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 12px;
}

.scroll-dot{
    width: 22px;
    height: 34px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.16);
    position: relative;
    background: rgba(255,255,255,0.04);
}
.scroll-dot::after{
    content:"";
    position:absolute;
    left: 50%;
    top: 8px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    transform: translateX(-50%);
    background: rgba(0,202,255,0.9);
    box-shadow: 0 0 12px rgba(0,202,255,0.6);
    animation: scrollDot 1.2s infinite ease-in-out;
}
@keyframes scrollDot{
    0%{ transform: translateX(-50%) translateY(0); opacity: 0.9; }
    70%{ transform: translateX(-50%) translateY(10px); opacity: 0.35; }
    100%{ transform: translateX(-50%) translateY(0); opacity: 0.9; }
}

/* =========================================
   SECTIONS (modernisiert)
========================================= */
.section{
    padding: 96px 7%;
    text-align: center;
    position: relative;
}

/* gleichmäßiges Overlay pro Section (gegen Schwarz/Transparent-Wechsel) */
.section::before{
    content:"";
    position:absolute;
    inset: 0;
    pointer-events:none;
    z-index: 0;
    background: rgba(0,0,0,0.22);
}

.section > *{
    position: relative;
    z-index: 1;
}

.section-modern{
    position: relative;
}

.section-head{
    max-width: 880px;
    margin: 0 auto 22px;
}

.section-kicker{
    display: inline-block;
    font-family: "Orbitron", "Inter", sans-serif;
    letter-spacing: 0.18em;
    font-size: 12px;
    color: rgba(0,202,255,0.85);
    text-transform: uppercase;
    margin-bottom: 10px;
}

.section-title{
    font-size: 48px;
    font-weight: 900;
    text-transform: uppercase;
    background: linear-gradient(90deg, var(--accent), var(--accent-2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 12px;
    opacity: 0;
    transform: translateY(30px);
    transition: 0.9s ease;
}

.section-title.show{
    opacity: 1;
    transform: translateY(0);
}

.section-title-static{
    opacity: 1 !important;
    transform: none !important;
}

.section-subtitle{
    font-size: 18px;
    color: rgba(230,240,255,0.82);
    margin-bottom: 0;
    opacity: 0;
    transform: translateY(20px);
    transition: 0.9s ease;
    line-height: 1.7;
}

.section-subtitle.show{
    opacity: 1;
    transform: translateY(0);
}

/* =========================================
   GLASS PANELS (Index)
========================================= */
.glass-panel{
    text-align: left;
    background: rgba(10, 14, 20, 0.48);
    border: 1px solid rgba(0,160,255,0.18);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(14px);
    box-shadow: 0 0 26px rgba(0,160,255,0.14);
    padding: 22px;
    transition: 0.25s ease;
}

.glass-panel:hover{
    border-color: rgba(0,160,255,0.26);
    box-shadow: 0 0 32px rgba(0,160,255,0.18);
    transform: translateY(-2px);
}

.glass-panel-accent{
    border-color: rgba(0,202,255,0.22);
    background: rgba(10, 14, 20, 0.55);
}

.panel-title{
    font-size: 16px;
    font-weight: 900;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.panel-title i{
    color: rgba(0,202,255,0.92);
}

.panel-text{
    color: rgba(232,243,255,0.86);
    font-size: 14px;
    line-height: 1.7;
}

.panel-actions{
    margin-top: 14px;
}

.about-grid{
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 16px;
    margin-top: 18px;
}

.about-list{
    margin-top: 14px;
    display: grid;
    gap: 10px;
}

.about-item{
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 12px 12px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.04);
}

.about-item i{
    color: rgba(0,202,255,0.92);
    margin-top: 2px;
    width: 18px;
}

.about-item strong{
    display: block;
    font-weight: 900;
    color: rgba(255,255,255,0.95);
    margin-bottom: 2px;
}

.about-item span{
    display: block;
    color: rgba(230,240,255,0.76);
    font-size: 13px;
    line-height: 1.5;
}

/* Steps */
.steps{
    margin-top: 14px;
    display: grid;
    gap: 10px;
}
.step{
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 12px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.04);
}
.step-num{
    font-family: "Orbitron", "Inter", sans-serif;
    letter-spacing: 0.12em;
    font-weight: 900;
    font-size: 12px;
    color: rgba(0,202,255,0.92);
    padding: 7px 10px;
    border-radius: 12px;
    border: 1px solid rgba(0,202,255,0.20);
    background: rgba(0,202,255,0.10);
}
.step-body strong{
    display:block;
    font-weight: 900;
    color: rgba(255,255,255,0.95);
}
.step-body span{
    display:block;
    color: rgba(230,240,255,0.76);
    font-size: 13px;
    margin-top: 2px;
}

/* =========================================
   FEATURES (modernisiert)
========================================= */
.feature-grid{
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.feature-grid-modern{
    margin-top: 18px;
}

.feature-card{
    width: 300px;
    padding: 22px;
    border-radius: var(--radius-lg);
    background: rgba(10,14,20,0.45);
    backdrop-filter: blur(12px);
    box-shadow: 0 0 20px rgba(0,160,255,0.18);
    transition: 0.25s ease;
    border: 1px solid rgba(255,255,255,0.08);
    text-align: left;
}

.feature-card:hover{
    transform: translateY(-6px);
    box-shadow: 0 0 35px rgba(0,160,255,0.28);
    border-color: rgba(0,160,255,0.22);
}

.feature-icon{
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: rgba(0,160,255,0.14);
    border: 1px solid rgba(0,160,255,0.20);
    margin-bottom: 12px;
}

.feature-icon i{
    color: rgba(0,202,255,0.92);
}

.feature-card h3{
    font-size: 16px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 8px;
}

.feature-card p{
    color: rgba(230,240,255,0.78);
    font-size: 14px;
    line-height: 1.65;
}

/* =========================================
   STATS (modernisiert)
========================================= */
.stats-grid{
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.stats-grid-modern{
    margin-top: 18px;
}

.stat-box{
    width: 280px;
    padding: 22px;
    border-radius: var(--radius-lg);
    background: rgba(10,14,20,0.45);
    box-shadow: 0 0 20px rgba(0,160,255,0.18);
    transition: 0.25s ease;
    border: 1px solid rgba(255,255,255,0.08);
    text-align: left;
}

.stat-box:hover{
    transform: translateY(-4px);
    box-shadow: 0 0 35px rgba(0,160,255,0.28);
    border-color: rgba(0,160,255,0.22);
}

.stat-top{
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: rgba(230,240,255,0.80);
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 12px;
}

.stat-top i{
    color: rgba(0,202,255,0.92);
}

.stat-number{
    font-size: 46px;
    font-weight: 900;
    color: var(--accent);
    line-height: 1;
}

.stat-foot{
    margin-top: 10px;
    color: rgba(230,240,255,0.72);
    font-size: 13px;
}

/* =========================================
   JOIN (modernisiert)
========================================= */
.join-card{
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 16px;
    margin-top: 10px;
    text-align: left;

    background: rgba(10, 14, 20, 0.50);
    border: 1px solid rgba(0,160,255,0.20);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(14px);
    box-shadow: 0 0 28px rgba(0,160,255,0.16);
    padding: 22px;
}

.join-title{
    font-size: 28px;
    font-weight: 900;
    color: #fff;
    margin: 6px 0 10px;
}

.join-sub{
    color: rgba(230,240,255,0.82);
    line-height: 1.7;
    font-size: 14px;
    max-width: 720px;
}

.join-actions{
    margin-top: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.join-note{
    margin-top: 14px;
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: rgba(230,240,255,0.72);
    font-size: 12.5px;
    line-height: 1.55;
}
.join-note i{
    color: rgba(0,202,255,0.9);
    margin-top: 2px;
}

.join-right{
    display: grid;
    gap: 12px;
}

.join-mini{
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.04);
    border-radius: var(--radius-lg);
    padding: 16px;
}

.join-mini-glow{
    border-color: rgba(0,202,255,0.18);
    box-shadow: 0 0 18px rgba(0,160,255,0.14);
}

.join-mini-title{
    display: inline-flex;
    gap: 10px;
    align-items: center;
    font-weight: 900;
    color: rgba(255,255,255,0.95);
    margin-bottom: 10px;
}

.join-mini-title i{
    color: rgba(0,202,255,0.92);
}

.join-mini-list{
    list-style: none;
    display: grid;
    gap: 8px;
    color: rgba(230,240,255,0.80);
    font-size: 13.5px;
}
.join-mini-list i{
    color: rgba(0,202,255,0.92);
    margin-right: 8px;
}

.join-mini-text{
    color: rgba(230,240,255,0.78);
    font-size: 13.5px;
    line-height: 1.65;
}

/* =========================================
   IMPRESSUM / LEGAL / TEAM
========================================= */
.page-impressum .section{ padding-top: 120px; }

.impressum-wrapper{ max-width: 980px; margin: 0 auto; }

.impressum-header{ margin-bottom: 22px; }

.impressum-kicker{
    display: inline-block;
    font-family: "Orbitron", "Inter", sans-serif;
    letter-spacing: 0.18em;
    font-size: 12px;
    color: rgba(0,202,255,0.85);
    text-transform: uppercase;
    margin-bottom: 10px;
}

.impressum-subtitle{
    max-width: 720px;
    margin: 8px auto 0;
    color: rgba(230,240,255,0.82);
    font-size: 16px;
    line-height: 1.65;
}

.impressum-card{
    text-align: left;
    background: var(--panel-strong);
    border: 1px solid rgba(0,160,255,0.22);
    border-radius: 18px;
    backdrop-filter: blur(14px);
    box-shadow: 0 0 26px rgba(0,160,255,0.18);
    padding: 26px;
}

.impressum-bottom-note{
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid rgba(255,255,255,0.10);
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: rgba(230,240,255,0.72);
    font-size: 12.5px;
    line-height: 1.55;
}
.impressum-bottom-note i{ color: rgba(0,202,255,0.9); margin-top: 2px; }

.impressum-actions{ margin-top: 18px; text-align: center; }

/* LEGAL helpers */
.page-legal .section{ padding-top: 120px; }

.legal-meta{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
    margin-bottom: 16px;
}
.legal-meta-item{
    background: rgba(0,0,0,0.18);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 12px 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}
.legal-pill{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(230,240,255,0.70);
}
.legal-pill i{ color: rgba(0,202,255,0.9); }
.legal-meta-value{ font-weight: 700; color: rgba(232,243,255,0.92); font-size: 13px; }

.legal-sections{ display: grid; gap: 14px; }
.legal-section{
    background: rgba(0,0,0,0.18);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    padding: 18px 18px 16px;
    transition: 0.25s ease;
}
.legal-section:hover{
    border-color: rgba(0,160,255,0.22);
    box-shadow: 0 0 18px rgba(0,160,255,0.16);
    transform: translateY(-2px);
}
.legal-section h2{ font-size: 16px; font-weight: 900; color: #ffffff; margin-bottom: 10px; }
.legal-section p{ color: rgba(232,243,255,0.9); font-size: 14px; line-height: 1.7; }
.legal-section ul{ margin-left: 18px; color: rgba(232,243,255,0.9); font-size: 14px; line-height: 1.7; }
.legal-section li{ margin: 6px 0; }

/* Datenschutz TOC */
.legal-toc{
    margin: 12px 0 16px;
    background: rgba(0,0,0,0.18);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    padding: 14px;
}
.legal-toc-head{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}
.legal-toc-links{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 12px;
}
.legal-toc-links a{
    text-decoration: none;
    color: rgba(232,243,255,0.88);
    font-size: 13px;
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.06);
    background: rgba(255,255,255,0.04);
    transition: 0.25s ease;
}
.legal-toc-links a:hover{
    color: var(--accent);
    border-color: rgba(0,160,255,0.22);
    box-shadow: 0 0 14px rgba(0,160,255,0.16);
    transform: translateY(-1px);
}

/* TEAM */
.page-team .section{ padding-top: 120px; }

.team-controls{ display: grid; grid-template-columns: 1fr; gap: 14px; margin-bottom: 16px; }
.team-search{
    display: flex; align-items: center; gap: 10px;
    background: rgba(0,0,0,0.18);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    padding: 12px 14px;
}
.team-search i{ color: rgba(0,202,255,0.9); }
.team-search input{
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    color: rgba(232,243,255,0.92);
    font-size: 14px;
}
.team-search input::placeholder{ color: rgba(230,240,255,0.55); }

.team-filters{ display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.team-filter{
    cursor: pointer;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.04);
    color: rgba(232,243,255,0.88);
    border-radius: 12px;
    padding: 10px 12px;
    font-size: 13px;
    font-weight: 700;
    transition: 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.team-filter:hover{
    border-color: rgba(0,160,255,0.22);
    box-shadow: 0 0 14px rgba(0,160,255,0.16);
    transform: translateY(-1px);
    color: var(--accent);
}
.team-filter.active{
    border-color: rgba(0,160,255,0.30);
    background: rgba(0,160,255,0.10);
    color: rgba(232,243,255,0.95);
    box-shadow: 0 0 16px rgba(0,160,255,0.18);
}

.team-grid{
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 14px;
    margin-top: 10px;
}
.team-card{
    grid-column: span 6;
    background: rgba(0,0,0,0.18);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 16px;
    transition: 0.25s ease;
}
.team-card:hover{
    border-color: rgba(0,160,255,0.22);
    box-shadow: 0 0 18px rgba(0,160,255,0.16);
    transform: translateY(-2px);
}
.team-card-top{ display: flex; gap: 14px; align-items: flex-start; }
.team-avatar{
    width: 52px; height: 52px; border-radius: 14px;
    display: grid; place-items: center;
    background: rgba(0,160,255,0.14);
    border: 1px solid rgba(0,160,255,0.20);
    flex: 0 0 auto;
}
.team-avatar i{ color: rgba(0,202,255,0.95); font-size: 20px; }
.team-meta{ min-width: 0; }
.team-role{
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 12px; font-weight: 900;
    letter-spacing: 0.08em; text-transform: uppercase;
    padding: 7px 10px; border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.04);
}
.team-name{ margin-top: 10px; font-size: 18px; font-weight: 900; color: #ffffff; }
.team-desc{ margin-top: 6px; color: rgba(230,240,255,0.75); font-size: 13.5px; line-height: 1.55; }
.team-card-bottom{ margin-top: 14px; display: flex; flex-wrap: wrap; gap: 10px; }
.team-pill{
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 12px; padding: 8px 10px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.06);
    background: rgba(255,255,255,0.03);
    color: rgba(232,243,255,0.85);
}
.role-owner{ color: rgba(255, 220, 130, 0.95); border-color: rgba(255, 220, 130, 0.20); background: rgba(255, 220, 130, 0.08); }
.role-admin{ color: rgba(0, 201, 255, 0.95); border-color: rgba(0, 201, 255,0.20); background: rgba(0, 201, 255,0.08); }
.role-mod{ color: rgba(255,120,120,0.92); border-color: rgba(255,120,120,0.18); background: rgba(255,120,120,0.07); }
.role-support{ color: rgba(140,255,190,0.92); border-color: rgba(140,255,190,0.18); background: rgba(140,255,190,0.07); }

.team-empty{
    margin-top: 16px; padding: 16px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(0,0,0,0.18);
    display: flex; gap: 10px; align-items: center; justify-content: center;
    color: rgba(230,240,255,0.78);
}
.team-empty i{ color: rgba(255,120,120,0.92); }

/* =========================================
   FOOTER — (dein Footer, aber korrekt & clean)
========================================= */
footer.footer-clean {
    width: 100%;
    padding: 60px 0 20px;
    background: rgba(0,0,0,0.45);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;

    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
}

.footer-col{ min-width: 0; }

/* BRAND */
.footer-col.brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center;
}

.footer-logo {
    width: 52px;
    height: 52px;
    border-radius: 10px;
    filter: drop-shadow(0 0 6px rgba(0,170,255,0.6));
}

.brand-text {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: .4px;
    opacity: 0.95;
}

/* LEGAL */
.footer-col.legal { text-align: center; }

.footer-col.legal h4 {
    font-size: 14px;
    color: #1da1ff;
    margin-bottom: 10px;
    letter-spacing: 0.12em;
}

.footer-col.legal a {
    display: block;
    margin: 5px 0;
    color: rgba(232,243,255,0.88);
    text-decoration: none;
    transition: 0.25s ease;
}

.footer-col.legal a:hover { color: var(--accent); }

/* SOCIALS */
.footer-socials{
    padding-top: 16px;        /* Überschrift + Icons als Block minimal runter */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.footer-socials .social-icons{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    margin-top: 12px;         /* NUR Icons weiter runter */
}

/* Neon reduziert (sehr dezent) */
.social-icons a {
    font-size: 24px;
    transition: 0.25s ease;
    filter: none !important;
    opacity: 0.90;
}

.social-icons a.tiktok  { color: #ff2df5; text-shadow: 0 0 2px rgba(255,45,245,0.45); }
.social-icons a.youtube { color: #ff3b3b; text-shadow: 0 0 2px rgba(255,59,59,0.45); }
.social-icons a.discord { color: #00c9ff; text-shadow: 0 0 2px rgba(0,201,255,0.45); }

.social-icons a:hover{
    transform: scale(1.10);
    opacity: 1;
    filter: none !important;  /* wichtig: kein Drop-Shadow Hover */
}

.social-icons a.tiktok:hover  { text-shadow: 0 0 6px rgba(255,45,245,0.60); }
.social-icons a.youtube:hover { text-shadow: 0 0 6px rgba(255,59,59,0.60); }
.social-icons a.discord:hover { text-shadow: 0 0 6px rgba(0,201,255,0.60); }

.footer-bottom-line {
    width: 100%;
    height: 1px;
    background: rgba(255,255,255,0.12);
    margin: 25px auto 15px;
}

.footer-bottom {
    text-align: center;
    opacity: 0.75;
    font-size: 14px;
}

/* =========================================
   ANIMATIONS
========================================= */
.fade-in,
.fade-in-up {
    opacity: 0;
    transform: translateY(25px);
    transition: 0.9s ease;
}

.fade-in.show,
.fade-in-up.show {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================
   RESPONSIVE
========================================= */
@media (max-width: 1100px){
    .about-grid{ grid-template-columns: 1fr; }
    .join-card{ grid-template-columns: 1fr; }
}

@media (max-width: 980px){
    .navbar{ padding: 16px 22px; }
    .nav-links{ gap: 16px; flex-wrap: wrap; justify-content: flex-end; }

    .section{ padding: 80px 7%; }
    .hero-title{ font-size: 46px; }

    .legal-meta{ grid-template-columns: 1fr; }
    .legal-toc-links{ grid-template-columns: 1fr; }

    .team-card{ grid-column: span 12; }

    .footer-container{
        grid-template-columns: 1fr;
        gap: 22px;
        text-align: center;
    }
    .footer-col.brand{ align-items: center; text-align: center; }
    .footer-col.legal{ text-align: center; }
    .footer-socials{ text-align: center; }
    .footer-socials .social-icons{ justify-content: center; }
}

@media (max-width: 520px){
    .logo{ font-size: 22px; }
    .hero-title{ font-size: 38px; }
    .section-title{ font-size: 36px; }
}

/* =========================================
   REGELWERK PAGE
========================================= */
.page-rules .section{
  padding-top: 120px;
}

.rules-header{
  margin-bottom: 18px;
}

.rules-quick{
  margin-top: 14px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.rules-topgrid{
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.rules-card{
  text-align: left;
}

.rules-badges{
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.rules-badge{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  color: rgba(232,243,255,0.86);
}

.rules-badge i{
  color: rgba(0,202,255,0.9);
}

.rules-meta{
  margin-top: 14px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.rules-meta-item{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
}

.rules-meta-label{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(230,240,255,0.75);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.rules-meta-label i{
  color: rgba(0,202,255,0.9);
}

.rules-meta-value{
  font-size: 13px;
  font-weight: 900;
  color: rgba(232,243,255,0.92);
}

/* TOC */
.rules-toc{
  margin-top: 14px;
  padding: 18px;
  text-align: left;
}

.rules-h2{
  font-size: 16px;
  font-weight: 900;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
}

.rules-h2 i{
  color: rgba(0,202,255,0.9);
}

.rules-toc-head{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.rules-toc-toggle{
  cursor: pointer;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.04);
  color: rgba(232,243,255,0.85);
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  transition: 0.25s ease;
}

.rules-toc-toggle:hover{
  border-color: rgba(0,160,255,0.22);
  box-shadow: 0 0 14px rgba(0,160,255,0.16);
  color: var(--accent);
}

.rules-toc-links{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 12px;
}

.rules-toc-links.hidden{
  display: none;
}

.rules-toc-links a{
  text-decoration: none;
  color: rgba(232,243,255,0.88);
  font-size: 13px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.04);
  transition: 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.rules-toc-links a i{
  color: rgba(0,202,255,0.85);
}

.rules-toc-links a:hover{
  color: var(--accent);
  border-color: rgba(0,160,255,0.22);
  box-shadow: 0 0 14px rgba(0,160,255,0.16);
  transform: translateY(-1px);
}

/* Accordion Sections */
.rules-sections{
  margin-top: 14px;
  display: grid;
  gap: 12px;
  text-align: left;
}

.rules-section{
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(0,0,0,0.18);
  overflow: hidden;
  transition: 0.25s ease;
}

.rules-section:hover{
  border-color: rgba(0,160,255,0.22);
  box-shadow: 0 0 18px rgba(0,160,255,0.14);
}

.rules-section-accent{
  border-color: rgba(0,202,255,0.18);
  background: rgba(10, 14, 20, 0.35);
}

.rules-acc{
  width: 100%;
  cursor: pointer;
  border: none;
  background: transparent;
  color: rgba(232,243,255,0.92);
  padding: 16px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.rules-acc i{
  color: rgba(232,243,255,0.65);
  transition: 0.25s ease;
}

.rules-acc[aria-expanded="true"] i{
  transform: rotate(180deg);
  color: rgba(0,202,255,0.9);
}

.rules-acc-left{
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.rules-num{
  font-family: "Orbitron", "Inter", sans-serif;
  letter-spacing: 0.14em;
  font-weight: 900;
  font-size: 12px;
  color: rgba(0,202,255,0.92);
  padding: 8px 10px;
  border-radius: 12px;
  border: 1px solid rgba(0,202,255,0.18);
  background: rgba(0,202,255,0.08);
}

.rules-title{
  font-size: 15px;
  font-weight: 900;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.rules-body{
  display: none;
  padding: 0 16px 16px;
}

.rules-body.open{
  display: block;
}

.rules-list{
  margin-left: 18px;
  color: rgba(232,243,255,0.90);
  font-size: 14px;
  line-height: 1.7;
}

.rules-list li{
  margin: 8px 0;
}

.rules-list strong{
  color: rgba(255,255,255,0.95);
}

/* Sanktionen Cards */
.rules-sanktionen{
  margin-top: 8px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.rules-sank-card{
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  padding: 14px;
}

.rules-sank-top{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.rules-sank-pill{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(140,255,190,0.20);
  background: rgba(140,255,190,0.08);
  color: rgba(140,255,190,0.95);
}

.rules-sank-pill.warn{
  border-color: rgba(255,220,130,0.20);
  background: rgba(255,220,130,0.08);
  color: rgba(255,220,130,0.95);
}

.rules-sank-pill.danger{
  border-color: rgba(255,120,120,0.20);
  background: rgba(255,120,120,0.08);
  color: rgba(255,120,120,0.95);
}

.rules-sank-ex{
  font-size: 12px;
  font-weight: 900;
  color: rgba(232,243,255,0.85);
}

/* Report layout */
.rules-report{
  margin-top: 6px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 14px;
}

.rules-report h3{
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 900;
  color: #fff;
}

.rules-report-actions{
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.rules-mini{
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  padding: 14px;
}

.rules-mini-title{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  color: rgba(255,255,255,0.95);
  margin-bottom: 10px;
}

.rules-mini-title i{
  color: rgba(0,202,255,0.9);
}

.rules-mini p{
  color: rgba(230,240,255,0.80);
  font-size: 13.5px;
  line-height: 1.65;
}

.rules-note{
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.10);
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: rgba(230,240,255,0.72);
  font-size: 12.5px;
  line-height: 1.55;
}

.rules-note i{
  color: rgba(0,202,255,0.9);
  margin-top: 2px;
}

/* Responsive */
@media (max-width: 980px){
  .rules-topgrid{ grid-template-columns: 1fr; }
  .rules-toc-links{ grid-template-columns: 1fr; }
  .rules-sanktionen{ grid-template-columns: 1fr; }
  .rules-report{ grid-template-columns: 1fr; }
}

/* ================================
   RULES ACCORDION — HARD OVERRIDE
   ================================ */

/* Wichtig: NUR rules-body verstecken, nicht die ganze section */
.rules-body{
  display: none !important;
}

/* Beim Öffnen sichtbar machen */
.rules-section.open .rules-body{
  display: block !important;
}

/* Button sichtbar/sauber */
.rules-acc{
  width: 100%;
  cursor: pointer;
  border: 0;
  background: transparent;
}

/* Chevron drehen */
.rules-section.open .rules-acc .fa-chevron-down{
  transform: rotate(180deg);
}

.rules-acc .fa-chevron-down{
  transition: transform .25s ease;
}
/* ================================
   RULES ACCORDION — ANIMATION
   ================================ */

/* Button bleibt wie gehabt klickbar */
.rules-acc{
  width: 100%;
  cursor: pointer;
  border: 0;
  background: transparent;
}

/* Body animiert (height via JS), zusätzlich Fade/Slide */
.rules-body{
  height: 0;                 /* JS setzt px / 0 */
  overflow: hidden;
  opacity: 0;
  transform: translateY(-6px);
  transition: height .32s ease, opacity .25s ease, transform .25s ease;
  will-change: height, opacity, transform;
}

/* Wenn offen: opacity/transform sofort schön sichtbar */
.rules-section.open .rules-body{
  opacity: 1;
  transform: translateY(0);
}

/* Chevron drehen */
.rules-acc .fa-chevron-down{
  transition: transform .25s ease;
}
.rules-section.open .rules-acc .fa-chevron-down{
  transform: rotate(180deg);
}


