/* Styles généraux */
body {
    background-color: #fff5f7;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect fill="%23fce4ec" opacity="0.3" width="100" height="100"/><path fill="%23f8bbd9" opacity="0.2" d="M30,30 Q50,10 70,30 T90,50 T70,70 T50,90 T30,70 T10,50 T30,30 Z"/></svg>');
    font-family: 'Georgia', 'Times New Roman', serif;
    color: #5d4037;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.85);
    box-shadow: 0 0 25px rgba(236, 64, 122, 0.2);
    position: relative;
    overflow: hidden;
}

/* En-tête avec bannière */
.header-banner {
    text-align: center;
    position: relative;
    padding: 10px 0 0;
    background: linear-gradient(to bottom, #fce4ec, #f8bbd9);
    border-bottom: 3px double #f48fb1;
}

.banner {
    max-width: 90%;
    height: auto;
    border: 8px double white;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.top-gif {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 80px;
    height: auto;
    opacity: 0.8;
}

/* Titre et navigation */
.header {
    text-align: center;
    padding: 15px 0;
    background: linear-gradient(45deg, #f8bbd9, #f48fb1);
    position: relative;
    overflow: hidden;
}

.title {
    font-size: 2.8em;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin: 10px 0;
    font-family: 'Brush Script MT', cursive;
    letter-spacing: 1px;
}

.nav {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 12px;
    margin: 10px 20px;
    border-radius: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border: 2px dotted #f48fb1;
}

.nav a {
    margin: 0 12px;
    color: #ad1457;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    padding: 5px 10px;
    border-radius: 15px;
}

.nav a:hover {
    color: #ec407a;
    background-color: #fce4ec;
    text-decoration: none;
    transform: translateY(-2px);
}

/* Sections de contenu */
.welcome, .section {
    margin: 30px 20px;
    padding: 25px;
    background-color: rgba(252, 228, 236, 0.5);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #f8bbd9;
    position: relative;
    overflow: hidden;
}

.welcome::before, .section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(to right, #f48fb1, #ec407a, #f48fb1);
}

h2 {
    color: #ad1457;
    text-align: center;
    font-size: 1.8em;
    margin-top: 0;
    padding-bottom: 10px;
    border-bottom: 1px dashed #f48fb1;
    font-family: 'Palatino Linotype', 'Book Antiqua', serif;
}

/* Trésor caché */
.treasure {
    background-color: rgba(255, 255, 255, 0.9);
    border: 2px dotted #f48fb1;
    padding: 15px;
    margin: 20px 0;
    border-radius: 10px;
    text-align: center;
    position: relative;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.treasure::after {
    content: "✨";
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 1.5em;
    background: white;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Liens de l'atlas */
.atlas-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.atlas-links p {
    margin: 0;
    background: linear-gradient(45deg, #f8bbd9, #fce4ec);
    padding: 12px 20px;
    border-radius: 25px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.atlas-links p:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.atlas-links a {
    color: #ad1457;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
}

.atlas-links a:hover {
    color: #ec407a;
    text-decoration: underline;
}

/* Pied de page */
.footer-gif {
    text-align: center;
    margin: 30px 0 10px;
}

.footer-gif img {
    max-width: 90%;
    height: auto;
}

.footer {
    text-align: center;
    margin-top: 20px;
    padding: 15px;
    background: linear-gradient(to bottom, #f8bbd9, #f48fb1);
    color: white;
    font-size: 0.9em;
    position: relative;
}

.footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, transparent, white, transparent);
}

/* Éléments décoratifs */
.decoration {
    position: absolute;
    z-index: -1;
    opacity: 0.1;
}

.decoration-1 {
    top: 10%;
    left: 5%;
    font-size: 100px;
    transform: rotate(-15deg);
}

.decoration-2 {
    bottom: 15%;
    right: 5%;
    font-size: 80px;
    transform: rotate(10deg);
}

/* Responsive */
@media (max-width: 768px) {
    .nav a {
        display: block;
        margin: 8px 0;
    }
    
    .atlas-links {
        flex-direction: column;
        align-items: center;
    }
    
    .title {
        font-size: 2em;
    }
    
    .top-gif {
        position: static;
        margin: 10px auto;
        
        /* Ajoute à la fin de ton style.css existant */

/* Assure-toi que le body a un fond bien rose */
body {
    background-color: #fff5f7;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 182, 193, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 105, 180, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 20, 147, 0.1) 0%, transparent 50%);
    font-family: 'Georgia', 'Times New Roman', serif;
}

/* Container principal */
.container {
    max-width: 1200px;
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.92);
    box-shadow: 0 0 50px rgba(255, 105, 180, 0.3);
    position: relative;
    overflow: hidden;
}
        display: block;
    }
}