/* Theme: Mystral Magic Evolved - Poudlard RP Edition
   Prometheus Version: 1.6 
*/

/* --- 1. BASE & FOND D'ÉCRAN --- */
body {
    background-image: url('mystral_postal1.jpg') !important; 
    background-color: rgb(7, 10, 15) !important;
    background-repeat: no-repeat !important;
    background-position: center top !important;
    background-attachment: fixed !important;
    background-size: cover !important;
    color: #e0e0e0 !important;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

.wrap {
    background-color: transparent !important;
}

/* --- 2. NAVIGATION MAGIQUE --- */
.navbar-inverse {
    background-color: rgba(10, 15, 25, 0.8) !important;
    backdrop-filter: blur(10px); /* Flou derrière la barre pour un effet premium */
    border-bottom: 2px solid rgba(212, 180, 131, 0.6) !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.navbar-inverse .navbar-nav > li > a {
    color: #d4b483 !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.navbar-inverse .navbar-nav > li > a:hover {
    color: #ffffff !important;
    text-shadow: 0 0 8px rgba(212, 180, 131, 0.8);
    background-color: rgba(212, 180, 131, 0.1) !important;
}

/* --- 3. BLOCS DE CONTENU (Effet Verre/Givré) --- */
.options, .dashboard-widget-small-box, .panel-body, .stat-box, .main-menu-box, .well {
    background: rgba(15, 22, 32, 0.85) !important;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(212, 180, 131, 0.2) !important;
    border-radius: 8px !important; /* Arrondis pour plus de modernité */
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6) !important;
    transition: transform 0.2s ease;
}

/* Petit effet de zoom quand on survole une boite */
.stat-box:hover, .main-menu-box:hover {
    transform: translateY(-3px);
    border-color: rgba(212, 180, 131, 0.5) !important;
}

/* Entêtes des boites */
.panel-header, .stat-box-header {
    background: linear-gradient(90deg, rgba(8, 12, 18, 0.9), rgba(20, 30, 45, 0.9)) !important;
    color: #d4b483 !important;
    font-weight: bold;
    border-bottom: 1px solid rgba(212, 180, 131, 0.3) !important;
    border-radius: 8px 8px 0 0 !important;
}

/* --- 4. BOUTONS & ACTIONS (Le "Cyan" Magique) --- */
.buy-btn, .srv-label, .btn-primary {
    background: linear-gradient(135deg, #6effff 0%, #00a8a8 100%) !important;
    color: #0b111a !important;
    border: none !important;
    border-radius: 5px !important;
    text-transform: uppercase;
    font-weight: 800 !important;
    letter-spacing: 1px;
    box-shadow: 0 0 15px rgba(110, 255, 255, 0.3) !important;
    transition: all 0.4s ease !important;
}

.buy-btn:hover {
    background: #ffffff !important;
    box-shadow: 0 0 25px rgba(110, 255, 255, 0.7) !important;
    transform: scale(1.05);
}

/* --- 5. TYPOGRAPHIE & DÉTAILS --- */
h1, h2, h3, .header {
    color: #d4b483 !important;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 1), 0 0 5px rgba(212, 180, 131, 0.3);
}

/* Barre de progression ou labels de serveurs */
.progress-bar {
    background-color: #d4b483 !important;
}

/* --- 6. FORMULAIRES & TABLEAUX --- */
.form-control {
    background-color: rgba(0, 0, 0, 0.4) !important;
    border: 1px solid rgba(212, 180, 131, 0.3) !important;
    color: white !important;
}

.form-control:focus {
    border-color: #6effff !important;
    box-shadow: 0 0 10px rgba(110, 255, 255, 0.2) !important;
}

.table thead {
    background: rgba(212, 180, 131, 0.1) !important;
}

.table-striped > tbody > tr:nth-of-type(odd) {
    background-color: rgba(255, 255, 255, 0.03) !important;
}

/* Footer */
.footer {
    background-color: rgba(5, 8, 12, 0.9) !important;
    border-top: 1px solid rgba(212, 180, 131, 0.2) !important;
    padding: 20px 0 !important;
}