/* Reset et base */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    background-image: url('pictures/background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    font-family: Arial, Helvetica, sans-serif;
    background-color: black;
}

/* Conteneur principal */
.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 100vh;
    padding: 40px 20px;
    box-sizing: border-box;
}

/* Logo */
#logo {
    display: block;
    width: 700px;
    max-width: 90%;
    margin-bottom: 30px;
}

/* Texte d'introduction */
.intro-text {
    text-align: center;
    color: white;
    width: 600px;
    max-width: 90%;
    margin-bottom: 30px;
    padding: 25px 30px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 20px;
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    box-sizing: border-box;
}

.intro-text .welcome {
    font-size: 28px;
    margin-bottom: 15px;
    color: #ff7300;
}

.intro-text p {
    font-size: 16px;
    line-height: 1.6;
    margin: 10px 0;
}

.intro-text a {
    color: #ff7300;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.intro-text a:hover {
    color: #ff4e00;
    text-decoration: underline;
}

.intro-text strong {
    color: #ff7300;
}

/* Styles des boutons */
.btn {
    text-decoration: none;
    font-weight: bold;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* Bouton principal de téléchargement */
.btn-download {
    padding: 20px 50px;
    font-size: 24px;
    color: black;
    background: linear-gradient(45deg, #ff4e00, #ff7300);
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.3);
    margin-bottom: 40px;
}

.btn-download:hover {
    background: linear-gradient(45deg, #ff7300, #ff4e00);
    transform: scale(1.05);
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.4);
}

/* Conteneur des boutons sociaux */
.social-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 50px;
}

/* Boutons sociaux */
.btn-social {
    padding: 15px 30px;
    font-size: 18px;
    color: white;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
}

.btn-social svg {
    width: 24px;
    height: 24px;
}

/* Discord */
.btn-discord {
    background: linear-gradient(45deg, #5865F2, #7289da);
}

.btn-discord:hover {
    background: linear-gradient(45deg, #7289da, #5865F2);
    transform: scale(1.05);
}

/* YouTube */
.btn-youtube {
    background: linear-gradient(45deg, #FF0000, #cc0000);
}

.btn-youtube:hover {
    background: linear-gradient(45deg, #cc0000, #FF0000);
    transform: scale(1.05);
}

/* Patreon */
.btn-patreon {
    background: linear-gradient(45deg, #FF424D, #f96854);
}

.btn-patreon:hover {
    background: linear-gradient(45deg, #f96854, #FF424D);
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
    #logo {
        width: 90%;
        margin-bottom: 30px;
    }

    .btn-download {
        padding: 15px 35px;
        font-size: 20px;
        margin-bottom: 30px;
    }

    .social-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .btn-social {
        padding: 12px 25px;
        font-size: 16px;
        width: 200px;
    }
}
