@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;700;900&display=swap');

*:not(i) { font-family: 'Montserrat', sans-serif !important; }

:root {
    --cs-orange: #e67e22; /* T-Side Orange */
    --cs-blue: #5dade2;   /* CT-Side Blau */
    --header-glass: rgba(0, 0, 0, 0.7);
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1);
}

body {
    background: #080808; /* Noch dunkler für den Taktik-Vibe */
    color: #fff;
    margin: 0;
    padding-bottom: 50px;
}

/* --- PARTIKEL (ASCHE & FUNKEN) --- */
#particle-container {
    position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
    z-index: -1; pointer-events: none; overflow: hidden;
}
.particle { position: absolute; bottom: -20px; border-radius: 50%; animation: floatUp linear infinite; }
@keyframes floatUp {
    0% { transform: translateY(0); opacity: 0; }
    10% { opacity: 0.8; }
    90% { opacity: 0.5; }
    100% { transform: translateY(-110vh); opacity: 0; }
}

/* --- HEADER --- */
.portal-header { position: sticky; top: 20px; z-index: 1000; width: 95%; max-width: 1400px; margin: 0 auto 40px; }
.nav-container {
    background: var(--header-glass); backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 100px;
    display: flex; justify-content: space-between; align-items: center;
    padding: 10px 40px; box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6), 0 0 20px rgba(230, 126, 34, 0.1);
}
.nav-group { display: flex; gap: 25px; flex: 1; }
.side-right { justify-content: flex-end; }
.main-logo-area { position: relative; padding: 0 40px; }
.logo-text { font-weight: 900; font-size: 1.6rem; letter-spacing: 5px; color: #fff; text-decoration: none; position: relative; z-index: 2; transition: 0.3s; }
.logo-separator { color: var(--cs-orange); }
.logo-glow {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 120%; height: 150%; background: radial-gradient(circle, rgba(230, 126, 34, 0.2) 0%, transparent 70%); z-index: 1;
}
.nav-group a {
    text-decoration: none !important; color: rgba(255, 255, 255, 0.6);
    font-size: 0.75rem; font-weight: 700; letter-spacing: 2px; transition: 0.4s; position: relative; padding: 5px 0;
}
.nav-group a::after {
    content: ''; position: absolute; bottom: -5px; left: 50%; width: 0; height: 2px;
    background: var(--cs-orange); box-shadow: 0 0 10px var(--cs-orange); transition: 0.4s; transform: translateX(-50%);
}
.nav-group a:hover, .nav-group a.active { color: #fff !important; text-shadow: 0 0 15px rgba(255, 255, 255, 0.5); }
.nav-group a:hover::after, .nav-group a.active::after { width: 100%; }

.system-status { text-align: center; font-size: 0.5rem; color: rgba(255, 255, 255, 0.3); margin-top: 10px; letter-spacing: 3px; display: flex; justify-content: center; align-items: center; gap: 10px; }
.status-dot { width: 6px; height: 6px; background: var(--cs-orange); border-radius: 50%; box-shadow: 0 0 8px var(--cs-orange); animation: pulse 2s infinite; }
@keyframes pulse { 0% { opacity: 0.4; } 50% { opacity: 1; } 100% { opacity: 0.4; } }

/* --- CS2 SCANNER UI --- */
.scanner-container { max-width: 800px; margin: 60px auto 0; padding: 20px; text-align: center; }
.scanner-title { font-size: 2.5rem; font-weight: 900; letter-spacing: 4px; margin-bottom: 10px; text-transform: uppercase; }
.scanner-title span { color: var(--cs-orange); }
.scanner-subtitle { color: #aaa; font-size: 0.9rem; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 40px; }

.search-box {
    display: flex;
    background: rgba(0,0,0,0.6);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    padding: 10px 10px 10px 30px;
    backdrop-filter: blur(10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.5);
    transition: 0.3s;
}
.search-box:focus-within { border-color: var(--cs-orange); box-shadow: 0 15px 35px rgba(0,0,0,0.5), 0 0 20px rgba(230, 126, 34, 0.2); }
.search-input { flex: 1; background: transparent; border: none; color: #fff; font-size: 1.1rem; outline: none; }
.search-input::placeholder { color: rgba(255,255,255,0.3); }
.search-btn {
    background: var(--cs-orange); color: #000; border: none; border-radius: 40px;
    padding: 15px 40px; font-weight: 900; font-size: 1rem; cursor: pointer; text-transform: uppercase; transition: 0.3s;
}
.search-btn:hover { background: var(--cs-blue); color: #fff; box-shadow: 0 0 15px var(--cs-blue); }

/* --- DOSSIER RESULTAT (DUMMY) --- */
.result-card {
    margin-top: 50px; background: var(--glass-bg); border: 1px solid var(--glass-border); border-top: 4px solid var(--cs-blue);
    border-radius: 20px; padding: 40px; text-align: left; backdrop-filter: blur(15px);
    display: flex; gap: 30px; align-items: center; box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.avatar-box img { width: 120px; height: 120px; border-radius: 15px; border: 2px solid rgba(255,255,255,0.1); }
.player-info h2 { margin: 0 0 5px 0; font-size: 2rem; }
.vac-status { display: inline-block; padding: 5px 12px; background: rgba(46, 204, 113, 0.1); color: #2ecc71; border: 1px solid #2ecc71; border-radius: 5px; font-size: 0.8rem; font-weight: bold; margin-bottom: 20px; }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; width: 100%; }
.stat-box { background: rgba(0,0,0,0.4); padding: 15px; border-radius: 10px; text-align: center; }
.stat-box .value { font-size: 1.5rem; font-weight: 900; color: var(--cs-orange); }
.stat-box .label { font-size: 0.75rem; color: #888; text-transform: uppercase; letter-spacing: 1px; margin-top: 5px; }