* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #ff69b4;
    --secondary-color: #ff91c7;
    --rose-light: #ffb6d9;
    --rose-pale: #f5d0e0;
    --rose-dark: #ff1493;
    --violet-center: #9370db;
    --violet-light: #ba8dd8;
    --violet-dark: #8a2be2;
    --bg-main: #f5e6ed;
    --bg-section: #edd5e1;
    --bg-card: #f0dae5;
    --text-dark: #3d2530;
    --text-soft: #6b4d5a;
    --accent-color: #ff69b4;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-main);
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(219, 180, 195, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(205, 140, 165, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(210, 160, 180, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 60% 30%, rgba(147, 112, 219, 0.1) 0%, transparent 40%);
    background-attachment: fixed;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Décoration florale stylisée */
body::before {
    content: '';
    position: fixed;
    top: -200px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: 
        radial-gradient(circle at 50% 50%, var(--violet-center) 0%, var(--violet-light) 15%, transparent 30%),
        radial-gradient(circle at 50% 50%, var(--rose-light) 20%, var(--rose-pale) 40%, transparent 60%);
    border-radius: 50%;
    opacity: 0.15;
    pointer-events: none;
    z-index: 0;
    filter: blur(40px);
}

body::after {
    content: '';
    position: fixed;
    bottom: -150px;
    left: -80px;
    width: 350px;
    height: 350px;
    background: 
        radial-gradient(circle at 50% 50%, var(--violet-light) 0%, var(--primary-color) 20%, transparent 35%),
        radial-gradient(circle at 50% 50%, var(--rose-light) 25%, var(--rose-pale) 45%, transparent 65%);
    border-radius: 50%;
    opacity: 0.12;
    pointer-events: none;
    z-index: 0;
    filter: blur(35px);
}

main {
    position: relative;
    z-index: 1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Navigation */
.navbar {
    background-color: rgba(237, 213, 225, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(255, 105, 180, 0.2);
    border-bottom: 2px solid var(--rose-light);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-menu a:hover {
    color: var(--rose-dark);
}

.nav-menu a::after {
    content: '🌸';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%) scale(0);
    transition: transform 0.3s;
    font-size: 0.8rem;
}

.nav-menu a:hover::after {
    transform: translateX(-50%) scale(1);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    transition: all 0.3s;
    border-radius: 3px;
}

/* Hero Section */
.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bg-main) 0%, var(--bg-section) 50%, var(--rose-pale) 100%);
    text-align: center;
    padding: 4rem 20px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Motif floral stylisé - fleur avec centre violet */
.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: 
        /* Centre violet de la fleur */
        radial-gradient(circle at 50% 50%, var(--violet-center) 0%, var(--violet-light) 8%, transparent 15%),
        /* Pétales roses internes */
        radial-gradient(circle at 50% 50%, var(--primary-color) 15%, var(--rose-light) 30%, transparent 45%),
        /* Pétales roses externes */
        radial-gradient(circle at 50% 50%, var(--rose-light) 35%, var(--rose-pale) 50%, transparent 65%);
    border-radius: 50%;
    opacity: 0.25;
    pointer-events: none;
    filter: blur(50px);
    z-index: 0;
}

/* Décoration florale supplémentaire */
.hero::after {
    content: '';
    position: absolute;
    top: 20%;
    right: 10%;
    width: 300px;
    height: 300px;
    background: 
        radial-gradient(circle at 50% 50%, var(--violet-light) 0%, var(--primary-color) 12%, transparent 25%),
        radial-gradient(circle at 50% 50%, var(--rose-light) 20%, var(--rose-pale) 40%, transparent 60%);
    border-radius: 50%;
    opacity: 0.2;
    pointer-events: none;
    filter: blur(40px);
    z-index: 0;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(30px, -30px) rotate(120deg);
    }
    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    animation: fadeInUp 0.8s ease;
}

