/* Deadly Fear shared header/layout core - externalized for browser caching. */
body {
            margin: 0;
            padding: 0;
            background: #06070a;
            color: #fff;
            font-family: 'Courier New', Courier, monospace;
        }

        /* 1. FIXED FLUID GRAPHIC BANNER CONTAINER */
        .mcc-header-container {
            width: 100%;
            min-height: 120px;
            background: #0d0f14;
            background-size: cover; /* Forces the banner image to stretch and scale seamlessly across all screen sizes */
            border-bottom: 2px solid #ff333333;
            box-sizing: border-box;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        /* Fallback Text style overlay layer (Remains hidden if background image loads fully) */
        .mcc-banner-text {
            font-size: 30px;
            font-weight: bold;
            letter-spacing: 3px;
            color: #ffffff;
            text-transform: uppercase;
            text-shadow: 0 0 8px #ff3333, 0 0 15px #ff3333;
            display: none; /* Set to block if you want text layered on top of the image */
        }

        /* 2. DUAL COLUMN WRAPPER MATRIX */
        .mcc-layout-wrapper {
            display: flex;
            max-width: 1200px;
            margin: 0 auto;
            min-height: calc(100vh - 200px);
        }

        /* 3. CLASSIC LEFT NAVIGATION COLUMN */
        .mcc-sidebar-tray {
            width: 260px;
            min-width: 260px;
            background: #0d0f14;
            border-right: 1px solid #2a0808;
            padding: 15px;
            box-sizing: border-box;
        }

        /* 4. MAIN CENTRAL CONTENT FRAME */
        .mcc-content-frame {
            flex: 1;
            background: #06070a;
            padding: 25px;
            box-sizing: border-box;
            overflow-y: auto;
        }

        /* COMPONENT PANEL CARD BOX CARDS */
        .mcc-panel-card {
            background: #0d0f14;
            border: 1px solid #2a0808;
            border-radius: 4px;
            padding: 20px;
            margin-bottom: 20px;
        }

        .alert {
            padding: 12px;
            margin-bottom: 20px;
            border-radius: 4px;
            font-weight: bold;
            font-size: 13px;
            text-transform: uppercase;
        }
        .alert.success { background: #1f441f; border: 1px solid #44ff4444; color: #44ff44; }
        .alert.error { background: #5a0c0c; border: 1px solid #ff333344; color: #ff3333; }
        
        /* SIDEBAR HUD TYPOGRAPHY RULES */
        .hud-data-line { font-size: 12px; margin-bottom: 6px; color: #9da5b4; letter-spacing: 0.5px; text-transform: uppercase; text-align: left; }
        .hud-label-text { font-weight: bold; color: #555; }
        .hud-value-username { color: #ff3333; font-weight: bold; }
        .hud-value-money { color: #44ff44; font-weight: bold; }
        .hud-value-level { color: #ffaa00; font-weight: bold; }
        .hud-bar-block { margin-top: 10px; margin-bottom: 4px; }
        .mcc-sidebar-tray nav a { display: block; color: #aaa; text-decoration: none; padding: 6px 8px; font-size: 12px; text-align: left; }
        .mcc-sidebar-tray nav a:hover { background: #161920; color: #fff; }
        .mcc-sidebar-tray nav a.active-link { color: #ff3333 !important; font-weight: bold; }
        .sidebar-player-link { display: flex !important; justify-content: space-between !important; align-items: center !important; text-decoration: none; color: #666 !important; border-bottom: 1px solid #161920; }
        .df-mobile-toolbar { display: none; }
        .df-staff-restricted-banner {
            max-width: 1200px; margin: 10px auto 0; padding: 11px 14px; box-sizing: border-box;
            border: 1px solid #7d5424; border-left: 4px solid #f0a13a; border-radius: 8px;
            background: linear-gradient(90deg, rgba(101,58,15,.34), rgba(24,18,13,.92)); color: #f6d69a;
            font: 700 12px/1.45 Arial,Helvetica,sans-serif; letter-spacing: .15px;
        }
        .df-staff-restricted-banner strong { color: #fff; }
        .df-staff-restricted-banner a { color: #ffd27a; }
        @media (max-width: 760px) {
            .mcc-layout-wrapper { display: block; }
            .mcc-sidebar-tray { width: 100%; min-width: 0; border-right: 0; border-bottom: 1px solid #2a0808; }
            .mcc-content-frame { padding: 15px; }
            .mcc-deadlyfear-sidebar { float: none !important; width: 100% !important; border-right: 0 !important; border-bottom: 2px solid #2a0808; }
        }
