body { 
    font-family: 'Inter', sans-serif;
    background: #0f0f0f; 
    color: white; 
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    padding: 20px;
    box-sizing: border-box;
}
.ad-space {
    width: 728px;
    height: 90px;
    background: #1a1a1a;
    border: 1px dashed #333;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #444;
    font-size: 0.8em;
    margin: 15px 0;
}
#clock { 
    font-size: 1.5em; 
    color: #888; 
    font-weight: bold;
    background: #1a1a1a;
    padding: 10px 20px;
    border-radius: 10px;
    border: 1px solid #333;
    margin: 15px 0;
}
/* GRILLE POUR LES 6 CARTES */
.container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
    gap: 20px;
    width: 100%;
    max-width: 1100px;
    margin-bottom: 20px;
}
.card { 
    background: #1a1a1a; 
    padding: 25px; 
    border-radius: 20px; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    text-align: center;
    border: 1px solid #333;
    box-sizing: border-box;
}
/* Style spécial pour mettre en avant le Battle Royale principal */
.card.featured {
    border-color: #ffcc00;
    background: linear-gradient(180deg, #1a1a1a 0%, #221c02 100%);
}
.mode-title {
    font-size: 1.2em;
    font-weight: bold;
    color: #ffcc00;
    letter-spacing: 1px;
    margin-bottom: 15px;
    text-transform: uppercase;
}
.card.featured .mode-title {
    color: #ffffff;
    font-size: 1.4em;
}
hr { border: 0; border-top: 1px solid #333; margin: 15px 0; }
.label { font-size: 0.75em; color: #aaa; letter-spacing: 2px; }
.map-name { 
    font-size: 1.9em; 
    font-weight: 900 !important; 
    margin: 10px 0;
    min-height: 60px; 
    display: flex;
    justify-content: center;
    align-items: center;
}
.card.featured .map-name {
    font-size: 2.3em;
}
.next { color: #666; margin-top: 15px; font-style: italic; font-size: 0.9em; }
.timer { 
    font-weight: bold; 
    color: #ff4444; 
    background: rgba(255,68,68,0.1);
    padding: 5px 15px;
    border-radius: 50px;
    display: inline-block;
    font-size: 1.4em; 
}

@media (max-width: 768px) {
    .container {
        grid-template-columns: 1fr;
    }
    .ad-space { 
        width: 100%; 
        max-width: 320px; 
        height: 100px; 
    }
}