@import url('https://fonts.googleapis.com/css2?family=Major+Mono+Display&family=Inter:wght@300;400;600;800&display=swap');

:root {
    --bg: #1C1C1C;
    --card-bg: #2A2A2A;
    --primary: #1E3A5F;
    --accent: #CC0000;
    --silver: #A8A8A8;
    --white: #FFFFFF;
    --gray: #808080;
    --border: #3A3A3A;
    --transition: 0.15s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
    background-image:
        repeating-linear-gradient(0deg, transparent, transparent 40px, rgba(255,255,255,0.01) 40px, rgba(255,255,255,0.01) 41px),
        repeating-linear-gradient(90deg, transparent, transparent 40px, rgba(255,255,255,0.01) 40px, rgba(255,255,255,0.01) 41px);
}

::selection { background: var(--accent); color: var(--white); }

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--silver); }

/* ========== Crosshair Element ========== */
.crosshair {
    position: fixed;
    width: 20px;
    height: 20px;
    pointer-events: none;
    z-index: 9999;
}
.crosshair::before, .crosshair::after {
    content: '';
    position: absolute;
    background: var(--accent);
    opacity: 0.15;
}
.crosshair::before { width: 2px; height: 100%; left: 50%; transform: translateX(-50%); }
.crosshair::after { width: 100%; height: 2px; top: 50%; transform: translateY(-50%); }

/* ========== Nav ========== */
.nav-right { display: flex; align-items: center; gap: 8px; }
.lang-switch { display: flex; gap: 2px; }

.lang-btn {
    background: var(--card-bg);
    border: 1px solid var(--border);
    color: var(--gray);
    padding: 5px 10px;
    cursor: pointer;
    font-family: 'Major Mono Display', monospace;
    font-size: 10px;
    text-transform: uppercase;
    transition: var(--transition);
}

.lang-btn.active { background: var(--primary); color: var(--white); border-color: var(--primary); }
.lang-btn:hover:not(.active) { color: var(--white); border-color: var(--accent); }

.top-nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 14px 32px;
    background: rgba(28, 28, 28, 0.98);
    z-index: 999;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid var(--primary);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Major Mono Display', monospace;
    font-size: 16px;
    font-weight: 400;
    color: var(--white);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.nav-logo img { width: 32px; height: 32px; border: 2px solid var(--accent); }

.nav-links { display: flex; gap: 20px; align-items: center; }

.nav-links a {
    color: var(--gray);
    text-decoration: none;
    font-family: 'Major Mono Display', monospace;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: var(--transition);
    padding: 4px 0;
}

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

.nav-links .lang-switch { margin-left: auto; padding-left: 12px; border-left: 1px solid var(--border); }

.hamburger { display: none; flex-direction: column; gap: 4px; background: none; border: 1px solid var(--accent); cursor: pointer; padding: 6px; }
.hamburger span { width: 20px; height: 2px; background: var(--white); display: block; }

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

