/* --- CSS VARIABLEN --- */
:root {
    --bg-color: #050505;
    --content-bg: rgba(20, 20, 20, 0.85);
    --text-main: #e0e0e0;
    --text-muted: #888888;
    --accent-red: #ff2a2a;
    --accent-red-dim: #990000;
    --border-color: #333333;
    --win-color: #00ff66;
    --loss-color: #ff3333;
    --toxic-green: #adff2f;
    --warning-yellow: #ffcc00;
}

html {
    scroll-behavior: smooth;
}

/* --- NEON SCROLLBAR --- */
::-webkit-scrollbar {
    width: 12px;
}
::-webkit-scrollbar-track {
    background: #050505;
    border-left: 1px solid #222;
}
::-webkit-scrollbar-thumb {
    background: var(--accent-red-dim);
    border-radius: 6px;
    border: 2px solid #050505;
    transition: all 0.3s ease;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-red);
    box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.5); 
}

/* --- GRUND-SETUP (HIER WURDE DAS NEUE 4K BILD EINGEFÜGT) --- */
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
    background-color: var(--bg-color); color: var(--text-main);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; line-height: 1.6;
    
    /* Neues 4K Hintergrundbild */
    background-image: url('../images/background_wasteland_4k.webp'); 
    background-size: cover;
    background-position: center top;
    background-attachment: fixed; /* Erzeugt den Parallax-Effekt */
    background-repeat: no-repeat;
    
    position: relative; overflow-x: hidden;
}
h1, h2, h3 { font-family: 'Courier New', Courier, monospace; text-transform: uppercase; letter-spacing: 2px; color: #ffffff; text-shadow: 0 0 10px rgba(255, 255, 255, 0.2); }

/* --- ANIMATIONEN --- */
@keyframes fadeInUp { 0% { opacity: 0; transform: translateY(40px); } 100% { opacity: 1; transform: translateY(0); } }
@keyframes float { 0% { transform: translateY(0px); } 50% { transform: translateY(-10px); } 100% { transform: translateY(0px); } }
@keyframes glowPulse { 0% { box-shadow: 0 0 10px var(--accent-red-dim); border-color: var(--border-color); } 50% { box-shadow: 0 0 25px var(--accent-red); border-color: var(--accent-red); } 100% { box-shadow: 0 0 10px var(--accent-red-dim); border-color: var(--border-color); } }
@keyframes navGlitch {
    0% { transform: translate(0); text-shadow: 0 0 5px var(--accent-red); }
    20% { transform: translate(-2px, 1px); text-shadow: -2px 0 red, 2px 0 cyan; }
    40% { transform: translate(-1px, -1px); text-shadow: 2px 0 red, -2px 0 cyan; }
    60% { transform: translate(2px, 1px); text-shadow: -2px 0 red, 2px 0 cyan; }
    80% { transform: translate(1px, -1px); text-shadow: 2px 0 red, -2px 0 cyan; }
    100% { transform: translate(0); text-shadow: 0 0 10px var(--accent-red); }
}
@keyframes radioactiveShake {
    0% { transform: translate(0, 0) rotate(0deg); filter: drop-shadow(0 0 10px rgba(173, 255, 47, 0.3)) hue-rotate(0deg); }
    10% { transform: translate(-2px, -2px) rotate(-1deg); filter: drop-shadow(0 0 25px rgba(173, 255, 47, 0.8)) hue-rotate(10deg); }
    20% { transform: translate(2px, -1px) rotate(1deg); filter: drop-shadow(0 0 15px rgba(173, 255, 47, 0.5)) hue-rotate(-10deg); }
    30% { transform: translate(-1px, 2px) rotate(0deg); }
    40% { transform: translate(1px, -2px) rotate(1deg); }
    50% { transform: translate(-2px, 1px) rotate(-1deg); filter: drop-shadow(0 0 30px rgba(173, 255, 47, 0.9)) hue-rotate(20deg); }
    60% { transform: translate(2px, 2px) rotate(0deg); }
    70% { transform: translate(-1px, -1px) rotate(-1deg); }
    80% { transform: translate(1px, 2px) rotate(1deg); filter: drop-shadow(0 0 10px rgba(173, 255, 47, 0.4)) hue-rotate(0deg); }
    90% { transform: translate(-2px, -1px) rotate(0deg); }
    100% { transform: translate(0, 0) rotate(0deg); filter: drop-shadow(0 0 10px rgba(173, 255, 47, 0.3)) hue-rotate(0deg); }
}

/* --- WRAPPER (HIER WURDE DER HINTERGRUND ABDUNKELT) --- */
.container { 
    max-width: 1200px; 
    margin: 0 auto; 
    background-color: rgba(0, 0, 0, 0.85); /* Dunkler HG für Lesbarkeit */
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.8); /* Kräftiger Schatten für Tiefe */
    border-left: 1px solid #1a1a1a; 
    border-right: 1px solid #1a1a1a;
    position: relative; 
    z-index: 10; 
    animation: fadeInUp 1s ease-out; 
}

