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

body {
    font-family: 'eurostile';
    background: #0a0a0a;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding-bottom: 140px;
}

.container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 40px 20px;
}

/* Footer layout */
footer.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    flex-shrink: 0;
    background: #0a0a0a;
    z-index: 100;
    width: 100%;
}

/* Hide footer on mobile */
@media (max-width: 480px) {
    footer.footer {
        display: none;
    }
    
    body {
        padding-bottom: 0;
    }
}

/* Padding pour desktop avec footer fixe */
@media (min-width: 769px) {
    body {
        padding-bottom: 130px;
    }
}

/* Mobile - pas de padding */
@media (max-width: 768px) {
    body {
        padding-bottom: 0;
    }
}
