@font-face {
    font-family: 'eurostile';
    src: url(/asset/font/eurostile.TTF);
}
/* Reset et styles de base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'eurostile';
    line-height: 1.5;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: #0a0a0a;
}

main {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

main h1 {
    font-size: 2rem;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

main p {
    color: #666;
}

/* Footer minimaliste */
.footer {
    background: #0a0a0a;
    border-top: 1px solid #eee;
    padding: 1.5rem 1rem;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 99;
}

@media (max-width: 767px) {
    .footer {
        display: none;
    }
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

/* Réseaux sociaux */
.social-links {
    display: flex;
    gap: 1.75rem;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.social-link {
    color: #8b8b8b;
    font-size: 1.2rem;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
}

.social-link:hover {
    color: #1a1a1a;
    transform: translateY(-2px);
}

/* Couleurs au survol (subtiles) */
.social-link.twitter:hover { color: #1DA1F2; }
.social-link.instagram:hover { color: #E4405F; }
.social-link.youtube:hover { color: #FF0000; }
.social-link.tiktok:hover { color: #000000; }
.social-link.snapchat:hover { color: #FFFC00; text-shadow: 0 0 3px rgba(0,0,0,0.1); }

/* Copyright */
.copyright p {
    font-size: 0.75rem;
    color: #9ca3af;
    letter-spacing: 0.3px;
    text-align: center;
}

/* Liens légaux */
.footer-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
}

.footer-link {
    font-size: 0.75rem;
    color: #888;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: #1a1a1a;
}

.legal-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
}

.legal-links a {
    font-size: 0.7rem;
    color: #888;
    text-decoration: none;
    transition: color 0.2s ease;
}

.legal-links a:hover {
    color: #1a1a1a;
}

.legal-divider {
    color: #ccc;
}

/* Version encore plus petite pour mobile */
@media (max-width: 640px) {
    .footer {
        padding: 1.25rem 1rem;
    }
    
    .legal-links {
        gap: 1rem;
        margin-top: 0.5rem;
    }
    
    .legal-links a {
        font-size: 0.65rem;
    }
    
    .social-links {
        gap: 1.25rem;
    }
    
    .social-link {
        font-size: 1.1rem;
        width: 28px;
        height: 28px;
    }
    
    .copyright p {
        font-size: 0.7rem;
    }
}

/* Option : Version ultra compacte pour très petits écrans */
@media (max-width: 480px) {
    .footer {
        padding: 1rem;
    }
    
    .social-links {
        gap: 1rem;
    }
    
    .social-link {
        font-size: 1rem;
        width: 26px;
        height: 26px;
    }
}