/* ============================================================
   BLACKLIST V – style.css
   Dark Luxury / Crime / Underground / Premium Roleplay
   Farben: Schwarz, Anthrazit, Weiß, Rot (#e63946)
   ============================================================ */

/* ---------- CSS Variables ---------- */
:root {
    --color-bg:         #0a0a0f;
    --color-bg-alt:     #0e0e14;
    --color-bg-card:    #12121a;
    --color-bg-glass:   rgba(18, 18, 26, 0.6);
    --color-surface:    #1a1a24;
    --color-border:     rgba(255, 255, 255, 0.06);
    --color-text:       #e8e8ec;
    --color-text-muted: #8a8a96;
    --color-accent:     #e63946;
    --color-accent-glow: rgba(230, 57, 70, 0.35);
    --color-accent-dark: #b82d38;
    --color-white:      #ffffff;

    --neon-soft:  0 0 10px rgba(230, 57, 70, 0.3), 0 0 30px rgba(230, 57, 70, 0.15);
    --neon-mid:   0 0 10px rgba(230, 57, 70, 0.4), 0 0 40px rgba(230, 57, 70, 0.2), 0 0 80px rgba(230, 57, 70, 0.1);
    --neon-hard:  0 0 10px rgba(230, 57, 70, 0.5), 0 0 40px rgba(230, 57, 70, 0.3), 0 0 80px rgba(230, 57, 70, 0.15), 0 0 120px rgba(230, 57, 70, 0.08);
    --neon-text:  0 0 10px rgba(230, 57, 70, 0.6), 0 0 40px rgba(230, 57, 70, 0.3), 0 0 80px rgba(230, 57, 70, 0.15);
    --neon-line:  0 0 6px rgba(230, 57, 70, 0.5), 0 0 20px rgba(230, 57, 70, 0.25);

    --font-body:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: 'Bebas Neue', 'Inter', sans-serif;

    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;

    --shadow-card: 0 4px 30px rgba(0, 0, 0, 0.4);
    --shadow-glow: 0 0 40px var(--color-accent-glow);

    --header-height: 72px;
    --container-max: 1280px;
    --section-spacing: 120px;
}


/* ---------- Preloader ---------- */
.preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--color-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-inner {
    text-align: center;
}

.preloader-logo {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 400;
    color: var(--color-accent);
    letter-spacing: 6px;
    line-height: 1;
    margin-bottom: 20px;
    animation: preloader-pulse 1.5s ease infinite;
}

@keyframes preloader-pulse {
    0%, 100% { opacity: 1; text-shadow: var(--neon-mid); }
    50% { opacity: 0.6; text-shadow: var(--neon-hard); }
}

.preloader-bar {
    width: 180px;
    height: 2px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 2px;
    margin: 0 auto 16px;
    overflow: hidden;
}

.preloader-bar-fill {
    width: 0%;
    height: 100%;
    background: var(--color-accent);
    border-radius: 2px;
    box-shadow: var(--neon-line);
    animation: preloader-fill 1.8s ease-out forwards;
}

@keyframes preloader-fill {
    0% { width: 0%; }
    60% { width: 70%; }
    100% { width: 100%; }
}

.preloader-text {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--color-text-muted);
}


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

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    background: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

ul { list-style: none; }

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


/* ---------- Container ---------- */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}


/* ---------- Typography ---------- */
.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 16px;
    position: relative;
    padding-left: 28px;
}

.section-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 2px;
    background: var(--color-accent);
    box-shadow: var(--neon-line);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-white);
}

.accent {
    color: var(--color-accent);
    text-shadow: 0 0 20px rgba(230, 57, 70, 0.4), 0 0 60px rgba(230, 57, 70, 0.15);
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header .section-tag {
    padding-left: 0;
}

.section-header .section-tag::before {
    display: none;
}


/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--color-accent);
    color: var(--color-white);
    box-shadow: 0 4px 20px var(--color-accent-glow), var(--neon-soft);
}

.btn-primary:hover {
    background: var(--color-accent-dark);
    box-shadow: 0 6px 30px var(--color-accent-glow), var(--neon-mid);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--color-white);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
    background: rgba(230, 57, 70, 0.05);
    transform: translateY(-2px);
    box-shadow: var(--neon-soft);
}

