body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
    color: #fff;
    text-align: center;
    min-height: 100vh;
    background-attachment: fixed;
}

.container {
    margin-top: 30px;
    padding: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.container img {
    width: 100%;
    max-width: 250px;
    transition: transform 0.3s ease;
}

.container img:hover {
    transform: scale(1.05);
}

img {
    margin-top: 20px;
    border-radius: 50%;
    box-shadow: 0 0 25px rgba(0, 255, 204, 0.7), 
                0 0 50px rgba(0, 255, 204, 0.4);
    border: 3px solid #00ffcc;
}

h1 {
    font-size: 2.5em;
    color: #00ffcc;
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(0, 255, 204, 0.5);
    background: linear-gradient(90deg, #00ffcc, #00b3ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

p {
    font-size: 1.2em;
    line-height: 1.6;
    color: #e0e0e0;
    margin-bottom: 40px;
    padding: 0 20px;
}

.links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin: 0 auto;
    max-width: 700px;
}

.links a {
    background: rgba(51, 51, 51, 0.7);
    padding: 12px 25px;
    border-radius: 30px;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    border: 2px solid #00ffcc;
    backdrop-filter: blur(5px);
    flex-grow: 1;
    text-align: center;
    max-width: 200px;
}

.links a:hover {
    background: #00ffcc;
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 255, 204, 0.3);
}

.footer {
    margin-top: 60px;
    padding: 20px;
    font-size: 0.9em;
    color: #aaa;
    backdrop-filter: blur(5px);
}

.footer img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-top: 15px;
    transition: all 0.3s ease;
}

.footer img:hover {
    transform: rotate(360deg);
}

/* Animation pour le texte */
@keyframes glow {
    from {
        text-shadow: 0 0 5px #00ffcc;
    }
    to {
        text-shadow: 0 0 15px #00ffcc, 0 0 20px #00b3ff;
    }
}

/* Responsive design */
@media (max-width: 600px) {
    h1 {
        font-size: 1.8em;
    }
    
    p {
        font-size: 1em;
    }
    
    .links a {
        padding: 10px 15px;
        font-size: 0.9em;
    }
                                }
