body {
    font-family: Arial, sans-serif;
    text-align: center;
    background: #111;
    color: #fff;
    margin: 0;
    padding: 0;
}

.splash-screen {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background: linear-gradient(135deg, #072238 0%, #89013b 100%);
}

.logo {
    width: 200px;
    padding: 20px;
    background: white;
    border-radius: 10px;
    margin-bottom: 20px;
}

h1 {
    font-size: 2rem;
}

.highlight {
    color: rgb(255, 135, 245);
}

.tagline {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.start-button {
    background: linear-gradient(135deg, #072238 0%, #89013b 100%);
    color: #fff;
    padding: 15px 30px;
    font-size: 1.2rem;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    transition: 0.3s;
}

.start-button:hover {
    background: #072238;
}

/* Styles pour les liens des réseaux sociaux */
.social-links {
    margin-top: 20px;
}

.social-links p {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.social-links a {
    display: inline-block;
    margin: 5px;
    padding: 10px 15px;
    color: #fff;
    background: #89013b;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s;
}

.social-links a:hover {
    background: #072238;
}