.btn-lg {
    padding: 16px 40px;
    font-size: 0.9375rem;
}

.btn-sm {
    padding: 12px 24px;
    font-size: 0.8125rem;
}

.icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}


/* ============================================================
   HEADER
   ============================================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 1000;
    transition: all 0.4s ease;
    background: transparent;
}

.header.scrolled {
    background: rgba(10, 10, 15, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--color-border);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 1001;
}

.logo-mark {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--color-accent);
    letter-spacing: 2px;
    line-height: 1;
    text-shadow: 0 0 15px rgba(230, 57, 70, 0.5), 0 0 40px rgba(230, 57, 70, 0.2);
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-white);
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--color-text-muted);
    position: relative;
    padding: 4px 0;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-accent);
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-white);
}

.nav-link.active::after,
.nav-link:hover::after {
    width: 100%;
    box-shadow: var(--neon-line);
}

.header-cta {
    padding: 10px 24px;
    font-size: 0.75rem;
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 0;
}

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-white);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}


/* ============================================================
   HERO
   ============================================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 120px 0 80px;
}

/* Hero Slideshow */
.hero-slideshow {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transform: scale(1.05);
    transition: opacity 1.5s ease, transform 8s ease;
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(10, 10, 15, 0.4) 0%, rgba(10, 10, 15, 0.65) 50%, var(--color-bg) 100%);
    z-index: 1;
}

.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 820px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--color-accent);
    border: 1px solid rgba(230, 57, 70, 0.4);
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 32px;
    background: rgba(230, 57, 70, 0.06);
    box-shadow: var(--neon-soft), inset 0 0 15px rgba(230, 57, 70, 0.06);
    text-shadow: 0 0 12px rgba(230, 57, 70, 0.5);
}

.hero-title {
    margin-bottom: 20px;
}

.hero-title-main {
    font-family: var(--font-heading);
    font-size: clamp(4rem, 12vw, 8.5rem);
    font-weight: 400;
    letter-spacing: 10px;
    line-height: 1;
    color: var(--color-white);
    text-shadow: var(--neon-hard);
    display: block;
    animation: hero-neon-breathe 4s ease-in-out infinite;
}

@keyframes hero-neon-breathe {
    0%, 100% { text-shadow: var(--neon-mid); }
    50% { text-shadow: var(--neon-hard); }
}

.hero-subline {
    font-size: clamp(0.9rem, 2vw, 1.15rem);
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-bottom: 12px;
}

.hero-claim {
    font-family: var(--font-heading);
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    font-weight: 400;
    color: var(--color-accent);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 24px;
    text-shadow: var(--neon-text);
}

.hero-desc {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto 40px;
}

.hero-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    padding: 20px 32px;
    background: var(--color-bg-glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(230, 57, 70, 0.15);
    border-radius: var(--radius-md);
    box-shadow: 0 0 20px rgba(230, 57, 70, 0.08), inset 0 0 20px rgba(230, 57, 70, 0.03);
}

.hero-stat {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-stat-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #6b7280;
    box-shadow: none;
    transition: all 0.5s ease;
}

.hero-stat-dot.online {
    background: #22c55e;
    box-shadow: 0 0 8px rgba(34, 197, 94, 0.5);
    animation: pulse-dot 2s ease infinite;
}

.hero-stat-dot.offline {
    background: var(--color-accent);
    box-shadow: 0 0 8px var(--color-accent-glow);
    animation: pulse-dot 2s ease infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.hero-stat-value {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--color-white);
    letter-spacing: 1px;
}

.hero-stat-label {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    letter-spacing: 0.5px;
}

/* Hero Scroll Indicator */
.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.hero-scroll span {
    font-size: 0.65rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

.hero-scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, var(--color-accent), transparent);
    box-shadow: 0 0 8px rgba(230, 57, 70, 0.5), 0 0 20px rgba(230, 57, 70, 0.2);
    animation: scroll-line 2s ease infinite;
}

@keyframes scroll-line {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}


/* ============================================================
   ABOUT
   ============================================================ */