.highlight {
    color: var(--rose-dark);
    text-shadow: 0 0 20px rgba(255, 105, 180, 0.4);
    background: linear-gradient(135deg, var(--violet-center), var(--rose-dark), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradientShift 5s ease infinite;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.subtitle {
    font-size: 1.5rem;
    color: var(--text-soft);
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--violet-center), var(--primary-color), var(--rose-dark));
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(147, 112, 219, 0.4);
    animation: fadeInUp 0.8s ease 0.4s both;
    border: 2px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
    background-size: 200% 200%;
}

.btn-primary::before {
    content: '';
    position: absolute;
    left: -40px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    background: 
        radial-gradient(circle at 50% 50%, var(--violet-center) 0%, var(--primary-color) 50%, transparent 80%);
    border-radius: 50%;
    transition: left 0.3s;
    opacity: 0.8;
    filter: blur(3px);
}

.btn-primary:hover::before {
    left: 15px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(147, 112, 219, 0.6);
    background: linear-gradient(135deg, var(--rose-dark), var(--primary-color), var(--violet-center));
    background-position: 100% 50%;
}

/* Stream Section */
.stream-section {
    padding: 5rem 0;
    background-color: var(--bg-section);
    position: relative;
    z-index: 1;
}

.stream-section::before {
    content: '';
    position: absolute;
    top: 10%;
    right: 5%;
    width: 200px;
    height: 200px;
    background: 
        radial-gradient(circle at 50% 50%, var(--violet-center) 0%, var(--violet-light) 10%, transparent 20%),
        radial-gradient(circle at 50% 50%, var(--primary-color) 18%, var(--rose-light) 35%, transparent 50%);
    border-radius: 50%;
    opacity: 0.15;
    filter: blur(30px);
    pointer-events: none;
    z-index: 0;
}

.stream-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
    position: relative;
    z-index: 1;
}

.stream-section h2::after {
    content: '';
    position: absolute;
    right: -60px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: 
        radial-gradient(circle at 50% 50%, var(--violet-center) 0%, var(--primary-color) 40%, transparent 70%);
    border-radius: 50%;
    opacity: 0.6;
    filter: blur(2px);
}

.stream-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.twitch-embed {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(255, 105, 180, 0.2);
    border: 3px solid var(--rose-light);
}

.chat-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(255, 105, 180, 0.2);
    border: 3px solid var(--rose-light);
}

/* About Section */
.about-section {
    padding: 5rem 0;
    background-color: var(--bg-main);
    position: relative;
    z-index: 1;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 15%;
    left: 8%;
    width: 180px;
    height: 180px;
    background: 
        radial-gradient(circle at 50% 50%, var(--violet-light) 0%, var(--primary-color) 12%, transparent 25%),
        radial-gradient(circle at 50% 50%, var(--rose-light) 20%, var(--rose-pale) 38%, transparent 55%);
    border-radius: 50%;
    opacity: 0.18;
    filter: blur(35px);
    pointer-events: none;
    z-index: 0;
}

.about-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
    position: relative;
    z-index: 1;
}

.about-section h2::before {
    content: '';
    position: absolute;
    left: -55px;
    top: 50%;
    transform: translateY(-50%);
    width: 35px;
    height: 35px;
    background: 
        radial-gradient(circle at 50% 50%, var(--violet-center) 0%, var(--primary-color) 45%, transparent 75%);
    border-radius: 50%;
    opacity: 0.65;
    filter: blur(2px);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--text-soft);
}

.about-text strong {
    color: var(--rose-dark);
    font-weight: 600;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.stat-card {
    background: linear-gradient(135deg, var(--bg-card), rgba(237, 213, 225, 0.8));
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    border: 2px solid var(--rose-light);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: -15px;
    right: -15px;
    width: 80px;
    height: 80px;
    background: 
        radial-gradient(circle at 50% 50%, var(--violet-center) 0%, var(--violet-light) 12%, transparent 25%),
        radial-gradient(circle at 50% 50%, var(--primary-color) 22%, var(--rose-light) 40%, transparent 60%);
    border-radius: 50%;
    opacity: 0.25;
    filter: blur(8px);
    z-index: 0;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 105, 180, 0.3);
    border-color: var(--primary-color);
}

