/* --- TACTICAL CORE SETTINGS --- */
:root {
    --bf-blue: #0084ff;
    --bf-orange: #ff4e00;
    --bf-dark: #020406;
    --bf-box-bg: rgba(10, 12, 16, 0.95);
    --bf-content-bg: rgba(6, 8, 12, 0.92);
}

body { 
    font-family: 'Rajdhani', sans-serif; 
    margin: 0; 
    background: var(--bf-dark);
    background-image: radial-gradient(circle at 50% 50%, #0a121d 0%, #020406 100%);
    background-attachment: fixed;
    color: #fff;
    overflow-x: hidden;
}

/* --- GRID BACKGROUND EFFECT --- */
body::before {
    content: "";
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: 
        linear-gradient(rgba(0, 132, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 132, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -1;
    pointer-events: none;
}

/* --- NAVIGATION MASTER (HUD LOOK) --- */
.master-nav {
    background: rgba(0, 0, 0, 0.95) !important;
    border-bottom: 2px solid var(--bf-blue);
    padding: 10px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.8);
    animation: hudNavSlide 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes hudNavSlide {
    0% { transform: translateY(-100%); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

.logo-area .prefix { color: #fff; font-weight: 900; font-size: 1.6rem; }
.logo-area .project-name { 
    color: var(--bf-blue); 
    font-weight: 900; 
    font-size: 1.6rem; 
    text-shadow: 0 0 12px var(--bf-blue); 
}
.status-line { 
    font-size: 0.65rem; 
    color: var(--bf-blue); 
    letter-spacing: 2px; 
    font-weight: 800; 
    margin-top: -5px; 
}

.navbar-nav .nav-link {
    color: #fff !important;
    font-weight: 800;
    text-transform: uppercase;
    padding: 10px 15px !important;
    transition: 0.3s;
}

.navbar-nav .nav-link:hover {
    color: var(--bf-blue) !important;
    text-shadow: 0 0 10px var(--bf-blue);
}

/* --- HUD SLIDER MIT SPITZE --- */
.bf-slider { 
    height: 500px; 
    background-size: cover; 
    background-position: center; 
    position: relative; 
    overflow: hidden; 
    border-bottom: 4px solid var(--bf-orange);
}

.slider-spitze {
    position: absolute;
    bottom: 50px;
    left: 0;
    background: rgba(0,0,0,0.85);
    padding: 25px 60px 25px 30px;
    border-left: 6px solid var(--bf-blue);
    clip-path: polygon(0 0, 92% 0, 100% 100%, 0 100%);
    z-index: 10;
    opacity: 0;
    transform: translateX(-100px);
    animation: slideFromLeft 0.8s ease-out forwards;
    animation-delay: 0.5s;
}

@keyframes slideFromLeft {
    to { opacity: 1; transform: translateX(0); }
}

.slider-spitze h1 { font-size: 2.5rem; font-weight: 900; margin: 0; text-shadow: 0 0 10px var(--bf-blue); }
.tactical-tag { color: var(--bf-blue); font-weight: 800; font-size: 0.8rem; margin-top: 5px; }

/* --- CONTENT & SNAKE BOXEN --- */
.snake-box { 
    position: relative; 
    background: var(--bf-box-bg); 
    padding: 2px; 
    overflow: hidden; 
    border: 1px solid rgba(0, 132, 255, 0.2); 
}

.snake-border {
    position: absolute;
    width: 300%;
    height: 300%;
    top: -100%;
    left: -100%;
    background: conic-gradient(from 0deg, transparent 85%, var(--bf-blue) 100%);
    animation: rotate 15s linear infinite;
    z-index: 1;
}

@keyframes rotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.inner-content { 
    position: relative; 
    background: #04060a; 
    padding: 25px; 
    z-index: 2; 
}

/* Zentrierter Content */
.content-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.content-body img {
    margin: 20px auto;
    border: 1px solid var(--bf-blue);
    box-shadow: 0 0 15px rgba(0, 132, 255, 0.2);
    max-width: 90%;
}

/* --- SIDEBAR --- */
.sidebar-header {
    background: var(--bf-blue);
    color: #000;
    font-weight: 900;
    padding: 10px;
    clip-path: polygon(0 0, 100% 0, 92% 100%, 0 100%);
    letter-spacing: 2px;
    margin-bottom: 10px;
}

/* --- COMM SIDEBAR (RECHTS) --- */
.comm-sidebar { position: fixed; right: 0; top: 30%; z-index: 1060; }
.comm-btn {
    background: var(--bf-blue); color: #000; padding: 12px 20px; margin-bottom: 5px; width: 160px; font-weight: 900; 
    transform: translateX(110px); transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%); text-align: left; border: none;
}
.comm-btn:hover { transform: translateX(0); background: #fff; }
.comm-btn.ts { background: var(--bf-orange); }

/* --- FOOTER COMPACT --- */
.master-footer { 
    background: #000; 
    border-top: 2px solid var(--bf-blue); 
    padding: 20px 0; 
    margin-top: auto;
}
.logo-footer { font-weight: 900; color: var(--bf-blue); letter-spacing: 2px; font-size: 1.2rem; }
.footer-link { color: rgba(255,255,255,0.5); text-decoration: none; font-weight: 700; margin: 0 10px; font-size: 0.8rem; text-transform: uppercase; }
.footer-link:hover { color: var(--bf-blue); }

/* --- UTILS --- */
.blink { display: inline-block; width: 8px; height: 8px; background: #ff0000; border-radius: 50%; animation: blinker 1s linear infinite; margin-right: 5px; }
@keyframes blinker { 50% { opacity: 0; } }

/* --- MASTER NAV STYLING --- */
.master-nav {
    background: rgba(0, 0, 0, 0.95) !important;
    border-bottom: 2px solid var(--bf-blue);
    padding: 12px 0;
    z-index: 1060;
}

/* Logo-Optik: Kein Schatten, nur giftiger Glow */
.logo-area .prefix { 
    color: #fff; 
    font-weight: 900; 
    font-size: 1.6rem; 
}

.logo-area .project-name { 
    color: var(--bf-blue); 
    font-weight: 900; 
    font-size: 1.6rem; 
    text-shadow: 0 0 12px var(--bf-blue); 
}

.status-line { 
    font-size: 0.65rem; 
    color: var(--bf-blue); 
    letter-spacing: 2px; 
    font-weight: 800; 
    margin-top: -5px; 
    opacity: 0.8;
}

/* Nav-Links mit HUD-Klammern */
.tactical-item .nav-link {
    color: #fff !important;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 18px !important;
    transition: 0.3s ease;
}

.tactical-item .nav-link span {
    color: var(--bf-blue);
    opacity: 0; /* Klammern im Normalzustand unsichtbar */
    transition: 0.3s;
}

.tactical-item .nav-link:hover {
    color: var(--bf-blue) !important;
    text-shadow: 0 0 10px var(--bf-blue);
}

.tactical-item .nav-link:hover span {
    opacity: 1; /* Klammern erscheinen beim Hover */
}

/* Fix für Mobile */
@media (max-width: 991px) {
    .navbar-collapse {
        background: #000;
        padding: 20px;
        border: 1px solid var(--bf-blue);
        margin-top: 15px;
    }
}

/* --- NAVIGATION MASTER --- */
.master-nav {
    background: rgba(0, 0, 0, 0.95) !important;
    border-bottom: 2px solid var(--bf-blue);
    padding: 10px 0;
}

.logo-area .prefix { color: #fff; font-weight: 900; font-size: 1.5rem; }
.logo-area .project-name { 
    color: var(--bf-blue); 
    font-weight: 900; 
    font-size: 1.5rem; 
    text-shadow: 0 0 10px var(--bf-blue); 
}
.status-line { 
    font-size: 0.6rem; 
    color: var(--bf-blue); 
    letter-spacing: 2px; 
    font-weight: 800; 
    margin-top: -5px; 
    opacity: 0.7;
}

.tactical-item .nav-link {
    color: #fff !important;
    font-weight: 800;
    text-transform: uppercase;
    padding: 10px 15px !important;
    font-size: 0.9rem;
}

.tactical-item .nav-link span {
    color: var(--bf-blue);
    transition: 0.3s;
}

.tactical-item .nav-link:hover {
    color: var(--bf-blue) !important;
    text-shadow: 0 0 8px var(--bf-blue);
}

/* --- FOOTER COMPACT --- */
.master-footer {
    background: #000;
    border-top: 2px solid var(--bf-blue);
}

.logo-footer { font-weight: 900; color: var(--bf-blue); letter-spacing: 2px; }
.footer-link {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-weight: 700;
    margin: 0 10px;
    font-size: 0.8rem;
    transition: 0.3s;
}

.footer-link:hover { color: var(--bf-blue); }

/* --- MASTER NAVIGATION & LOGO --- */
.master-nav { background: rgba(0, 0, 0, 0.95) !important; border-bottom: 2px solid var(--bf-blue); padding: 10px 0; }
.logo-area .prefix { color: #fff; font-weight: 900; font-size: 1.5rem; }
.logo-area .project-name { color: var(--bf-blue); font-weight: 900; font-size: 1.5rem; text-shadow: 0 0 10px var(--bf-blue); }
.status-line { font-size: 0.6rem; color: var(--bf-blue); letter-spacing: 2px; font-weight: 800; margin-top: -5px; opacity: 0.7; }

/* --- SLIDER SPITZE --- */
.slider-spitze {
    position: absolute;
    bottom: 50px;
    left: 0;
    background: rgba(0, 0, 0, 0.85);
    padding: 25px 60px 25px 30px;
    border-left: 6px solid var(--bf-blue);
    clip-path: polygon(0 0, 92% 0, 100% 100%, 0 100%);
}

/* --- BOXEN & CONTENT --- */
.inner-content { background: rgba(4, 6, 10, 0.95); position: relative; z-index: 5; }
.sidebar-header { background: var(--bf-blue); color: #000; font-weight: 900; padding: 10px; clip-path: polygon(0 0, 100% 0, 92% 100%, 0 100%); }

/* --- FOOTER COMPACT --- */
.master-footer { background: #000; border-top: 2px solid var(--bf-blue); padding: 10px 0; }
.logo-footer { font-weight: 900; color: var(--bf-blue); letter-spacing: 2px; font-size: 1.1rem; }
.footer-link { color: rgba(255, 255, 255, 0.5); text-decoration: none; font-weight: 700; margin: 0 10px; font-size: 0.8rem; transition: 0.3s; }
.footer-link:hover { color: var(--bf-blue); }

/* --- COMM SIDEBAR (Rechts) --- */
.comm-sidebar {
    position: fixed;
    right: 0;
    top: 30%;
    z-index: 1070;
    display: flex;
    flex-direction: column;
}

.comm-btn {
    background: var(--bf-blue);
    color: #000 !important;
    text-decoration: none !important;
    padding: 12px 20px;
    margin-bottom: 5px;
    font-weight: 900;
    width: 170px;
    transform: translateX(120px);
    transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
    display: flex;
    align-items: center;
}

.comm-btn:hover {
    transform: translateX(0);
    background: #fff;
    color: #000 !important;
}

.comm-btn.ts { background: #ff4e00; } /* BF Orange für TS */
.comm-btn i { margin-right: 15px; font-size: 1.3rem; }

/* --- SIDEBAR BOXEN RECHTS --- */
.sidebar-header {
    background: var(--bf-blue);
    color: #000;
    font-weight: 900;
    padding: 10px 15px;
    clip-path: polygon(0 0, 100% 0, 92% 100%, 0 100%);
    margin-bottom: 5px;
    letter-spacing: 2px;
}

/* --- RECHTE MENÜ-LINKS --- */
.inner-content ul { list-style: none; padding: 0; margin: 0; }
.inner-content ul li { margin-bottom: 4px; }
.inner-content ul li a {
    display: block;
    padding: 10px 15px;
    color: #fff;
    text-decoration: none;
    background: rgba(255,255,255,0.05);
    border-left: 3px solid transparent;
    transition: 0.3s;
}
.inner-content ul li a:hover {
    background: rgba(0, 132, 255, 0.15);
    border-left: 3px solid var(--bf-blue);
    color: var(--bf-blue);
}
/* --- NAVIGATION CONTAINER --- */
.master-nav {
    background: rgba(0, 0, 0, 0.95);
    border-bottom: 2px solid var(--bf-blue);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1060;
}

.top-menu-list ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 25px;
}

.top-menu-list ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: 0.3s;
}

.top-menu-list ul li a:hover {
    color: var(--bf-blue);
    text-shadow: 0 0 10px var(--bf-blue);
}

/* --- LOGIN BUTTON LOOK --- */
.btn-login-header {
    background: transparent;
    border: 1px solid var(--bf-blue);
    color: var(--bf-blue);
    font-weight: 900;
    letter-spacing: 2px;
    transition: 0.3s;
}

.btn-login-header:hover {
    background: var(--bf-blue);
    color: #000;
    box-shadow: 0 0 15px var(--bf-blue);
}

/* Mobile Menü Logik */
@media (max-width: 991px) {
    .top-menu-list {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #000;
        padding: 20px;
        border-bottom: 2px solid var(--bf-blue);
    }
    .top-menu-list.show { display: block; }
    .top-menu-list ul { flex-direction: column; gap: 15px; }
}

/* --- FORUM & MODULE WIDTH FIX --- */
.content-wrapper-fix table, 
.content-wrapper-fix .table {
    width: 100% !important;
    margin-bottom: 1rem;
    background-color: transparent;
}

/* Verhindert das "Zusammenquetschen" auf Unterseiten */
.content-wrapper-fix > div {
    width: 100% !important;
    max-width: 100% !important;
}

/* Forum spezifische Anpassung für bessere Lesbarkeit im BF-Look */
.content-wrapper-fix thead th {
    background: rgba(0, 132, 255, 0.1) !important;
    color: var(--bf-blue) !important;
    border-bottom: 2px solid var(--bf-blue) !important;
    text-transform: uppercase;
}

.content-wrapper-fix td {
    border-color: rgba(255, 255, 255, 0.05) !important;
    color: #fff !important;
}

/* --- TACTICAL NAVIGATION UPGRADE --- */
.master-nav {
    background: rgba(2, 4, 6, 0.85) !important;
    backdrop-filter: blur(15px); /* Moderner Glass-Effekt */
    border-bottom: 2px solid var(--bf-blue);
    padding: 12px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: all 0.4s ease;
}

/* Logo Animation */
.tactical-logo .logo-top {
    color: #fff;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 900;
    font-size: 1.8rem;
    line-height: 1;
    transition: 0.3s;
}

.tactical-logo .logo-bottom {
    color: var(--bf-blue);
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.6rem;
    letter-spacing: 4px;
    font-weight: 800;
    text-shadow: 0 0 5px var(--bf-blue);
}

.tactical-logo:hover .logo-top {
    text-shadow: 0 0 15px #fff;
    letter-spacing: 1px;
}

/* Menü-Links Animation */
.nav-links-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 30px;
}

.nav-links-list li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none !important;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.95rem;
    letter-spacing: 1px;
    position: relative;
    padding: 5px 0;
    transition: 0.3s cubic-bezier(0.17, 0.67, 0.83, 0.67);
}

.nav-links-list li a::before {
    content: '[';
    margin-right: 5px;
    color: var(--bf-blue);
    opacity: 0;
    transform: translateX(10px);
    transition: 0.3s;
}

.nav-links-list li a::after {
    content: ']';
    margin-left: 5px;
    color: var(--bf-blue);
    opacity: 0;
    transform: translateX(-10px);
    transition: 0.3s;
}

.nav-links-list li a:hover {
    color: #fff;
    text-shadow: 0 0 10px var(--bf-blue);
}

.nav-links-list li a:hover::before,
.nav-links-list li a:hover::after {
    opacity: 1;
    transform: translateX(0);
}

/* Login Button Upgrade */
.btn-login-header {
    position: relative;
    border: 1px solid rgba(0, 132, 255, 0.5);
    color: var(--bf-blue);
    padding: 8px 30px;
    cursor: pointer;
    font-weight: 900;
    letter-spacing: 2px;
    overflow: hidden;
    transition: 0.3s;
}

.btn-login-header:hover {
    background: var(--bf-blue);
    color: #000;
    box-shadow: 0 0 20px var(--bf-blue);
}

.btn-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #fff;
    transform: scaleX(0);
    transition: 0.3s;
}

.btn-login-header:hover .btn-line {
    transform: scaleX(1);
}

/* Mobile Navigation Fix */
@media (max-width: 991px) {
    .top-menu-list {
        display: none; /* Standardmäßig aus */
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(2, 4, 6, 0.98);
        border-bottom: 2px solid var(--bf-blue);
        padding: 30px;
        z-index: 999;
    }

    .show-mobile {
        display: block !important;
        animation: slideDownNav 0.4s ease-out;
    }

    .nav-links-list {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .nav-links-list li a {
        font-size: 1.2rem;
        display: block;
        padding: 10px;
    }

    @keyframes slideDownNav {
        from { transform: translateY(-20px); opacity: 0; }
        to { transform: translateY(0); opacity: 1; }
    }
}

/* --- LOGIN BUTTON UPGRADE (BLAU) --- */
.tactical-login-btn {
    background: transparent;
    border: 2px solid var(--bf-blue);
    padding: 8px 25px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: 0.3s;
    clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%);
}

.login-inner {
    color: var(--bf-blue);
    font-weight: 900;
    letter-spacing: 2px;
    font-family: 'Rajdhani', sans-serif;
}

.tactical-login-btn:hover {
    background: var(--bf-blue);
    box-shadow: 0 0 20px var(--bf-blue);
}

.tactical-login-btn:hover .login-inner {
    color: #000;
}

/* --- NAVIGATION FIX (KEIN WACKELN) --- */
.brand-stacked { display: inline-block; vertical-align: middle; }
.top-menu-list { display: flex; align-items: center; }

/* --- VIDEO RESPONSIVE FIX --- */
.responsive-video-fix iframe, 
.responsive-video-fix video, 
.responsive-video-fix object, 
.responsive-video-fix embed {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 16 / 9;
    border: 1px solid var(--bf-blue);
    box-shadow: 0 0 15px rgba(0, 132, 255, 0.2);
}

/* --- MISSION STATUS HEADER --- */
.mission-status-bar {
    background: rgba(0, 132, 255, 0.05);
    border-left: 4px solid var(--bf-blue);
    padding: 10px 15px;
    font-weight: 800;
    font-size: 0.85rem;
    color: var(--bf-blue);
    letter-spacing: 1px;
}

.blink-dot {
    height: 8px; width: 8px; background: var(--bf-blue);
    display: inline-block; border-radius: 50%;
    margin-right: 10px; animation: blink 1s infinite;
}
@keyframes blink { 50% { opacity: 0; } }

/* --- FOOTER STYLING --- */
.bf-footer {
    background: #000;
    padding: 80px 0 40px;
    border-top: 4px solid var(--bf-blue);
    margin-top: 100px;
    width: 100%;
}

.footer-hover-link {
    transition: 0.3s ease;
    opacity: 0.6;
}

.footer-hover-link:hover {
    opacity: 1;
    color: var(--bf-blue) !important;
    padding-left: 5px; /* Kleiner technischer Move beim Hover */
}

.footer-hover-icon {
    transition: 0.3s ease;
}

.footer-hover-icon:hover {
    color: var(--bf-blue) !important;
    transform: translateY(-3px);
}
/* Färbt alle Font-Awesome Icons in dein Battlefield-Blau */
.fa-solid, .fas, .fab, .fa-brands, .fa-regular {
    color: var(--bf-blue) !important;
    transition: 0.3s; /* Damit es beim Hover weich aussieht */
}

/* Optional: Icons leuchten lassen (Glow-Effekt) */
.fa-solid, .fas, .fab {
    filter: drop-shadow(0 0 5px rgba(0, 132, 255, 0.5));
}

/* Hover-Effekt: Wenn du mit der Maus drüberfährst, werden sie weiß oder orange */
.fa-solid:hover, .fas:hover, .fab:hover {
    color: #fff !important;
    filter: drop-shadow(0 0 10px var(--bf-blue));
}

<style>
    /* --- FORUM HUD OPTIMIERUNG --- */
    
    /* Hintergrund der Foren-Kategorien und Tabellen säubern */
    .forum-category-header, .table thead th {
        background: rgba(0, 132, 255, 0.1) !important;
        border-bottom: 2px solid var(--bf-blue) !important;
        color: var(--bf-blue) !important;
        text-transform: uppercase;
        font-weight: 900;
        letter-spacing: 1px;
    }

    .table {
        background: transparent !important;
        color: #fff !important;
        border-collapse: separate;
        border-spacing: 0 10px; /* Abstand zwischen den Reihen */
    }

    .table td {
        background: #06080c !important; /* HUD Schwarz */
        border: 1px solid rgba(0, 132, 255, 0.1) !important;
        vertical-align: middle;
        padding: 15px !important;
        transition: 0.3s;
    }

    /* Hover-Effekt für Foren-Reihen */
    .table tr:hover td {
        background: #0a0c12 !important;
        border-color: var(--bf-blue) !important;
        box-shadow: inset 0 0 15px rgba(0, 132, 255, 0.05);
    }

    /* Foren-Links */
    .table a {
        color: #fff !important;
        font-weight: 700;
        text-decoration: none;
        transition: 0.3s;
    }

    .table a:hover {
        color: var(--bf-blue) !important;
        text-shadow: 0 0 8px var(--bf-blue);
    }

    /* Statistische Zahlen (Beiträge/Themen) */
    .table .text-muted, .forum-stats {
        color: var(--bf-blue) !important;
        font-weight: 800;
        opacity: 0.8;
    }

    /* Foren-Icons */
    .forum-icon {
        color: var(--bf-blue) !important;
        font-size: 1.5rem;
        filter: drop-shadow(0 0 5px var(--bf-blue));
    }

    /* Buttons im Forum (Neues Thema etc.) */
    .btn-primary, .btn-default {
        background: rgba(0, 132, 255, 0.1) !important;
        border: 1px solid var(--bf-blue) !important;
        color: #fff !important;
        border-radius: 0 !important;
        text-transform: uppercase;
        font-weight: 800;
        transition: 0.4s;
    }

    .btn-primary:hover {
        background: var(--bf-blue) !important;
        color: #000 !important;
        box-shadow: 0 0 15px var(--bf-blue);
    }

    /* Suchfeld und Inputs im Forum */
    .forum-search input, .form-control {
        background: #0a0c10 !important;
        border: 1px solid rgba(0, 132, 255, 0.2) !important;
        color: #fff !important;
        border-radius: 0 !important;
    }
	
	/* --- FORUM HUD INTEGRATION --- */

/* Tabellen-Kopf (Kategorien) */
.forum-category-header, 
.table thead th {
    background: rgba(0, 132, 255, 0.15) !important;
    border-bottom: 2px solid var(--bf-blue) !important;
    color: var(--bf-blue) !important;
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: 2px;
}

/* Foren-Listen Reinigung */
.table td {
    background: #06080c !important; /* HUD Schwarz */
    border: 1px solid rgba(0, 132, 255, 0.1) !important;
    color: #fff !important;
    padding: 15px !important;
    transition: 0.3s ease;
}

/* Hover-Effekt für die Foren-Zeilen */
.table tr:hover td {
    background: #0a0c14 !important;
    border-color: var(--bf-blue) !important;
    box-shadow: inset 0 0 15px rgba(0, 132, 255, 0.1);
}

/* Foren-Links (Themen & Titel) */
.table a {
    color: #fff !important;
    font-weight: 700;
    text-decoration: none !important;
    transition: 0.2s;
}

.table a:hover {
    color: var(--bf-blue) !important;
    text-shadow: 0 0 8px var(--bf-blue);
}

/* Statistiken (Antworten / Themen) */
.forum-stats-count, 
.text-muted {
    color: var(--bf-blue) !important;
    font-weight: 800;
}

/* Breadcrumbs (Der Pfad oben: Forum > Kategorie) */
.breadcrumb {
    background: rgba(0, 132, 255, 0.05) !important;
    border-left: 4px solid var(--bf-blue);
    border-radius: 0;
    padding: 10px 20px;
    text-transform: uppercase;
    font-weight: 700;
}

.breadcrumb-item a { color: var(--bf-blue) !important; }
.breadcrumb-item.active { color: #fff !important; opacity: 0.5; }

/* Buttons im Forum (Neues Thema, Antworten) */
.btn-primary, .btn-default {
    background: rgba(0, 132, 255, 0.1) !important;
    border: 1px solid var(--bf-blue) !important;
    color: #fff !important;
    border-radius: 0 !important;
    font-weight: 800;
    text-transform: uppercase;
}

.btn-primary:hover {
    background: var(--bf-blue) !important;
    color: #000 !important;
    box-shadow: 0 0 15px var(--bf-blue);
}
	
/* --- ILCH FORUM HUD OVERWRITE --- */

/* Der Rahmen um die Foren-Container */
.ilch-border {
    border: 1px solid rgba(0, 132, 255, 0.2) !important;
    background: #06080c !important;
}

/* Foren-Köpfe (Kategorien) - Battlefield Blau */
.ilch-head, .ilch-head-dark {
    background-color: rgba(0, 132, 255, 0.15) !important;
    color: var(--bf-blue) !important;
    border-bottom: 2px solid var(--bf-blue) !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
}

.ilch-head a, .ilch-head-dark a {
    color: var(--bf-blue) !important;
    text-decoration: none !important;
}

.ilch-head a:hover, .ilch-head-dark a:hover {
    color: #fff !important;
    text-shadow: 0 0 10px var(--bf-blue);
}

/* Foren-Hintergrund (Die Zeilen) - KEIN WEISS / KEIN GRAU */
.ilch-bg {
    background-color: #04060a !important; /* HUD Schwarz */
    color: #fff !important;
}

/* Hover-Effekt für die Foren-Zeilen (Huawei/Twist Look) */
.ilch-bg--hover {
    background-color: #06080c !important;
    transition: 0.3s ease-in-out !important;
}

.ilch-bg--hover:hover {
    background-color: #0a0c14 !important; /* Leichtes Aufhellen beim Drüberfahren */
    border-color: var(--bf-blue) !important;
    box-shadow: inset 0 0 15px rgba(0, 132, 255, 0.1) !important;
}

/* Trennlinien innerhalb des Forums */
.ilch-devider {
    border-color: rgba(0, 132, 255, 0.1) !important;
}

/* Foren-Links */
.ilch-link {
    color: #fff !important;
    font-weight: 700 !important;
    transition: 0.3s !important;
}

.ilch-link:hover {
    color: var(--bf-blue) !important;
    text-shadow: 0 0 5px var(--bf-blue);
}

/* Rote Links (z.B. für geschlossene Themen oder wichtige Marker) */
.ilch-link-red {
    color: var(--bf-orange) !important; /* Nutzen wir dein BF-Orange statt Standard-Rot */
    font-weight: 900 !important;
}

/* Zeitstempel-Bereich Fix */
.ilch-date {
    min-width: 210px;
    color: rgba(255, 255, 255, 0.5) !important;
    font-size: 0.85rem !important;
}