.about {
    padding: var(--section-spacing) 0;
    position: relative;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-desc {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--color-text-muted);
    margin-bottom: 32px;
}

.about-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.about-highlights li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text);
}

.about-highlights .icon {
    color: var(--color-accent);
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    filter: drop-shadow(0 0 4px rgba(230, 57, 70, 0.5));
}

/* About Visual */
.about-visual {
    position: relative;
    height: 500px;
}

.about-card {
    position: absolute;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(230, 57, 70, 0.1);
    transition: all 0.4s ease;
}

.about-card:hover {
    border-color: rgba(230, 57, 70, 0.3);
    box-shadow: var(--shadow-card), var(--neon-soft);
}

.about-card-1 {
    top: 0;
    right: 0;
    width: 75%;
    height: 320px;
    z-index: 2;
}

.about-card-2 {
    bottom: 0;
    left: 0;
    width: 65%;
    height: 260px;
    z-index: 1;
}

.about-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-image-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--color-text-muted);
    opacity: 0.3;
}

.about-image-placeholder span {
    font-size: 0.75rem;
    letter-spacing: 1px;
}

.about-accent-glow {
    position: absolute;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(230, 57, 70, 0.35) 0%, rgba(230, 57, 70, 0.1) 40%, transparent 70%);
    border-radius: 50%;
    bottom: 40px;
    right: 25%;
    z-index: 0;
    filter: blur(50px);
    opacity: 0.6;
    animation: about-glow-pulse 6s ease-in-out infinite;
}

@keyframes about-glow-pulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.08); }
}


/* ============================================================
   FEATURES
   ============================================================ */
.features {
    padding: var(--section-spacing) 0;
    background: var(--color-bg-alt);
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
    opacity: 0.3;
    box-shadow: var(--neon-line);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 40px 32px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--color-accent);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-card:hover {
    border-color: rgba(230, 57, 70, 0.25);
    transform: translateY(-4px);
    box-shadow: var(--shadow-card), var(--neon-soft);
}

.feature-card:hover::before {
    transform: scaleX(1);
    box-shadow: var(--neon-line);
}

.feature-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    background: rgba(230, 57, 70, 0.08);
    border: 1px solid rgba(230, 57, 70, 0.12);
    margin-bottom: 24px;
    box-shadow: 0 0 15px rgba(230, 57, 70, 0.08);
    transition: all 0.4s ease;
}

.feature-card:hover .feature-icon {
    box-shadow: var(--neon-soft);
    border-color: rgba(230, 57, 70, 0.3);
    background: rgba(230, 57, 70, 0.12);
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    color: var(--color-accent);
}

.feature-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--color-white);
    margin-bottom: 12px;
}

.feature-desc {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--color-text-muted);
}


/* ============================================================
   PATHS (Wähle deinen Weg)
   ============================================================ */
.paths {
    padding: var(--section-spacing) 0;
    position: relative;
}

.paths-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.path-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--color-border);
    transition: all 0.5s ease;
    min-height: 480px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.path-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 10%;
    right: 10%;
    height: 2px;
    background: var(--color-accent);
    box-shadow: var(--neon-line);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 3;
}

.path-card:hover::after {
    opacity: 1;
}

.path-card:hover {
    border-color: rgba(230, 57, 70, 0.2);
    transform: translateY(-6px);
    box-shadow: var(--shadow-card), 0 8px 40px rgba(230, 57, 70, 0.1);
}

.path-card-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.path-image {
    width: 100%;
    height: 100%;
    /* Eigenes Hintergrundbild:
       background: url('img/path-legal.jpg') center/cover no-repeat;
    */
}

.path-card-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(10, 10, 15, 0.95) 70%);
}

.path-card-content {
    position: relative;
    z-index: 1;
    padding: 40px 32px;
}

.path-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    background: rgba(230, 57, 70, 0.06);
    border: 1px solid rgba(230, 57, 70, 0.15);
    margin-bottom: 20px;
    box-shadow: 0 0 15px rgba(230, 57, 70, 0.1), inset 0 0 10px rgba(230, 57, 70, 0.04);
}

