* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

body {
    background: linear-gradient(135deg, #0a1f44, #1e3c72);
    color: #fff;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
a{
    text-decoration: none;
    color: #fff;
}
.container {
    text-align: center;
    padding: 20px;
}

.content {
    max-width: 500px;
    width: 100%;
}

/* Photo */
.photo img {
    width: 160px;
    height: 160px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #fff;
    margin-bottom: 20px;
}

/* Titres */
h1 {
    font-size: 32px;
    margin-bottom: 10px;
}

h2 {
    font-size: 22px;
    color: #f1c40f;
    margin-bottom: 15px;
}

p {
    font-size: 16px;
    margin-bottom: 20px;
}

/* Countdown */
#countdown {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

#countdown div {
    background: rgba(255,255,255,0.1);
    padding: 10px;
    border-radius: 8px;
    width: 70px;
}

#countdown span {
    font-size: 22px;
    font-weight: bold;
}

#countdown small {
    display: block;
    font-size: 12px;
}

/* Contact */
.contact {
    font-size: 14px;
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 500px) {
    #countdown {
        flex-wrap: wrap;
    }
}