@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;800&display=swap');

body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    text-align: center;
    min-height: 100vh;
    background: linear-gradient(135deg, #91DEFF 0%, #4A90E2 50%, #1313CF 100%);
    background-attachment: fixed;
    color: white;
}

/* --- NAVIGATION (Identique au Staff) --- */
#menu1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 5px 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

li { position: relative; }
li a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    padding: 20px 15px;
    display: block;
    transition: 0.3s;
}

li a:hover { color: #91DEFF; }

.submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    min-width: 160px;
    padding: 10px 0;
    text-align: left;
}

.submenu a {
    color: #1313CF;
    text-transform: none;
    padding: 10px 20px;
}

.submenu a:hover { background: #f0f7ff; }
li:hover .submenu { display: block; }

input[type=text] {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 8px 15px;
    border-radius: 20px;
    color: white;
    outline: none;
}

/* --- CONTENU PRINCIPAL --- */
.hero {
    padding: 60px 20px;
}

.logo-main {
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.2));
    margin-bottom: 30px;
    max-width: 100%;
    height: auto;
}

/* --- CARTE DE STATUT --- */
#status-card {
    display: inline-block;
    background: rgba(255, 255, 255, 0.95);
    color: #1313CF;
    padding: 30px;
    border-radius: 25px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    min-width: 280px;
    margin: 20px 0;
}

#status-card p {
    margin: 5px 0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
}

#status-card h1 {
    font-size: 4rem;
    margin: 10px 0;
    background: linear-gradient(to bottom, #1313CF, #4A90E2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.online p:first-child { color: #2ecc71; }
.offline p:first-child { color: #e74c3c; }

/* --- TEXTE BIENVENUE --- */
#div2 {
    max-width: 700px;
    margin: 40px auto;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

h3 { font-weight: 800; font-size: 1.8rem; }