.path-icon svg {
    width: 24px;
    height: 24px;
    color: var(--color-accent);
    filter: drop-shadow(0 0 6px rgba(230, 57, 70, 0.5));
}

.path-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-white);
    margin-bottom: 12px;
}

.path-desc {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--color-text-muted);
    margin-bottom: 24px;
}

.path-featured {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-white);
    background: var(--color-accent);
    padding: 6px 14px;
    border-radius: 50px;
    z-index: 4;
    box-shadow: var(--neon-mid);
}

/* Crime card special accent */
.path-crime {
    border-color: rgba(230, 57, 70, 0.15);
}

.path-crime:hover {
    border-color: rgba(230, 57, 70, 0.4);
    box-shadow: var(--neon-mid);
}


/* ============================================================
   STATS
   ============================================================ */
.stats {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.stats-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 50% 50%, rgba(230, 57, 70, 0.06) 0%, transparent 60%),
        linear-gradient(90deg, transparent, rgba(230, 57, 70, 0.04), transparent),
        var(--color-bg-alt);
    z-index: 0;
}

.stats::before,
.stats::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
    opacity: 0.5;
    box-shadow: var(--neon-line);
}

.stats::before { top: 0; }
.stats::after  { bottom: 0; }

.stats-grid {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    flex: 1;
    min-width: 140px;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 5vw, 4rem);
    font-weight: 400;
    color: var(--color-white);
    line-height: 1;
    text-shadow: 0 0 20px rgba(230, 57, 70, 0.25);
}

.stat-suffix {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 400;
    color: var(--color-accent);
    text-shadow: var(--neon-text);
}

.stat-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-top: 8px;
}


/* ============================================================
   MEDIA / IMPRESSIONEN
   ============================================================ */
.media {
    padding: var(--section-spacing) 0;
    position: relative;
}

.media-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    grid-auto-rows: 220px;
}

.media-card {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    border: 1px solid var(--color-border);
    transition: all 0.4s ease;
}

.media-card:hover {
    border-color: rgba(230, 57, 70, 0.4);
    transform: scale(1.02);
    z-index: 2;
    box-shadow: var(--neon-soft);
}

.media-card-wide {
    grid-column: span 2;
}

.media-card-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.6s ease;
    /* Eigenes Bild:
       background: url('img/media-1.jpg') center/cover no-repeat;
    */
}

.media-card:hover .media-card-image {
    transform: scale(1.08);
}

.media-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.media-placeholder {
    opacity: 0.15;
    color: var(--color-text-muted);
}

.media-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(230, 57, 70, 0.7) 100%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.media-card:hover .media-card-overlay {
    opacity: 1;
}

.media-card-tag {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-white);
}


/* ============================================================
   JOIN (Einreise)
   ============================================================ */
.join {
    padding: var(--section-spacing) 0;
    background: var(--color-bg-alt);
    position: relative;
}

.join::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
    opacity: 0.3;
    box-shadow: var(--neon-line);
}

.join-steps {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

.join-step {
    display: flex;
    gap: 32px;
    padding-bottom: 48px;
    position: relative;
}

.join-step:last-child {
    padding-bottom: 0;
}

.join-step-number {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--color-accent);
    border: 2px solid rgba(230, 57, 70, 0.3);
    border-radius: 50%;
    background: rgba(230, 57, 70, 0.05);
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(230, 57, 70, 0.1), inset 0 0 10px rgba(230, 57, 70, 0.05);
    text-shadow: 0 0 10px rgba(230, 57, 70, 0.5);
}

.join-step:hover .join-step-number {
    background: var(--color-accent);
    color: var(--color-white);
    border-color: var(--color-accent);
    box-shadow: var(--neon-mid);
    text-shadow: none;
}

.join-step-content {
    padding-top: 8px;
}

.join-step-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--color-white);
    margin-bottom: 8px;
}

.join-step-desc {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--color-text-muted);
}

.join-step-line {
    position: absolute;
    left: 28px;
    top: 56px;
    width: 2px;
    height: calc(100% - 56px);
    background: linear-gradient(180deg, rgba(230, 57, 70, 0.4), rgba(230, 57, 70, 0.05));
    box-shadow: 0 0 8px rgba(230, 57, 70, 0.2), 0 0 20px rgba(230, 57, 70, 0.08);
}


