/* --- THEME BINOKUB PORTAIL --- */
:root {
    --cyan: #00f3ff;
    --magenta: #ff00ff;
    --bg-dark: #0a0a0a;
    --glass: rgba(255, 255, 255, 0.03);
    --ad-bg: rgba(0, 0, 0, 0.4);
}

body {
    margin: 0;
    padding: 0;
    background-color: var(--bg-dark);
    color: white;
    font-family: 'Segoe UI', Roboto, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
}

/* --- HEADER --- */
header {
    width: 100%;
    padding: 40px 0;
    text-align: center;
    background: linear-gradient(to bottom, rgba(0, 243, 255, 0.05), transparent);
}

.neon-title {
    color: var(--cyan);
    text-shadow: 0 0 15px var(--cyan);
    font-size: 3rem;
    letter-spacing: 8px;
    margin: 0;
    text-transform: uppercase;
}

/* --- CONTENEUR PRINCIPAL --- */
#main-container {
    width: 90%;
    max-width: 800px; /* Un peu plus large que le jeu pour l'info */
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding-bottom: 50px;
}

/* --- ZONE INFO DU JOUR --- */
.glass-card {
    background: var(--glass);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px;
    backdrop-filter: blur(10px);
    text-align: center;
}

#info-header {
    font-size: 0.8rem;
    color: var(--magenta);
    letter-spacing: 2px;
    margin-bottom: 15px;
    font-weight: bold;
}

#info-content p {
    font-size: 1.2rem;
    line-height: 1.6;
    font-style: italic;
    color: #eee;
}

/* --- EMPLACEMENTS PUBLICITAIRES (AD-SLOTS) --- */
.ad-slot {
    width: 100%;
    background: var(--ad-bg);
    border: 1px dashed rgba(255, 255, 255, 0.2);
    min-height: 100px; /* Taille standard pour bannières */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    border-radius: 8px;
}

.ad-label {
    font-size: 0.6rem;
    color: #444;
    position: absolute;
    top: 5px;
    left: 10px;
    letter-spacing: 1px;
}

/* --- ZONE D'ACTION (HUB) --- */
#action-zone {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.main-btn {
    background: var(--cyan);
    color: black;
    text-decoration: none;
    padding: 20px 50px;
    border-radius: 50px;
    font-weight: 900;
    font-size: 1.1rem;
    box-shadow: 0 0 20px var(--cyan);
    transition: 0.3s;
}

.main-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 40px var(--cyan);
}

#mini-game-preview {
    color: #888;
    font-size: 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 15px;
    width: 100%;
    text-align: center;
}

/* --- FOOTER --- */
footer {
    margin-top: auto;
    padding: 20px;
    font-size: 0.7rem;
    color: #444;
    width: 100%;
    text-align: center;
}