.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background:
        radial-gradient(ellipse at 30% 40%, rgba(204, 0, 0, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 60%, rgba(30, 58, 95, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content { position: relative; z-index: 1; max-width: 700px; }

.hero-logo {
    width: 100px; height: 100px;
    border: 3px solid var(--accent);
    box-shadow: 0 0 30px rgba(204, 0, 0, 0.2);
    margin-bottom: 24px;
}

.hero h1 {
    font-family: 'Major Mono Display', monospace;
    font-size: clamp(28px, 6vw, 48px);
    font-weight: 400;
    margin-bottom: 12px;
    color: var(--white);
    letter-spacing: 4px;
    text-transform: uppercase;
}

.hero h1 .highlight { color: var(--accent); }

.hero .tagline {
    font-family: 'Major Mono Display', monospace;
    font-size: 11px;
    color: var(--silver);
    margin-bottom: 8px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.hero .subtitle {
    font-size: 14px;
    color: var(--primary);
    margin-bottom: 32px;
}

.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.hero-actions .btn {
    min-width: 180px;
}

/* ========== Buttons (CS-Menü-Stil) ========== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: 'Major Mono Display', monospace;
    font-size: 12px;
    font-weight: 400;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 3px;
    cursor: pointer;
    border: 2px solid;
    transition: var(--transition);
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    border-color: var(--accent);
}

.btn-primary:hover {
    background: var(--accent);
    border-color: var(--accent);
}

.btn-outline {
    background: transparent;
    color: var(--silver);
    border-color: var(--silver);
}

.btn-outline:hover {
    background: var(--silver);
    color: var(--bg);
}

.btn-donate {
    background: transparent;
    color: var(--accent);
    border-color: var(--accent);
}

.btn-donate:hover {
    background: var(--accent);
    color: var(--white);
}

/* ========== Sections ========== */
.section { padding: 80px 20px; border-top: 2px solid var(--primary); }
.container { max-width: 1000px; margin: 0 auto; }

.section-title { text-align: center; margin-bottom: 48px; }

.section-title h2 {
    font-family: 'Major Mono Display', monospace;
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 12px;
    color: var(--accent);
    letter-spacing: 4px;
    text-transform: uppercase;
}

.section-title p { color: var(--gray); font-size: 13px; }

.twitch-section { background: var(--card-bg); }

.twitch-embed { max-width: 650px; margin: 0 auto; border: 2px solid var(--primary); aspect-ratio: 16/9; position: relative; }
.twitch-embed iframe { width: 100%; height: 100%; border: none; display: block; }

.twitch-status { display: flex; align-items: center; gap: 10px; justify-content: center; margin-bottom: 16px; }
.status-dot { width: 10px; height: 10px; background: #555; }
.status-dot.live { background: var(--accent); animation: pulse 1.5s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
.status-text { font-family: 'Major Mono Display', monospace; font-size: 11px; }
.status-text.live { color: var(--accent); }
.status-text.offline { color: var(--gray); }

/* ========== Schedule ========== */
.schedule-grid { max-width: 650px; margin: 0 auto; }

.schedule-day {
    background: var(--card-bg);
    border: 1px solid var(--border);
    padding: 18px 22px;
    margin-bottom: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.schedule-day:hover { border-color: var(--accent); }
.schedule-day .day { font-family: 'Major Mono Display', monospace; font-size: 12px; color: var(--silver); text-transform: uppercase; }
.schedule-day .time { color: var(--accent); font-weight: 600; }
.schedule-day .game { color: var(--gray); font-size: 12px; }
.schedule-day .status-badge { padding: 3px 10px; font-size: 11px; border: 1px solid; font-family: 'Major Mono Display', monospace; }
.status-badge.active { background: rgba(204,0,0,0.1); color: var(--accent); border-color: var(--accent); }
.status-badge.upcoming { background: rgba(30,58,95,0.1); color: var(--primary); border-color: var(--primary); }

/* ========== About ========== */
.about-section { background: var(--card-bg); }
.about-content { max-width: 650px; margin: 0 auto; text-align: center; }
.about-content p { color: var(--gray); font-size: 14px; margin-bottom: 16px; }
.about-content strong { color: var(--accent); }

/* ========== Design Image ========== */
.design-showcase {
    max-width: 400px;
    margin: 20px auto;
    border: 2px solid var(--primary);
    overflow: hidden;
}
.design-showcase img { width: 100%; height: auto; display: block; }

/* ========== Social Links ========== */
.social-links { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 24px; }

.social-link {
    display: flex; align-items: center; gap: 8px;
    padding: 10px 20px;
    font-family: 'Major Mono Display', monospace;
    font-size: 10px; letter-spacing: 2px;
    text-decoration: none; text-transform: uppercase;
    border: 1px solid var(--border);
    background: var(--card-bg);
    color: var(--white);
    transition: var(--transition);
}

.social-link:hover { border-color: var(--accent); color: var(--accent); }
.social-link svg { width: 18px; height: 18px; }

/* ========== Footer ========== */
footer { text-align: center; padding: 40px 20px; border-top: 2px solid var(--primary); color: var(--gray); font-size: 11px; }
footer a { color: var(--gray); text-decoration: none; font-family: 'Major Mono Display', monospace; font-size: 10px; }
footer a:hover { color: var(--accent); }

/* ========== Animations ========== */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.4s ease, transform 0.4s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ========== Mobile ========== */
@media (max-width: 768px) {
    .top-nav { padding: 12px 16px; }
    .nav-links { display: none; position: fixed; top: 56px; left: 0; width: 100%; background: rgba(28,28,28,0.98); flex-direction: column; padding: 20px; gap: 14px; border-bottom: 2px solid var(--primary); }
    .nav-links.open { display: flex; }
    .hamburger { display: flex; }
    .nav-links .lang-switch { margin-left: 0; padding-left: 0; border-left: none; padding-top: 12px; border-top: 1px solid var(--border); }
    .hero { padding: 100px 16px 40px; }
    .hero-logo { width: 80px; height: 80px; }
    .section { padding: 50px 16px; }
    .schedule-day { flex-direction: column; align-items: flex-start; gap: 8px; }
}