/* ============================================================
   CTA
   ============================================================ */
.cta {
    padding: var(--section-spacing) 0;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.cta-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, var(--color-bg) 0%, rgba(10, 10, 15, 0.75) 30%, rgba(10, 10, 15, 0.75) 70%, var(--color-bg) 100%),
        url('assets/img/header4.webp') center/cover no-repeat;
    z-index: 0;
}

.cta-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(230, 57, 70, 0.35) 0%, rgba(230, 57, 70, 0.1) 40%, transparent 70%);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(80px);
    opacity: 0.5;
    z-index: 0;
    animation: cta-glow-pulse 5s ease-in-out infinite;
}

@keyframes cta-glow-pulse {
    0%, 100% { opacity: 0.4; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.6; transform: translate(-50%, -50%) scale(1.1); }
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-white);
    margin-bottom: 20px;
    text-shadow: 0 0 30px rgba(230, 57, 70, 0.2);
}

.cta-desc {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--color-text-muted);
    max-width: 550px;
    margin: 0 auto 40px;
}

.cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}


/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    padding: 60px 0 0;
    background: var(--color-bg-alt);
    border-top: 1px solid rgba(230, 57, 70, 0.15);
    box-shadow: 0 -1px 20px rgba(230, 57, 70, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
}

.footer-brand-desc {
    font-size: 0.85rem;
    line-height: 1.7;
    color: var(--color-text-muted);
    margin-top: 16px;
}

.footer-heading {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-white);
    margin-bottom: 20px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--color-accent);
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    border: 1px solid var(--color-border);
    color: var(--color-text-muted);
    transition: all 0.3s ease;
}

.social-icon:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
    background: rgba(230, 57, 70, 0.05);
    box-shadow: var(--neon-soft);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    border-top: 1px solid var(--color-border);
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

.footer-domain {
    font-weight: 500;
    color: var(--color-accent);
    text-shadow: 0 0 10px rgba(230, 57, 70, 0.4);
}


/* ============================================================
   SCROLL REVEAL ANIMATION
   ============================================================ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.stagger {
    transition-delay: calc(var(--stagger, 0) * 0.1s);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}


/* ============================================================
   BACK TO TOP BUTTON
   ============================================================ */
.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 900;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    color: var(--color-text-muted);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: all 0.35s ease;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
    background: rgba(230, 57, 70, 0.08);
    box-shadow: var(--neon-mid);
}


/* ============================================================
   CURSOR GLOW
   ============================================================ */
.cursor-glow {
    position: fixed;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(230, 57, 70, 0.12) 0%, rgba(230, 57, 70, 0.04) 35%, transparent 70%);
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    mix-blend-mode: screen;
}

.cursor-glow.active {
    opacity: 1;
}


/* ============================================================
   TYPEWRITER
   ============================================================ */
.hero-subline {
    min-height: 1.6em;
}

.typewriter-cursor {
    display: inline-block;
    width: 2px;
    height: 1em;
    background: var(--color-accent);
    margin-left: 4px;
    vertical-align: text-bottom;
    box-shadow: var(--neon-line);
    animation: blink-cursor 0.7s step-end infinite;
}

@keyframes blink-cursor {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}


/* ============================================================
   TILT EFFECT (About Cards)
   ============================================================ */
.about-card {
    transform-style: preserve-3d;
    perspective: 800px;
}

.about-card .about-image img {
    transition: transform 0.3s ease;
}


/* ============================================================
   FILM GRAIN OVERLAY
   ============================================================ */
.film-grain {
    position: fixed;
    inset: 0;
    z-index: 9000;
    pointer-events: none;
    opacity: 0.035;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 180px 180px;
    animation: grain-shift 0.8s steps(6) infinite;
    mix-blend-mode: overlay;
}

@keyframes grain-shift {
    0%   { transform: translate(0, 0); }
    16%  { transform: translate(-2px, 3px); }
    33%  { transform: translate(3px, -1px); }
    50%  { transform: translate(-1px, -3px); }
    66%  { transform: translate(2px, 1px); }
    83%  { transform: translate(-3px, -2px); }
    100% { transform: translate(0, 0); }
}


