/* --- SCROLLBAR PERSONNALISÉE --- */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #071525; }
::-webkit-scrollbar-thumb { background: #040d1a; border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: #1e3a5f; }


html {
    height: auto !important;
    overflow-y: auto !important;
}

body.portal-body {
    height: auto !important;
    min-height: 100vh !important;
    overflow: visible !important;
}

/* --- CONFIGURATION DU PORTAIL --- */
.portal-body {
    background-color: #071525;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
    padding-bottom: 40px;
    margin: 0;
    font-family: 'Rajdhani', 'Oswald', 'Segoe UI', sans-serif;
}

.portal-container {
    text-align: center;
    width: 100%;
    max-width: 1400px;
    padding: 60px 60px;
    box-sizing: border-box;
}

.portal-logo {
    height: 150px;
    width: auto;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 15px rgba(201, 162, 39, 0.4));
    transition: transform 0.3s ease;
}

h1 {
    color: #ffffff;
    letter-spacing: 4px;
    margin: 0;
    font-size: 2.2rem;
    font-weight: 800;
}

.portal-subtitle {
    color: #e8820c;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.9rem;
    margin-bottom: 50px;
    letter-spacing: 1px;
}

/* --- GRILLE 5 COLONNES --- */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 22px;
}

/* --- CARTES MILITAIRES --- */
.menu-card {
    background: #0f2847 !important;
    border-radius: 4px;
    padding: 36px 18px 30px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid #1e3a5f;
    border-top: 3px solid #1e3a5f;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
    position: relative;
}

.menu-card:hover:not(.locked) {
    background: #0d2137 !important;
    transform: translateY(-6px);
    border-color: #e8820c;
    border-top-color: #e8820c;
    box-shadow: 0 8px 28px rgba(201, 162, 39, 0.2);
}

.card-icon {
    font-size: 2.4rem;
    margin-bottom: 12px;
    filter: drop-shadow(0 0 6px rgba(232, 130, 12, 0.3));
}

.menu-card h3 {
    color: #e2e8f0;
    margin: 8px 0 6px 0;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-family: 'Oswald', 'Rajdhani', sans-serif;
}

.menu-card p {
    color: #94a3b8;
    margin: 0;
    font-size: 0.78rem;
    font-weight: 500;
    line-height: 1.4;
}

/* --- ÉTAT VERROUILLÉ --- */
.menu-card.locked {
    background: #071525 !important;
    opacity: 0.35;
    cursor: not-allowed;
    filter: grayscale(1);
}
.menu-card.locked:hover {
    transform: none;
    border-color: transparent;
}

/* --- RESPONSIVE --- */
@media (max-width: 1000px) {
    .menu-grid { grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); }
    .portal-container { padding: 40px 20px; }
}


.portal-container {
    padding-bottom: 200px !important;
}
