:root {
    --bg-blue: #1359a7;
    --navy: #051441;
    --cyan: #00f0ff;
    --white: #ffffff;
    --yellow: #FFDE59;
    --black: #000000;
}

/* Base & Performance */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: var(--bg-blue);
    color: var(--white);
    font-family: 'Maiden Orange', Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
    padding: 20px;
}

.container {
    width: 100%;
    max-width: 900px;
}

/* Logo - Optimisé 20vw */
.logo {
    width: 100%;
    max-width: 10vw !important;
    min-width: 180px; /* Sécurité mobile */
    height: auto;
    margin-bottom: 40px;
}

/* Titre - BUZZE et PLATEAU en jaune */
.main-title {
    font-size: clamp(1.8rem, 5vw, 3.2rem);
    line-height: 1.1;
    margin-bottom: 25px;
    text-transform: uppercase;
    color: var(--white);
}

.main-title .highlight {
    color: var(--yellow);
}

/* Description - Raleway */
.description {
    font-family: 'Raleway', sans-serif;
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Boutons - Ton style exact */
.button-group {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.button {
    display: inline-block;
    border: 1px none var(--black);
    background-color: var(--white);
    box-shadow: 6px 6px 0 0 var(--cyan);
    color: var(--navy);
    text-align: center;
    text-transform: uppercase;
    padding: 16px 3rem 10px;
    font-family: 'Maiden Orange', Arial, sans-serif;
    font-size: 1.5rem;
    text-decoration: none;
    transition: box-shadow .4s cubic-bezier(.075,.82,.165,1), transform .4s cubic-bezier(.075,.82,.165,1);
    cursor: pointer;
}

.button:hover {
    box-shadow: none;
    transform: translate(6px, 6px);
}

/* Accessibilité Focus */
.button:focus {
    outline: 3px solid var(--yellow);
    outline-offset: 5px;
}

/* Mobile */
@media (max-width: 600px) {
    .button-group { flex-direction: column; }
    .button { width: 100%; }
    .logo { max-width: 45vw; }
}