/* ============================================================
   DISCORD LIVE BADGE
   ============================================================ */
.discord-badge {
    position: fixed;
    bottom: 32px;
    left: 32px;
    z-index: 900;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 50px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: all 0.4s ease;
    text-decoration: none;
    color: var(--color-text);
}

.discord-badge.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.discord-badge:hover {
    border-color: rgba(88, 101, 242, 0.5);
    box-shadow: 0 0 15px rgba(88, 101, 242, 0.2), 0 0 40px rgba(88, 101, 242, 0.08);
    background: rgba(18, 18, 26, 0.9);
}

.discord-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 6px rgba(34, 197, 94, 0.5);
    animation: pulse-dot 2s ease infinite;
    flex-shrink: 0;
}

.discord-badge-icon {
    color: #5865F2;
    flex-shrink: 0;
}

.discord-badge-text {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: var(--color-text-muted);
    white-space: nowrap;
}

.discord-badge-text strong {
    color: var(--color-white);
    font-weight: 700;
}


/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Tablet */
@media (max-width: 1024px) {
    :root {
        --section-spacing: 80px;
    }

    .cursor-glow {
        display: none;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-visual {
        height: 350px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .paths-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .paths-grid .path-card:last-child {
        grid-column: span 2;
        max-width: 50%;
        margin: 0 auto;
    }

    .media-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 200px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .footer-brand {
        grid-column: span 2;
    }
}

/* Mobile */
@media (max-width: 768px) {
    :root {
        --section-spacing: 64px;
        --header-height: 64px;
    }

    .container {
        padding: 0 16px;
    }

    /* Mobile Nav */
    .nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(10, 10, 15, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s ease;
        z-index: 999;
    }

    .nav.open {
        opacity: 1;
        visibility: visible;
    }

    .nav-list {
        flex-direction: column;
        gap: 24px;
    }

    .nav-link {
        font-size: 1.2rem;
        letter-spacing: 3px;
    }

    .mobile-toggle {
        display: flex;
    }

    .header-cta {
        display: none;
    }

    /* Hero */
    .hero {
        padding: 100px 0 60px;
    }

    .hero-title-main {
        letter-spacing: 4px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 16px;
        padding: 16px 20px;
    }

    .hero-buttons {
        flex-direction: column;
        margin-bottom: 40px;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .hero-scroll {
        display: none;
    }

    /* About */
    .about-highlights {
        grid-template-columns: 1fr;
    }

    .about-visual {
        height: 280px;
    }

    .about-card-1 {
        width: 80%;
        height: 200px;
    }

    .about-card-2 {
        width: 70%;
        height: 180px;
    }

    /* Features */
    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-card {
        padding: 32px 24px;
    }

    /* Paths */
    .paths-grid {
        grid-template-columns: 1fr;
    }

    .paths-grid .path-card:last-child {
        grid-column: span 1;
        max-width: 100%;
    }

    .path-card {
        min-height: 380px;
    }

    /* Stats */
    .stats-grid {
        gap: 24px;
    }

    .stat-item {
        min-width: 100px;
    }

    /* Media */
    .media-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 180px;
    }

    .media-card-wide {
        grid-column: span 1;
    }

    /* Join */
    .join-step {
        gap: 20px;
    }

    .join-step-number {
        width: 48px;
        height: 48px;
        font-size: 0.95rem;
    }

    .join-step-line {
        left: 24px;
        top: 48px;
        height: calc(100% - 48px);
    }

    /* CTA */
    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-brand {
        grid-column: span 1;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    /* Discord Badge mobile */
    .discord-badge {
        left: 50%;
        transform: translateX(-50%) translateY(12px);
        bottom: 20px;
    }

    .discord-badge.visible {
        transform: translateX(-50%) translateY(0);
    }

    /* Film grain slightly less on mobile */
    .film-grain {
        opacity: 0.025;
    }
}

/* Small mobile */
@media (max-width: 400px) {
    .hero-title-main {
        font-size: 3.2rem;
        letter-spacing: 4px;
    }

    .section-title {
        font-size: 1.9rem;
    }
}