.stat-card h3 {
    color: var(--rose-dark);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    position: relative;
    z-index: 1;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    position: relative;
    z-index: 1;
}

/* Social Section */
.social-section {
    padding: 5rem 0;
    background-color: var(--bg-section);
    position: relative;
    z-index: 1;
}

.social-section::before {
    content: '';
    position: absolute;
    bottom: 10%;
    right: 8%;
    width: 220px;
    height: 220px;
    background: 
        radial-gradient(circle at 50% 50%, var(--violet-center) 0%, var(--violet-light) 9%, transparent 18%),
        radial-gradient(circle at 50% 50%, var(--primary-color) 16%, var(--rose-light) 32%, transparent 48%);
    border-radius: 50%;
    opacity: 0.16;
    filter: blur(32px);
    pointer-events: none;
    z-index: 0;
}

.social-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
    position: relative;
    z-index: 1;
}

.social-section h2::after {
    content: '';
    position: absolute;
    right: -55px;
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    background: 
        radial-gradient(circle at 50% 50%, var(--violet-center) 0%, var(--primary-color) 42%, transparent 72%);
    border-radius: 50%;
    opacity: 0.6;
    filter: blur(2px);
}

.social-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.social-card {
    background: linear-gradient(135deg, var(--bg-card), rgba(237, 213, 225, 0.8));
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    text-decoration: none;
    color: var(--text-dark);
    border: 2px solid var(--rose-light);
    transition: all 0.3s;
    display: block;
    position: relative;
    overflow: hidden;
}

.social-card::before {
    content: '';
    position: absolute;
    top: -25px;
    right: -25px;
    width: 120px;
    height: 120px;
    background: 
        radial-gradient(circle at 50% 50%, var(--violet-center) 0%, var(--violet-light) 10%, transparent 22%),
        radial-gradient(circle at 50% 50%, var(--primary-color) 20%, var(--rose-light) 38%, transparent 58%);
    border-radius: 50%;
    opacity: 0.2;
    filter: blur(12px);
    transition: all 0.3s;
    z-index: 0;
}

.social-card:hover::before {
    opacity: 0.3;
    transform: scale(1.15);
    filter: blur(15px);
}

.social-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(255, 105, 180, 0.4);
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(237, 213, 225, 0.9), var(--bg-card));
}

.social-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.social-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--rose-dark);
    position: relative;
    z-index: 1;
}

.social-card p {
    color: var(--text-soft);
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
}

.social-card.twitch:hover {
    background: linear-gradient(135deg, rgba(237, 213, 225, 0.95), rgba(240, 218, 229, 0.9));
}

/* Footer */
footer {
    background-color: var(--bg-section);
    padding: 2rem 0;
    text-align: center;
    border-top: 2px solid var(--rose-light);
    position: relative;
    z-index: 1;
}

footer::before {
    content: '';
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 100px;
    background: 
        radial-gradient(circle at 50% 50%, var(--violet-center) 0%, var(--primary-color) 35%, transparent 65%);
    border-radius: 50%;
    opacity: 0.4;
    filter: blur(15px);
    z-index: 0;
}

footer p {
    color: var(--text-soft);
    margin: 0.5rem 0;
    position: relative;
    z-index: 1;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 968px) {
    .stream-container {
        grid-template-columns: 1fr;
    }

    .chat-container {
        height: 400px;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .about-stats {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(237, 213, 225, 0.98);
        backdrop-filter: blur(10px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(255, 105, 180, 0.2);
        padding: 2rem 0;
        border-top: 2px solid var(--rose-light);
    }

    .nav-menu.active {
        left: 0;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .subtitle {
        font-size: 1.2rem;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .social-links {
        grid-template-columns: 1fr;
    }

    .stream-section h2::after,
    .about-section h2::before,
    .social-section h2::after {
        display: none;
    }

    .stream-section::before,
    .about-section::before,
    .social-section::before,
    .hero::after,
    body::before,
    body::after {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .stream-section h2,
    .about-section h2,
    .social-section h2 {
        font-size: 2rem;
    }
}

