

/* Bouton de la page d'accueil */
button {
    background-color: #ff0050;
    color: #fff;
    font-weight: bold;
    padding: 15px 30px;
    border: none;
    border-radius: 30px;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: 0px 5px 15px rgba(255, 0, 80, 0.4);
    transition: all 0.3s ease;
}

button:hover {
    background-color: #e60045;
    transform: translateY(-3px);
    box-shadow: 0px 10px 20px rgba(255, 0, 80, 0.6);
}

/* Texte principal */
main p {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 20px;
    line-height: 1.5;
    text-align: center;
}




/* Style global */

body {
    margin: 0;
    font-family: "Proxima Nova", Arial, sans-serif;
    background: #000; /* Fond noir pour l'effet TikTok */
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.app-container {
    width: 100%;
    max-width: 600px;
    padding: 20px;
    box-sizing: border-box;
    text-align: center;
}

header h1 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #ff0050; /* Rouge TikTok */
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
    margin-bottom: 20px;
}

#controls {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

label {
    font-size: 1rem;
    color: #ccc;
}

select, input[type="file"], button {
    width: 100%;
    max-width: 300px;
    padding: 10px;
    font-size: 1rem;
    border: none;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

/* Bouton de style TikTok */
button {
    background-color: #ff0050; /* Rouge TikTok */
    color: #fff;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
}

button:hover {
    background-color: #e60045; /* Rouge plus foncé pour effet */
    transform: translateY(-3px);
    box-shadow: 0px 10px 20px rgba(255, 0, 80, 0.5);
}

video, canvas {
    width: 100%;
    max-width: 100%;
    border: 2px solid #ff0050; /* Rouge TikTok */
    border-radius: 15px;
    margin-top: 15px;
    box-shadow: 0px 10px 20px rgba(255, 0, 80, 0.3);
}

#previewContainer {
    margin-top: 20px;
    text-align: center;
}

#backgroundPreview {
    width: 200px;
    height: 150px;
    margin: 10px auto;
    border-radius: 15px;
    background-size: cover;
    background-position: center;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.5);
}

footer p {
    margin-top: 20px;
    font-size: 0.9rem;
    color: #888;
    text-align: center;
}

/* Animation subtile sur les éléments interactifs */
select:hover, input[type="file"]:hover {
    box-shadow: 0px 5px 15px rgba(255, 0, 80, 0.3);
}

footer p:hover {
    color: #ff0050;
    transition: color 0.3s ease;
}

/* Responsive Design */
@media (max-width: 768px) {
    header h1 {
        font-size: 2rem;
    }

    select, input[type="file"], button {
        font-size: 0.9rem;
    }
}

/* Logo container */
.logo-container {
    text-align: center;
    margin-bottom: 20px;
}

.logo {
    width: 150px;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Mise à jour du header */
header h1 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #ff0050;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
    margin-top: 10px; /* Espacement sous le logo */
}


/* Bouton de navigation */
button {
    background-color: #ff0050;
    color: #fff;
    font-weight: bold;
    padding: 15px 30px;
    border: none;
    border-radius: 30px;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: 0px 5px 15px rgba(255, 0, 80, 0.4);
    transition: all 0.3s ease;
    margin: 10px;
}

button:hover {
    background-color: #e60045;
    transform: translateY(-3px);
    box-shadow: 0px 10px 20px rgba(255, 0, 80, 0.6);
}

/* Groupe de boutons */
.button-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

@media (min-width: 768px) {
    .button-group {
        flex-direction: row;
    }
}




/* Style des onglets */
.tabs {
    display: flex;
    justify-content: center;
    margin: 20px 0;
    gap: 10px;
}

.tab-button {
    background-color: #ff0050;
    color: #fff;
    border: none;
    border-radius: 30px;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.tab-button.active {
    background-color: #e60045;
    box-shadow: 0px 5px 15px rgba(255, 0, 80, 0.5);
}

.tab-button:hover {
    background-color: #ff3366;
}

/* Contenu des onglets */
.tab-content {
    display: none;
    padding: 20px;
    text-align: center;
}

.tab-content h2 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 10px;
}

.tab-content p {
    font-size: 1rem;
    color: #ccc;
}

/* Iframe VIP */
.vip-iframe {
    width: 100%;
    height: 500px;
    border-radius: 10px;
    border: 2px solid #ff0050;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.5);
}