/* --- HEADER & TICKER --- */
.clan-header { width: 100%; display: block; overflow: hidden; position: relative; }
.clan-header img { width: 100%; height: auto; display: block; border-bottom: 4px solid var(--accent-red); }
.ticker-wrap { background-color: #050505; border-bottom: 1px solid var(--accent-red); padding: 8px 0; overflow: hidden; white-space: nowrap; color: var(--accent-red); font-family: monospace; font-size: 1rem; letter-spacing: 2px; text-shadow: 0 0 8px var(--accent-red); }
.ticker { display: inline-block; padding-left: 100%; animation: ticker 20s linear infinite; }
@keyframes ticker { 0% { transform: translate3d(0, 0, 0); } 100% { transform: translate3d(-100%, 0, 0); } }

/* --- CONTENT BEREICH & METAL BOX --- */
.content-area { padding: 40px; background: var(--content-bg); backdrop-filter: blur(5px); border-left: 1px solid #222; border-right: 1px solid #222; }
.metal-box {
    background-color: #1a1a1a;
    background-image: 
        radial-gradient(circle at 14px 14px, #888 1px, #111 4px, transparent 5px),
        radial-gradient(circle at calc(100% - 14px) 14px, #888 1px, #111 4px, transparent 5px),
        radial-gradient(circle at 14px calc(100% - 14px), #888 1px, #111 4px, transparent 5px),
        radial-gradient(circle at calc(100% - 14px) calc(100% - 14px), #888 1px, #111 4px, transparent 5px),
        linear-gradient(115deg, transparent 20%, rgba(255,255,255,0.015) 21%, transparent 22%),
        linear-gradient(70deg, transparent 40%, rgba(0,0,0,0.3) 41%, transparent 42%),
        linear-gradient(180deg, #2a2a2a 0%, #111111 100%);
    border: 2px solid #0a0a0a; border-top: 2px solid #333; border-radius: 4px;
    box-shadow: inset 0 0 25px rgba(0,0,0,0.9), 0 5px 15px rgba(0,0,0,0.5); position: relative;
}

/* --- SECTION TITLES --- */
.section-title { border-bottom: 2px solid var(--accent-red); padding-bottom: 10px; margin-bottom: 30px; display: flex; justify-content: space-between; align-items: flex-end; }
.section-title h2 { font-size: 1.8rem; text-shadow: 0 0 15px rgba(255, 42, 42, 0.5); }
.section-title a, .section-title span { color: var(--accent-red); font-family: monospace; font-size: 1rem; font-weight: bold; text-transform: uppercase; text-decoration: none; }
.section-title a:hover { color: #fff; text-shadow: 0 0 10px var(--accent-red); }

/* --- SPONSOREN --- */
.sponsors-wrapper { margin-bottom: 40px; padding: 20px 0; overflow: hidden; opacity: 0; animation: fadeInUp 0.8s ease-out forwards; animation-delay: 0.1s; }
.sponsors-title-small { text-align: center; font-family: monospace; color: var(--text-muted); text-transform: uppercase; font-size: 0.85rem; letter-spacing: 2px; margin-bottom: 15px; text-shadow: 0 -1px 1px #000; }
.sponsors-track-container { width: 100%; overflow: hidden; white-space: nowrap; position: relative; }
.sponsors-track-container::before, .sponsors-track-container::after { content: ''; position: absolute; top: 0; width: 50px; height: 100%; z-index: 2; pointer-events: none; }
.sponsors-track-container::before { left: 0; background: linear-gradient(to right, #1a1a1a, transparent); }
.sponsors-track-container::after { right: 0; background: linear-gradient(to left, #1a1a1a, transparent); }
.sponsors-track { display: inline-block; padding-left: 100%; animation: sponsors-marquee 25s linear infinite; }
.sponsors-track:hover { animation-play-state: paused; }
.sponsor-item { display: inline-block; color: #666; text-decoration: none; font-family: 'Courier New', Courier, monospace; font-weight: bold; font-size: 1.5rem; margin: 0 40px; text-transform: uppercase; transition: all 0.3s ease; vertical-align: middle; text-shadow: 1px 1px 0px #000; }
.sponsor-item:hover { color: var(--accent-red); text-shadow: 0 0 15px rgba(255, 42, 42, 0.8); transform: scale(1.15) translateY(-2px); }
.sponsor-item:active { transform: scale(0.95); color: #fff; }
@keyframes sponsors-marquee { 0% { transform: translate3d(0, 0, 0); } 100% { transform: translate3d(-100%, 0, 0); } }

/* --- HAUPT-GRID (NEWS & SIDEBAR) --- */
.main-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 40px; margin-bottom: 60px; }
.news-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 25px; }
.news-card { display: flex; flex-direction: column; padding: 8px; transition: all 0.4s; opacity: 0; animation: fadeInUp 0.8s ease-out forwards; }
.news-card:nth-child(1) { animation-delay: 0.6s; }
.news-card:nth-child(2) { animation-delay: 0.8s; }
.news-card:nth-child(3) { animation-delay: 1.0s; }
.news-card:nth-child(4) { animation-delay: 1.2s; }
.news-card:hover { border-color: var(--accent-red); box-shadow: inset 0 0 30px rgba(255, 42, 42, 0.1), 0 5px 20px rgba(255, 42, 42, 0.2); transform: translateY(-5px); }
.news-image-wrapper { height: 180px; overflow: hidden; border: 1px solid #000; border-bottom: 2px solid var(--accent-red); position: relative; }
.news-image-wrapper::after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(255, 42, 42, 0.1); opacity: 0; transition: opacity 0.4s; }
.news-card:hover .news-image-wrapper::after { opacity: 1; }
.news-image { width: 100%; height: 100%; background-color: #000; display: flex; align-items: center; justify-content: center; color: #444; background-size: cover; background-position: center; transition: transform 0.6s ease; }
.news-card:hover .news-image { transform: scale(1.15) rotate(2deg); }
.news-content { padding: 20px 15px; flex-grow: 1; display: flex; flex-direction: column; }
.news-content h3 { font-size: 1.3rem; margin-bottom: 10px; transition: color 0.3s; }
.news-card:hover .news-content h3 { color: var(--accent-red); text-shadow: 0 0 8px rgba(255, 42, 42, 0.6); }
.news-meta { color: var(--accent-red-dim); font-size: 0.85rem; margin-bottom: 15px; font-family: monospace; letter-spacing: 1px; }
.news-content p { font-size: 0.95rem; margin-bottom: 20px; color: #bbb; flex-grow: 1; }
.read-more { display: inline-block; background-color: transparent; color: var(--accent-red); text-decoration: none; padding: 10px 20px; font-size: 0.9rem; font-weight: bold; text-transform: uppercase; border: 1px solid var(--accent-red); transition: all 0.3s; text-align: center; margin-top: auto; position: relative; overflow: hidden; z-index: 1; background: rgba(0,0,0,0.5); }
.read-more::before { content: ''; position: absolute; top: 0; left: 0; width: 0%; height: 100%; background-color: var(--accent-red); transition: all 0.3s; z-index: -1; }
.read-more:hover::before { width: 100%; }
.read-more:hover { color: #fff; box-shadow: 0 0 15px rgba(255, 42, 42, 0.6); }

/* --- SIDEBAR WIDGETS --- */
.widget { padding: 25px; margin-bottom: 30px; transition: all 0.4s; }
.widget:hover { transform: translateX(-5px); border-color: #555; box-shadow: -5px 5px 20px rgba(0,0,0,0.6), inset 0 0 20px rgba(0,0,0,0.8); }
.widget[style*="border-top-color"] { animation: glowPulse 4s infinite; }
.widget h3 { font-size: 1.2rem; margin-bottom: 20px; border-bottom: 1px solid #333; padding-bottom: 10px; color: #fff; text-shadow: 1px 1px 2px #000; }
.match-upcoming { display: flex; justify-content: space-between; padding: 12px 5px; border-bottom: 1px dashed #444; font-size: 0.95rem; transition: all 0.3s; }
.match-upcoming:hover { background: rgba(255, 42, 42, 0.1); padding-left: 10px; color: #fff; border-left: 2px solid var(--accent-red); }
.match-upcoming:last-child { border-bottom: none; }
.player-list { list-style: none; }
.player-list li { display: flex; justify-content: space-between; padding: 10px 5px; border-bottom: 1px solid #222; transition: all 0.3s; }
.player-list li:hover { background: rgba(255,255,255,0.05); padding-left: 10px; }
.player-list li span:last-child { color: var(--accent-red); font-weight: bold; font-family: monospace; font-size: 1.1rem; }
.discord-btn { display: block; background: #5865F2; color: white; text-decoration: none; padding: 15px; border-radius: 4px; font-weight: bold; font-family: monospace; font-size: 1.1rem; letter-spacing: 1px; transition: all 0.4s; margin-top: 20px; position: relative; overflow: hidden; animation: float 4s ease-in-out infinite; border: 1px solid #333; }
.discord-btn::after { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: rgba(255,255,255,0.1); transform: rotate(45deg); transition: all 0.5s; }
.discord-btn:hover { background: #4752C4; box-shadow: 0 0 25px rgba(88, 101, 242, 0.8); transform: scale(1.05) translateY(-5px); }
.discord-btn:hover::after { left: 100%; }

/* --- GAMES GRID --- */
.games-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 25px; margin-bottom: 60px; }
.game-card { display: flex; flex-direction: column; padding: 8px; transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); cursor: pointer; opacity: 0; animation: fadeInUp 0.8s ease-out forwards; }
.game-card:hover { transform: translateY(-10px); border-color: var(--accent-red); box-shadow: inset 0 0 30px rgba(255, 42, 42, 0.1), 0 10px 25px rgba(255, 42, 42, 0.3); z-index: 2; }
.game-image-wrapper { height: 140px; overflow: hidden; border: 1px solid #000; border-bottom: 2px solid var(--accent-red); position: relative; background: #000; }
.game-image { width: 100%; height: 100%; background-size: cover; background-position: center; filter: grayscale(80%) contrast(1.1) brightness(0.8); transition: transform 0.6s ease, filter 0.5s ease; }
.game-card:hover .game-image { transform: scale(1.15); filter: grayscale(0%) contrast(1.1) brightness(1); }
.game-info { padding: 15px 5px 5px 5px; text-align: center; }
.game-info h3 { font-size: 1.15rem; margin: 0; color: #ccc; transition: color 0.3s; text-shadow: 1px 1px 3px #000; }
.game-card:hover .game-info h3 { color: var(--accent-red); text-shadow: 0 0 10px rgba(255, 42, 42, 0.8); }

/* --- ÜBER UNS --- */
.about-section { display: flex; align-items: center; gap: 40px; padding: 40px; margin-bottom: 60px; }
.about-text { flex: 1; }
.about-text p { margin-bottom: 20px; font-size: 1.05rem; color: #ccc; }
.about-text strong { color: var(--accent-red); font-family: monospace; font-size: 1.1rem; }
.about-image-wrapper { flex: 0 0 300px; display: flex; justify-content: center; align-items: center; }
.radioactive-img { width: 100%; max-width: 280px; height: auto; border: 2px dashed var(--toxic-green); border-radius: 8px; animation: radioactiveShake 3s infinite ease-in-out; background-color: #050505; }

/* --- OPERATIVE DATABASE --- */
.roster-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 25px; margin-bottom: 60px; padding-top: 30px; }
.roster-card { 
    padding: 40px 15px 25px 15px; text-align: center; transition: all 0.5s ease; display: flex; flex-direction: column; align-items: center; 
    background: linear-gradient(135deg, #3a3a3a 0%, #1f1f1f 40%, #111111 45%, #666666 50%, #111111 55%, #1f1f1f 60%, #111111 100%);
    background-size: 300% 300%; background-position: 100% 100%; border: 2px solid #555; border-radius: 20px; 
    box-shadow: 5px 5px 15px rgba(0,0,0,0.9), inset 2px 2px 5px rgba(255,255,255,0.1); 
    position: relative;
}
.roster-card::before {
    content: ''; position: absolute; top: 12px; left: 50%; transform: translateX(-50%);
    width: 14px; height: 14px; background: var(--bg-color); border-radius: 50%;
    box-shadow: inset 2px 2px 5px rgba(0,0,0,0.9), 1px 1px 1px rgba(255,255,255,0.2); z-index: 2;
}
.roster-card::after {
    content: ''; position: absolute; top: -45px; left: 50%; transform: translateX(-50%);
    width: 4px; height: 60px; border-left: 4px dotted #777; z-index: 1; opacity: 0.8;
}
.roster-card:hover { transform: translateY(-5px) rotate(2deg); border-color: #888; box-shadow: 10px 10px 25px rgba(0,0,0,0.9), inset 2px 2px 10px rgba(255,255,255,0.2); background-position: 0% 0%; z-index: 2; }
.roster-img-wrapper { width: 100px; height: 100px; border-radius: 50%; overflow: hidden; margin-bottom: 15px; border: 3px solid #333; transition: all 0.4s ease; background: #000; box-shadow: inset 0 0 10px rgba(0,0,0,0.8), 0 5px 10px rgba(0,0,0,0.5); position: relative; }
.roster-img-wrapper::after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0,0,0,0.3) 2px, rgba(0,0,0,0.3) 4px); pointer-events: none; }
.roster-img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(80%) contrast(1.2); transition: all 0.4s ease; }
.roster-card:hover .roster-img-wrapper { border-color: var(--accent-red); box-shadow: 0 0 15px rgba(255, 42, 42, 0.5); }
.roster-card:hover .roster-img { filter: grayscale(0%) contrast(1.1); transform: scale(1.1); }
.roster-name { font-size: 1.5rem; font-family: monospace; font-weight: bold; color: #b0b0b0; text-transform: uppercase; margin-bottom: 5px; text-shadow: -1px -1px 1px rgba(0,0,0,0.8), 1px 1px 1px rgba(255,255,255,0.2); transition: 0.3s; }
.roster-card:hover .roster-name { color: #fff; text-shadow: 0 0 10px rgba(255, 255, 255, 0.4), -1px -1px 1px rgba(0,0,0,0.8); }
.roster-role { color: var(--accent-red-dim); font-size: 0.85rem; text-transform: uppercase; margin-bottom: 15px; font-weight: bold; letter-spacing: 1px; }
.roster-stats { width: 100%; list-style: none; padding-top: 15px; border-top: 1px solid #333; font-family: monospace; font-size: 0.9rem; color: #999; text-align: left; }
.roster-stats li { display: flex; justify-content: space-between; margin-bottom: 5px; padding: 2px 5px; }
.roster-stats li span { color: #ddd; font-weight: bold; }

/* --- MATCHES --- */
.matches-container { display: flex; flex-wrap: wrap; gap: 20px; margin-bottom: 60px; }
.match-card { flex: 1; min-width: 250px; padding: 25px 20px; text-align: center; transition: all 0.4s ease; opacity: 0; animation: fadeInUp 0.8s ease-out forwards; }
.match-card:hover { transform: translateY(-10px) scale(1.03); box-shadow: inset 0 0 25px rgba(0,0,0,0.9), 0 15px 30px rgba(0,0,0,0.8); z-index: 2; }
.match-card.win { border-top: 4px solid var(--win-color); }
.match-card.loss { border-top: 4px solid var(--loss-color); }
.match-card.win:hover { box-shadow: inset 0 0 20px rgba(0,255,102,0.1), 0 10px 30px rgba(0, 255, 102, 0.2); }
.match-card.loss:hover { box-shadow: inset 0 0 20px rgba(255,51,51,0.1), 0 10px 30px rgba(255, 51, 51, 0.2); }
.match-game { font-size: 0.9rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 15px; display: block; }
.match-teams { display: flex; justify-content: center; align-items: center; gap: 20px; font-weight: bold; font-size: 1.3rem; margin-bottom: 15px; text-shadow: 1px 1px 2px #000; }
.match-score { background: #000; padding: 8px 15px; border-radius: 4px; font-family: monospace; font-size: 1.5rem; color: #fff; border: 1px solid var(--accent-red); box-shadow: inset 0 0 10px rgba(255,0,0,0.3), 0 0 15px rgba(255, 42, 42, 0.3); }

/* --- MITGLIED WERDEN --- */
.recruitment-section {
    padding: 50px 40px; margin-bottom: 60px; text-align: center;
    background: repeating-linear-gradient(45deg, rgba(20,20,20,0.9), rgba(20,20,20,0.9) 15px, rgba(10,10,10,0.9) 15px, rgba(10,10,10,0.9) 30px);
    border: 3px solid var(--warning-yellow); box-shadow: inset 0 0 50px rgba(255, 204, 0, 0.05), 0 10px 30px rgba(255, 204, 0, 0.15);
}
.recruitment-section h2 { color: var(--warning-yellow); text-shadow: 0 0 15px var(--warning-yellow); font-size: 2.2rem; margin-bottom: 15px; animation: navGlitch 4s infinite reverse; }
.recruitment-section p { font-size: 1.1rem; max-width: 800px; margin: 0 auto 20px auto; color: #ddd; }
.recruitment-image-wrapper {
    margin: 30px auto;
    width: 100%; max-width: 450px; 
    opacity: 0; animation: fadeInUp 0.8s ease-out forwards; animation-delay: 1.2s;
}
.recruit-operative-img {
    width: 100%; height: auto; display: block;
    border: 4px solid var(--warning-yellow);
    box-shadow: 0 0 25px rgba(255, 204, 0, 0.4);
    border-radius: 4px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
    object-fit: cover; opacity: 0.9;

}
.recruitment-image-wrapper:hover .recruit-operative-img {
    transform: scale(1.03);
    box-shadow: 0 0 35px rgba(255, 204, 0, 0.6);
    filter: brightness(1.1) contrast(1.1);
    opacity: 1;
}
.enlist-btn { display: inline-block; background: var(--warning-yellow); color: #000; text-decoration: none; padding: 15px 40px; font-size: 1.3rem; font-weight: bold; font-family: monospace; text-transform: uppercase; letter-spacing: 2px; border-radius: 4px; border: 2px solid #fff; transition: all 0.4s; box-shadow: 0 0 20px rgba(255, 204, 0, 0.5); cursor: pointer; }
.enlist-btn:hover { background: #fff; color: #000; box-shadow: 0 0 30px #fff; transform: scale(1.05); }

/* --- BOUNTY BOARD --- */
.bounty-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 25px; margin-bottom: 60px; }
.bounty-card { padding: 30px 20px; text-align: center; border-color: var(--accent-red-dim); position: relative; overflow: hidden; transition: all 0.4s; }
.bounty-card:hover { transform: scale(1.02); box-shadow: inset 0 0 30px rgba(255, 42, 42, 0.2), 0 10px 25px rgba(255, 42, 42, 0.1); border-color: var(--accent-red); }
.bounty-status { position: absolute; top: 25px; right: -40px; background: var(--accent-red); color: #fff; font-weight: bold; font-family: monospace; letter-spacing: 2px; text-transform: uppercase; padding: 5px 40px; transform: rotate(45deg); box-shadow: 0 0 15px rgba(255, 0, 0, 0.8); z-index: 2; }
.bounty-target { font-size: 1.6rem; color: #fff; font-family: monospace; text-transform: uppercase; margin-bottom: 10px; text-shadow: 2px 2px 0px #000; }
.bounty-event { color: #aaa; font-size: 0.95rem; margin-bottom: 20px; border-bottom: 1px solid #444; padding-bottom: 15px; }
.bounty-reward { color: var(--warning-yellow); font-family: monospace; font-size: 1.1rem; font-weight: bold; text-shadow: 0 0 8px rgba(255, 204, 0, 0.5); }

/* --- COMBAT ARCHIVES --- */
.archives-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; margin-bottom: 60px; }
.archive-item { position: relative; overflow: hidden; cursor: pointer; border: 2px solid #333; padding: 6px; background: #000; transition: all 0.4s ease; }
.archive-item img { width: 100%; height: auto; display: block; filter: grayscale(100%) brightness(0.7) sepia(30%); transition: all 0.5s ease; }
.archive-item:hover { border-color: var(--accent-red); box-shadow: 0 0 20px rgba(255, 42, 42, 0.4); }
.archive-item:hover img { filter: grayscale(0%) brightness(1) sepia(0%); transform: scale(1.1); }
.archive-overlay { position: absolute; bottom: -100%; left: 0; width: 100%; background: linear-gradient(to top, rgba(255, 42, 42, 0.9), transparent); color: #fff; padding: 20px 10px 10px 10px; text-align: center; font-family: monospace; font-weight: bold; transition: bottom 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); pointer-events: none; }
.archive-item:hover .archive-overlay { bottom: 0; }

/* --- LIGHTBOX --- */
.lightbox { display: none; position: fixed; z-index: 3000; left: 0; top: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.9); justify-content: center; align-items: center; flex-direction: column; }
.lightbox img { max-width: 90%; max-height: 80vh; border: 3px solid #fff; box-shadow: 0 0 50px rgba(255,255,255,0.2); }
.lightbox-close { position: absolute; top: 20px; right: 30px; color: #fff; font-size: 3rem; cursor: pointer; }
#lightboxCaption { color: var(--accent-red); margin-top: 20px; font-family: monospace; font-size: 1.5rem; }

/* --- ARSENAL / LOADOUT --- */
.arsenal-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; margin-bottom: 60px; }
.arsenal-crate { padding: 10px; display: flex; flex-direction: column; cursor: pointer; transition: all 0.4s; border: 2px solid #222; border-top: 6px solid var(--warning-yellow); }
.arsenal-crate:hover { transform: translateY(-5px); border-color: var(--warning-yellow); box-shadow: 0 15px 30px rgba(0,0,0,0.8), inset 0 0 40px rgba(255, 204, 0, 0.1); }
.crate-img-wrapper { height: 180px; background: #000; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; border: 1px solid #111; }
.crate-img { width: 80%; height: auto; max-height: 90%; object-fit: contain; transition: transform 0.5s ease; filter: drop-shadow(0 5px 10px #000); }
.arsenal-crate:hover .crate-img { transform: scale(1.1); filter: drop-shadow(0 0 15px rgba(255,255,255,0.3)); }
.crate-info { padding: 20px 10px 10px 10px; text-align: center; }
.crate-info h3 { font-size: 1.2rem; color: #ddd; margin-bottom: 5px; transition: 0.3s; }
.arsenal-crate:hover .crate-info h3 { color: var(--warning-yellow); text-shadow: 0 0 10px rgba(255, 204, 0, 0.6); }
.crate-desc { color: #888; font-size: 0.9rem; font-family: monospace; }

/* --- FAQ --- */
.faq-container { margin-bottom: 60px; display: flex; flex-direction: column; gap: 15px; }
.faq-item { padding: 20px; cursor: pointer; transition: all 0.3s; }
.faq-item:hover { border-color: #555; box-shadow: inset 0 0 15px rgba(255, 255, 255, 0.05); }
.faq-item summary { font-size: 1.2rem; font-weight: bold; color: #fff; list-style: none; display: flex; justify-content: space-between; align-items: center; font-family: monospace; letter-spacing: 1px; outline: none; }
.faq-item summary::after { content: '[ + ]'; color: var(--accent-red); font-size: 1.2rem; transition: transform 0.3s; }
.faq-item[open] summary::after { content: '[ - ]'; color: #fff; }
.faq-item[open] summary { color: var(--accent-red); margin-bottom: 15px; padding-bottom: 15px; border-bottom: 1px dashed #444; text-shadow: 0 0 5px rgba(255, 42, 42, 0.5); }
.faq-content { color: #bbb; font-size: 1rem; line-height: 1.8; padding-left: 10px; border-left: 3px solid var(--accent-red-dim); animation: fadeInUp 0.4s ease-out; }

/* --- MODAL (BEWERBUNGSFORMULAR) --- */
.modal-overlay { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.85); backdrop-filter: blur(8px); z-index: 2000; justify-content: center; align-items: center; opacity: 0; transition: opacity 0.3s ease; }
.modal-overlay.active { display: flex; opacity: 1; }
.modal-content { width: 90%; max-width: 600px; max-height: 90vh; overflow-y: auto; padding: 40px; position: relative; animation: fadeInUp 0.4s ease-out; border-color: var(--warning-yellow); }
.modal-content::-webkit-scrollbar { width: 8px; } .modal-content::-webkit-scrollbar-track { background: #111; } .modal-content::-webkit-scrollbar-thumb { background: var(--warning-yellow); }
.close-btn { position: absolute; top: 15px; right: 20px; color: var(--warning-yellow); font-size: 2.5rem; line-height: 1; font-family: monospace; cursor: pointer; transition: 0.3s; }
.close-btn:hover { color: #fff; text-shadow: 0 0 15px var(--warning-yellow); transform: scale(1.1); }
.recruit-form { display: flex; flex-direction: column; gap: 20px; margin-top: 25px; }
.form-group { display: flex; flex-direction: column; text-align: left; }
.form-group label { color: var(--warning-yellow); font-family: monospace; letter-spacing: 1px; margin-bottom: 8px; font-size: 0.95rem; }
.form-group input, .form-group select, .form-group textarea { background: rgba(10, 10, 10, 0.8); border: 1px solid #444; color: #fff; padding: 12px 15px; font-family: 'Courier New', Courier, monospace; font-size: 1rem; transition: all 0.3s; border-radius: 2px; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--warning-yellow); box-shadow: 0 0 15px rgba(255, 204, 0, 0.3); background: #000; }
.submit-btn { background: var(--warning-yellow); color: #000; padding: 15px; margin-top: 10px; font-weight: bold; font-family: monospace; font-size: 1.2rem; border: 1px solid #fff; cursor: pointer; transition: 0.3s; text-transform: uppercase; letter-spacing: 2px; }
.submit-btn:hover { background: #fff; box-shadow: 0 0 20px rgba(255, 255, 255, 0.8); transform: translateY(-2px); }

/* --- FOOTER --- */
.clan-footer { width: 100%; display: block; position: relative; border-top: 4px solid var(--accent-red); box-shadow: 0 -5px 20px rgba(255, 42, 42, 0.2); opacity: 0; animation: fadeInUp 0.8s ease-out forwards; animation-delay: 1.2s; }
.clan-footer img { width: 100%; height: auto; display: block; }
.footer-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; display: flex; flex-direction: column; justify-content: flex-end; align-items: center; background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.5) 20%, transparent 50%); padding-bottom: 25px; }
.footer-links { display: flex; gap: 30px; margin-bottom: 15px; }
.footer-links a { color: #fff; text-decoration: none; font-family: 'Courier New', Courier, monospace; font-weight: bold; font-size: 1.1rem; text-transform: uppercase; letter-spacing: 2px; transition: all 0.3s; text-shadow: 0 0 5px #000; }
.footer-links a:hover { color: var(--accent-red); text-shadow: 0 0 15px var(--accent-red); transform: translateY(-2px); }
.footer-credits { text-align: center; font-size: 0.85em; color: #aaa; font-family: monospace; letter-spacing: 1px; text-shadow: 0 0 5px #000; }

/* --- SCROLL TO TOP BUTTON --- */
.scroll-top-btn { position: fixed; bottom: 30px; right: 30px; width: 50px; height: 50px; background: rgba(10, 10, 10, 0.8); color: var(--accent-red); border: 2px solid var(--accent-red); border-radius: 5px; font-size: 1.2rem; cursor: pointer; display: flex; justify-content: center; align-items: center; z-index: 999; opacity: 0; transform: scale(0) translateY(20px); transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); box-shadow: 0 0 15px rgba(255, 42, 42, 0.3); backdrop-filter: blur(5px); }
.scroll-top-btn.visible { opacity: 1; transform: scale(1) translateY(0); }
.scroll-top-btn:hover { background: var(--accent-red); color: #fff; box-shadow: 0 0 25px rgba(255, 42, 42, 0.8); transform: scale(1.1) translateY(0); }

/* --- GEIGERZÄHLER / RADAR --- */
.geiger-container { background: #050505; border: 2px solid #222; border-radius: 4px; padding: 10px; box-shadow: inset 0 0 20px rgba(0,0,0,0.9); }
.geiger-screen { background: radial-gradient(circle at center, #113311 0%, #001100 100%); border: 2px inset #000; border-radius: 3px; padding: 10px; color: var(--toxic-green); text-shadow: 0 0 8px var(--toxic-green); font-family: 'Courier New', Courier, monospace; position: relative; overflow: hidden; }
.geiger-screen::after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0,0,0,0.3) 2px, rgba(0,0,0,0.3) 4px); pointer-events: none; }
.geiger-top { display: flex; justify-content: space-between; align-items: center; font-size: 0.8rem; font-weight: bold; margin-bottom: 5px; border-bottom: 1px solid rgba(173, 255, 47, 0.3); padding-bottom: 5px; }
.geiger-icon { font-size: 1.2rem; animation: radioactivePulse 2s infinite; }
@keyframes radioactivePulse { 0% { opacity: 1; } 50% { opacity: 0.3; } 100% { opacity: 1; } }
.geiger-stats { display: flex; flex-direction: column; gap: 10px; margin-top: 10px; }
.geiger-row { display: flex; justify-content: space-between; align-items: center; border-bottom: 1px dashed rgba(173, 255, 47, 0.2); padding-bottom: 6px; }
.geiger-row:last-child { border-bottom: none; padding-bottom: 0; }
.g-label { font-size: 0.85rem; color: #88aa88; display: flex; align-items: center; }
.g-value { font-size: 1.3rem; font-weight: bold; letter-spacing: 2px; font-family: monospace; }
#countOnline { color: #fff; text-shadow: 0 0 10px #fff, 0 0 20px var(--toxic-green); }


/* =========================================
   BLAST SHIELD COMMAND TERMINAL (ANGLED)
   ========================================= */
.main-nav { justify-content: space-between; align-items: center; display: flex; }

.nav-triggers {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Desktop Button */
.desktop-terminal-btn {
    background: transparent; color: var(--accent-red);
    border: 1px solid var(--accent-red); padding: 8px 15px;
    font-family: monospace; font-size: 1.1rem; font-weight: bold;
    cursor: pointer; transition: all 0.3s;
    text-shadow: 0 0 5px rgba(255, 42, 42, 0.5);
    box-shadow: inset 0 0 10px rgba(255, 42, 42, 0.1);
}
.desktop-terminal-btn:hover { background: rgba(255, 42, 42, 0.2); box-shadow: 0 0 15px rgba(255, 42, 42, 0.4); }

/* Hintergrund-Verdunklung */
.terminal-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.8); backdrop-filter: blur(5px);
    z-index: 1999; opacity: 0; visibility: hidden; transition: all 0.4s ease;
}
.terminal-overlay.active { opacity: 1; visibility: visible; }

/* Terminal Animationen */
@keyframes terminalFlicker {
    0% { opacity: 0.95; }
    5% { opacity: 0.85; }
    10% { opacity: 0.95; }
    15% { opacity: 0.9; }
    100% { opacity: 1; }
}
@keyframes scanlineAnim {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(100%); }
}
@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}
@keyframes linkReveal {
    from { opacity: 0; transform: translateX(30px); filter: blur(5px); }
    to { opacity: 1; transform: translateX(0); filter: blur(0); }
}

/* Das Blast Shield Panel */
.off-canvas-terminal {
    position: fixed; top: 0; right: -450px; 
    visibility: hidden;
    width: 400px; height: 100vh; max-width: 100%;
    background: #0a0303;
    z-index: 2000; 
    transition: right 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), visibility 0s linear 0.4s;
    display: flex; flex-direction: column;
    animation: terminalFlicker 0.15s infinite;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 60px 100%);
    filter: drop-shadow(-5px 0 15px rgba(255, 42, 42, 0.5));
}
.off-canvas-terminal.active { 
    right: 0; 
    visibility: visible; 
    transition: right 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), visibility 0s linear 0s;
}

/* Warning Stripes (Warnstreifen) direkt an der Schnittkante */
.off-canvas-terminal::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100px; height: 100%;
    clip-path: polygon(0 0, 15px 0, 75px 100%, 60px 100%);
    background: repeating-linear-gradient(
        -45deg,
        var(--accent-red),
        var(--accent-red) 15px,
        #111 15px,
        #111 30px
    );
    z-index: 20;
}

/* Rote durchgezogene Linie neben den Warnstreifen */
.off-canvas-terminal::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100px; height: 100%;
    clip-path: polygon(15px 0, 18px 0, 78px 100%, 75px 100%);
    background: var(--accent-red);
    z-index: 20;
}

/* Scanline-Overlay */
.terminal-scanlines {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.3) 51%);
    background-size: 100% 4px;
    pointer-events: none; z-index: 5;
}
.terminal-scanlines::after {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100px;
    background: linear-gradient(to bottom, transparent, rgba(255, 42, 42, 0.1), transparent);
    animation: scanlineAnim 8s linear infinite;
}

/* Terminal Header */
.terminal-header {
    display: flex; justify-content: space-between; align-items: center;
    padding: 20px 20px 20px 40px; 
    border-bottom: 1px dashed var(--accent-red);
    background: rgba(255, 42, 42, 0.05);
    position: relative; z-index: 10;
}
.terminal-title { color: var(--accent-red); font-family: monospace; font-size: 1.2rem; letter-spacing: 2px; }
.blink { animation: blink 1s infinite; color: var(--accent-red); }
.close-terminal {
    background: none; border: none; color: #fff;
    font-size: 2.5rem; cursor: pointer; transition: 0.3s; line-height: 0.5;
}
.close-terminal:hover { color: var(--accent-red); text-shadow: 0 0 10px var(--accent-red); transform: scale(1.1); }

/* Terminal Content */
.terminal-content { 
    padding: 30px 20px 30px 80px; 
    flex-grow: 1; display: flex; flex-direction: column; position: relative; z-index: 10; 
}
.terminal-nav-links { display: flex; flex-direction: column; gap: 20px; }
.terminal-nav-links a {
    color: #aa8888; text-decoration: none; font-family: monospace;
    font-size: 1.4rem; font-weight: bold; text-transform: uppercase;
    letter-spacing: 3px; display: flex; align-items: center;
    border-bottom: 1px solid transparent;
    opacity: 0; position: relative; padding: 15px 0; transition: all 0.2s ease;
}
.off-canvas-terminal.active .terminal-nav-links a {
    animation: linkReveal 0.4s ease-out forwards;
    animation-delay: calc(var(--i) * 0.1s + 0.3s);
}
.terminal-nav-links a span { font-size: 0.8rem; color: var(--accent-red); opacity: 0.5; margin-right: 15px; transition: 0.3s; }
.terminal-nav-links a:hover {
    color: var(--accent-red); text-shadow: 0 0 10px rgba(255, 42, 42, 0.8);
    border-bottom-color: rgba(255, 42, 42, 0.3); padding-left: 10px;
    letter-spacing: 5px; background: rgba(255, 42, 42, 0.1);
    box-shadow: -10px 0 0 var(--accent-red);
}
.terminal-nav-links a:hover span { color: var(--accent-red); }

.terminal-footer { margin-top: auto; padding-top: 20px; }
.loading-bar { width: 100%; height: 4px; background: #111; margin-bottom: 15px; overflow: hidden; }
.bar-progress { height: 100%; width: 0%; background: var(--accent-red); box-shadow: 0 0 10px var(--accent-red); }
.off-canvas-terminal.active .bar-progress { width: 100%; transition: width 2s ease-in-out; }

.terminal-status { border-top: 1px solid #222; padding-top: 15px; font-family: monospace; color: #555; font-size: 0.9rem; }
.glitch-text { position: relative; display: inline-block; font-weight: bold; }
.glitch-text:hover { animation: navGlitch 0.3s infinite; color: #fff !important; }

/* =========================================
   RESPONSIVE DESIGN & MOBILE NAVIGATION
   ========================================= */
@media (min-width: 901px) {
    .hamburger { display: none !important; }
}

@media (max-width: 900px) {
    .main-grid { grid-template-columns: 1fr; }
    .about-section { flex-direction: column; text-align: center; }
    .about-image-wrapper { margin-top: 20px; }
    .desktop-terminal-btn { display: none; }
    .hamburger { display: flex; }
}

@media (max-width: 600px) {
    .news-grid, .roster-grid, .bounty-grid, .arsenal-grid { grid-template-columns: 1fr; }
    .games-grid { grid-template-columns: 1fr 1fr; }
    
    .main-nav { justify-content: flex-end; padding: 15px 25px; }
    
    .hamburger.active span:nth-child(1) { transform: translateY(9px) rotate(45deg); background-color: #fff; }
    .hamburger.active span:nth-child(2) { opacity: 0; }
    .hamburger.active span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); background-color: #fff; }

    .footer-links { flex-direction: column; gap: 10px; }
    .recruitment-section h2 { font-size: 1.8rem; }
    .modal-content { padding: 25px 15px; }
    
    .scroll-top-btn { bottom: 15px; right: 15px; width: 40px; height: 40px; font-size: 1rem; }
    
    .off-canvas-terminal { right: -100%; } 
}

@media (max-width: 400px) {
    .games-grid { grid-template-columns: 1fr; }
}