/* Reset et variables CSS */
:root {
    --primary-color: #6B4CE6;
    --primary-dark: #5A3DD4;
    --secondary-color: #FF6B9D;
    --accent-color: #FFD93D;
    --text-dark: #1A1A2E;
    --text-light: #6B7280;
    --bg-light: #F8F9FA;
    --bg-white: #FFFFFF;
    --gradient-1: linear-gradient(135deg, #6B4CE6 0%, #FF6B9D 100%);
    --gradient-2: linear-gradient(135deg, #FFD93D 0%, #FF6B9D 100%);
    --gradient-hero: linear-gradient(135deg, #667eea 0%, #764ba2 25%, #f093fb 50%, #4facfe 75%, #00f2fe 100%);
    --gradient-dark: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    --gradient-vibrant: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --shadow-glow: 0 0 30px rgba(107, 76, 230, 0.3);
    --shadow-glow-pink: 0 0 30px rgba(255, 107, 157, 0.3);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Reset spécifique pour les boutons - SAUF ceux avec des classes */
button:not(.btn-login):not(.btn-register):not(.btn-primary):not(.btn-logout) {
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    font: inherit;
    color: inherit;
    cursor: pointer;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background: #0a0a0f;
    position: relative;
}

/* Motif de fond animé */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(107, 76, 230, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 107, 157, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(255, 217, 61, 0.1) 0%, transparent 50%);
    background-size: 100% 100%;
    animation: backgroundShift 20s ease infinite;
    z-index: -1;
    pointer-events: none;
}

@keyframes backgroundShift {
    0%, 100% {
        background-position: 0% 0%, 100% 100%, 50% 50%;
    }
    50% {
        background-position: 100% 50%, 0% 0%, 0% 100%;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 0 20px rgba(107, 76, 230, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(10, 10, 15, 0.95);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 30px rgba(107, 76, 230, 0.15);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-1);
    transition: var(--transition);
    box-shadow: 0 0 10px rgba(107, 76, 230, 0.5);
}

.nav-link:hover {
    color: white;
    text-shadow: 0 0 10px rgba(107, 76, 230, 0.5);
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    transition: var(--transition);
    border-radius: 3px;
    box-shadow: 0 0 5px rgba(107, 76, 230, 0.5);
}

/* Hero Section - Design Completement Refait */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: #0a0a0f;
    padding: 120px 20px 60px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 0;
}

.hero-gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    animation: orbFloat 20s ease-in-out infinite;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(107, 76, 230, 0.8), transparent);
    top: -200px;
    right: -100px;
    animation-delay: 0s;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 107, 157, 0.8), transparent);
    bottom: -150px;
    left: -100px;
    animation-delay: 5s;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 217, 61, 0.6), transparent);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 10s;
}

@keyframes orbFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

.hero-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.hero-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(107, 76, 230, 0.3), transparent);
    opacity: 0.2;
    animation: linePulse 4s ease-in-out infinite;
}

.line-1 {
    width: 100%;
    height: 1px;
    top: 30%;
    left: 0;
    animation-delay: 0s;
}

.line-2 {
    width: 1px;
    height: 100%;
    left: 20%;
    top: 0;
    background: linear-gradient(180deg, transparent, rgba(255, 107, 157, 0.3), transparent);
    animation-delay: 1s;
}

.line-3 {
    width: 100%;
    height: 1px;
    bottom: 30%;
    left: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 217, 61, 0.3), transparent);
    animation-delay: 2s;
}

@keyframes linePulse {
    0%, 100% {
        opacity: 0.1;
    }
    50% {
        opacity: 0.4;
    }
}

/* Hero Container - Layout Asymétrique */
.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
    padding: 0 20px;
}

.hero-left {
    animation: fadeInLeft 0.8s ease-out;
}

.hero-right {
    animation: fadeInRight 0.8s ease-out;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Hero Left Content */
.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1.25rem;
    background: rgba(107, 76, 230, 0.1);
    border: 1px solid rgba(107, 76, 230, 0.3);
    border-radius: 50px;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.tag-dot {
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(107, 76, 230, 0.8);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.2);
    }
}

.hero-tag span:not(.tag-dot) {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    font-weight: 500;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3.5rem, 8vw, 6.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.title-main {
    display: block;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.title-accent {
    display: block;
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.85em;
    font-weight: 400;
    font-style: italic;
}

.hero-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero-btn {
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    border: none;
    cursor: pointer;
}

.hero-btn-primary {
    background: var(--gradient-1);
    color: white;
    box-shadow: 0 10px 30px rgba(107, 76, 230, 0.4);
}

.hero-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(107, 76, 230, 0.5);
}

.hero-btn-primary svg {
    transition: transform 0.3s ease;
}

.hero-btn-primary:hover svg {
    transform: translateX(5px);
}

.hero-btn-outline {
    background: rgba(255, 255, 255, 0.05);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.hero-btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.feature-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(107, 76, 230, 0.2);
    border: 1px solid rgba(107, 76, 230, 0.4);
    border-radius: 50%;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 0.8rem;
    flex-shrink: 0;
}

/* Hero Right Visual */
.hero-visual {
    position: relative;
    height: 500px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    column-gap: 0.1rem;
    row-gap: 1.5rem;
    align-items: center;
    justify-items: center;
    padding: 1rem;
}

.visual-card {
    position: relative;
    width: 100%;
    max-width: 200px;
    height: 240px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: cardFloat 6s ease-in-out infinite;
}

.card-1 {
    animation-delay: 0s;
    background: linear-gradient(135deg, rgba(107, 76, 230, 0.1), rgba(107, 76, 230, 0.05));
}

.card-2 {
    animation-delay: 2s;
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.1), rgba(255, 107, 157, 0.05));
}

.card-3 {
    animation-delay: 4s;
    background: linear-gradient(135deg, rgba(255, 217, 61, 0.1), rgba(255, 217, 61, 0.05));
}

.card-4 {
    animation-delay: 6s;
    background: linear-gradient(135deg, rgba(107, 76, 230, 0.1), rgba(107, 76, 230, 0.05));
}

@keyframes cardFloat {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    50% {
        transform: translate(5px, -10px) rotate(1deg);
    }
}

.visual-card:hover {
    transform: translateY(-10px) scale(1.05) !important;
    box-shadow: 0 20px 60px rgba(107, 76, 230, 0.4);
    border-color: rgba(107, 76, 230, 0.5);
}

.card-content {
    text-align: center;
}

.card-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px rgba(107, 76, 230, 0.3));
}

.card-text {
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
}

.visual-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(107, 76, 230, 0.2), transparent);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(60px);
    z-index: 0;
    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--gradient-1);
    color: white;
    box-shadow: 0 10px 30px rgba(107, 76, 230, 0.4), 0 0 20px rgba(107, 76, 230, 0.2);
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(107, 76, 230, 0.5), 0 0 30px rgba(107, 76, 230, 0.3);
}

.btn-arrow {
    transition: transform 0.3s ease;
}

.btn-primary:hover .btn-arrow {
    transform: translateX(5px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}


.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.scroll-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, rgba(107, 76, 230, 0.8), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0% {
        opacity: 0;
        transform: translateY(-10px);
    }
    50% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(10px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Sections communes */
section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(107, 76, 230, 0.3);
    position: relative;
    z-index: 1;
}

.section-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Services Section */
.services {
    background: linear-gradient(180deg, #0a0a0f 0%, #1a1a2e 50%, #0a0a0f 100%);
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(107, 76, 230, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(255, 107, 157, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto;
    }
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 2.2rem;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-1);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 60px rgba(107, 76, 230, 0.4), 0 0 40px rgba(107, 76, 230, 0.2), 0 0 0 1px rgba(255, 255, 255, 0.2);
    border-color: rgba(107, 76, 230, 0.5);
    background: rgba(255, 255, 255, 0.08);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.service-card > p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1rem;
}

.service-features {
    list-style: none;
    padding: 0;
}

.service-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: rgba(255, 255, 255, 0.9);
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.bonus-section {
    margin: 4rem 0;
    position: relative;
    z-index: 1;
}

.bonus-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.1), 0 0 40px rgba(255, 217, 61, 0.2);
    border: 2px solid rgba(255, 217, 61, 0.3);
    position: relative;
    overflow: hidden;
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.bonus-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-2);
    background-size: 200% 100%;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.bonus-icon {
    font-size: 4rem;
    flex-shrink: 0;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.bonus-content {
    flex: 1;
}

.bonus-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 1rem;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255, 217, 61, 0.3);
}

.bonus-highlight {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    text-shadow: 0 0 10px rgba(255, 217, 61, 0.5);
    padding: 0.75rem 1.5rem;
    background: rgba(255, 217, 61, 0.1);
    border-left: 3px solid var(--accent-color);
    border-radius: 8px;
}

.bonus-content > p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.1rem;
}

.bonus-content strong {
    color: var(--accent-color);
    font-weight: 600;
}

.bonus-features {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.bonus-features li {
    padding: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.bonus-features li:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 217, 61, 0.3);
    transform: translateX(5px);
}

.services-cta {
    text-align: center;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.services-cta p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

/* Conclusion Banner - Case horizontale */
.conclusion-banner {
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.conclusion-content {
    background: linear-gradient(135deg, rgba(255, 217, 61, 0.08) 0%, rgba(107, 76, 230, 0.08) 50%, rgba(255, 107, 157, 0.08) 100%);
    backdrop-filter: blur(25px) saturate(200%);
    -webkit-backdrop-filter: blur(25px) saturate(200%);
    border-radius: 20px;
    padding: 2rem 2.5rem;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        0 0 60px rgba(255, 217, 61, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 217, 61, 0.4);
    position: relative;
    overflow: hidden;
    display: flex;
    gap: 1.75rem;
    align-items: flex-start;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.conclusion-content:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 25px 70px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.15),
        0 0 80px rgba(255, 217, 61, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 217, 61, 0.6);
}

/* Barre de gradient animée en haut */
.conclusion-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, 
        rgba(255, 217, 61, 0.8) 0%, 
        rgba(107, 76, 230, 0.8) 25%, 
        rgba(255, 107, 157, 0.8) 50%, 
        rgba(107, 76, 230, 0.8) 75%, 
        rgba(255, 217, 61, 0.8) 100%);
    background-size: 200% 100%;
    animation: gradientShift 4s ease infinite;
    z-index: 1;
}

/* Effet de lueur animée en arrière-plan */
.conclusion-content::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 217, 61, 0.15) 0%, transparent 70%);
    animation: glowRotate 8s linear infinite;
    z-index: 0;
    pointer-events: none;
}

@keyframes glowRotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.conclusion-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
    animation: bounce 2s ease-in-out infinite;
    filter: drop-shadow(0 0 15px rgba(255, 217, 61, 0.6));
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.conclusion-content:hover .conclusion-icon {
    transform: scale(1.1) rotate(5deg);
}

.conclusion-text {
    flex: 1;
    position: relative;
    z-index: 2;
}

.conclusion-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    background: linear-gradient(135deg, #FFD93D 0%, #FF6B9D 50%, #6B4CE6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradientText 3s ease infinite;
    text-shadow: 0 0 40px rgba(255, 217, 61, 0.4);
    letter-spacing: -0.5px;
}

@keyframes gradientText {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.conclusion-text > p {
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1.25rem;
    line-height: 1.7;
    font-size: 0.95rem;
    font-weight: 400;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.conclusion-text strong {
    color: var(--accent-color);
    font-weight: 700;
    text-shadow: 0 0 15px rgba(255, 217, 61, 0.5);
}

.conclusion-features {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.conclusion-features li {
    padding: 0.875rem 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.04) 100%);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    line-height: 1.6;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.conclusion-features li::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 217, 61, 0.2), transparent);
    transition: left 0.5s ease;
}

.conclusion-features li:hover::before {
    left: 100%;
}

.conclusion-features li:hover {
    background: linear-gradient(135deg, rgba(255, 217, 61, 0.15) 0%, rgba(107, 76, 230, 0.1) 100%);
    border-color: rgba(255, 217, 61, 0.5);
    transform: translateX(8px) scale(1.02);
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(255, 217, 61, 0.2);
}

.conclusion-features li strong {
    color: var(--accent-color);
    font-weight: 700;
    text-shadow: 0 0 10px rgba(255, 217, 61, 0.6);
    display: inline-block;
    margin-right: 0.5rem;
}

/* About Section */
.about {
    background: linear-gradient(180deg, #0a0a0f 0%, #1a1a2e 100%);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 70% 20%, rgba(255, 107, 157, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(107, 76, 230, 0.15) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.about-wrapper {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    align-items: center;
}

.about-image {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-photo {
    width: 100%;
    max-width: 280px;
    height: auto;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4),
                0 0 0 1px rgba(255, 255, 255, 0.1),
                0 0 30px rgba(107, 76, 230, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    padding: 8px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.about-photo:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5),
                0 0 0 1px rgba(255, 255, 255, 0.2),
                0 0 40px rgba(107, 76, 230, 0.4);
}

.about-image::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: var(--gradient-1);
    border-radius: 25px;
    opacity: 0.3;
    z-index: -1;
    filter: blur(20px);
    transition: opacity 0.4s ease;
}

.about-image:hover::before {
    opacity: 0.5;
}

.about-text {
    position: relative;
    z-index: 1;
}

.about-intro {
    font-size: 1.3rem;
    font-weight: 600;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    display: block;
    line-height: 1.8;
}

.about-intro-white {
    color: #FFFFFF;
    color: white;
    -webkit-text-fill-color: white;
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    font-size: 1.1rem;
}


/* Testimonials Section */
.testimonials {
    background: linear-gradient(180deg, #1a1a2e 0%, #0a0a0f 100%);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 50% 50%, rgba(107, 76, 230, 0.1) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 0;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.testimonial-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(107, 76, 230, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s;
}

.testimonial-card:hover::after {
    opacity: 1;
}

.testimonial-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(107, 76, 230, 0.3), 0 0 40px rgba(107, 76, 230, 0.2), 0 0 0 1px rgba(255, 255, 255, 0.2);
    border-color: rgba(107, 76, 230, 0.4);
    background: rgba(255, 255, 255, 0.08);
}

.book-cover {
    width: 100%;
    height: 300px;
    position: relative;
    overflow: hidden;
    border-radius: 0 0 24px 24px;
    margin-top: auto;
}

.book-cover img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    background: rgba(255, 255, 255, 0.02);
}

.cover-placeholder {
    width: 100%;
    height: 100%;
    background: var(--gradient-1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border-radius: 0 0 24px 24px;
}

.cover-placeholder::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.cover-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.cover-placeholder p {
    font-size: 0.9rem;
    color: white;
    position: relative;
    z-index: 1;
    opacity: 0.9;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 2rem 2.5rem 1.5rem;
    position: relative;
    z-index: 1;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-content {
    padding: 2rem 2.5rem;
    position: relative;
    flex-grow: 1;
    z-index: 1;
}

.quote-icon {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--primary-color);
    opacity: 0.4;
    line-height: 1;
    margin-right: 0.5rem;
    display: inline-block;
    vertical-align: top;
}

.testimonial-content p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    font-style: italic;
    position: relative;
    z-index: 1;
    display: inline;
}


.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(107, 76, 230, 0.3);
    overflow: hidden;
    position: relative;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.author-avatar span {
    position: relative;
    z-index: 1;
}

.author-name {
    font-weight: 600;
    color: white;
}

.author-role {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Contact Section */
.contact {
    background: linear-gradient(180deg, #0a0a0f 0%, #1a1a2e 50%, #0a0a0f 100%);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 107, 157, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(107, 76, 230, 0.15) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    position: relative;
    z-index: 1;
}

.contact-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.contact-info > p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    padding: 1rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.contact-method:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(107, 76, 230, 0.3);
    transform: translateX(5px);
    box-shadow: 0 4px 20px rgba(107, 76, 230, 0.2);
}

.method-icon {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-1);
    border-radius: 15px;
}

.method-info h4 {
    font-weight: 600;
    color: white;
    margin-bottom: 0.25rem;
}

.method-info p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: white;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.05);
    color: white;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(107, 76, 230, 0.2), 0 0 20px rgba(107, 76, 230, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: linear-gradient(180deg, #0a0a0f 0%, #000000 100%);
    color: white;
    padding: 3rem 0 1.5rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 50% 0%, rgba(107, 76, 230, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.footer-brand h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-links h4,
.footer-social h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 0.5rem;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
    padding: 0.5rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
}

.social-link:hover {
    color: white;
    border-color: white;
    background: rgba(255, 255, 255, 0.1);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(10, 10, 15, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        width: 100%;
        text-align: center;
        transition: var(--transition);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
        padding: 2rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-menu.active {
        left: 0;
    }


    .contact-content {
        grid-template-columns: 1fr;
    }

    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .about-photo {
        max-width: 250px;
        margin: 0 auto;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .hero-right {
        order: -1;
    }

    .hero-visual {
        height: 400px;
        column-gap: 0.1rem;
        row-gap: 1rem;
        padding: 0.5rem;
    }

    .visual-card {
        max-width: 140px;
        height: 180px;
        padding: 1.5rem;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-btn {
        flex: 1;
        min-width: 200px;
        justify-content: center;
    }

    .hero-description {
        max-width: 100%;
    }

    .services-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .bonus-card {
        flex-direction: column;
        padding: 2rem;
    }

    .bonus-icon {
        font-size: 3rem;
        align-self: center;
    }

    .bonus-features {
        grid-template-columns: 1fr;
    }

    .conclusion-content {
        flex-direction: column;
        padding: 2rem 1.5rem;
        gap: 1.5rem;
    }

    .conclusion-icon {
        font-size: 3rem;
        align-self: center;
    }

    .conclusion-text h3 {
        font-size: 1.5rem;
        text-align: center;
    }

    .conclusion-text > p {
        font-size: 1rem;
        text-align: center;
    }

    .conclusion-features li {
        font-size: 0.95rem;
        padding: 1rem 1.25rem;
    }
}

/* Animations au scroll */
[data-aos] {
    opacity: 0;
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(30px);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

[data-aos="fade-right"] {
    transform: translateX(-30px);
}

[data-aos="fade-right"].aos-animate {
    transform: translateX(0);
}

[data-aos="fade-left"] {
    transform: translateX(30px);
}

[data-aos="fade-left"].aos-animate {
    transform: translateX(0);
}

/* Pages d'authentification */
.auth-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
    background: #0a0a0f;
}

.auth-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(107, 76, 230, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 107, 157, 0.15) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.auth-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 3rem;
    max-width: 600px;
    width: 100%;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

.auth-header {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.auth-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
}

.auth-message {
    padding: 1rem 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.auth-error {
    background: rgba(255, 107, 107, 0.1);
    border: 1px solid rgba(255, 107, 107, 0.3);
    color: #ff6b6b;
}

.auth-success {
    background: rgba(76, 175, 80, 0.1);
    border: 1px solid rgba(76, 175, 80, 0.3);
    color: #4caf50;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.auth-form .form-group {
    margin-bottom: 0;
}

.auth-form .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: white;
    font-size: 0.95rem;
}

.auth-form .form-group input {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.05);
    color: white;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.auth-form .form-group input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.auth-form .form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(107, 76, 230, 0.2), 0 0 20px rgba(107, 76, 230, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.auth-form .form-group select,
.auth-form .form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.05);
    color: white;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.auth-form .form-group select option {
    background: #1a1a2e;
    color: white;
}

.auth-form .form-group select:focus,
.auth-form .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(107, 76, 230, 0.2), 0 0 20px rgba(107, 76, 230, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.auth-form .form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.auth-form .form-group small {
    display: block;
    margin-top: 0.5rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.auth-footer {
    margin-top: 2rem;
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.auth-footer p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
}

.auth-footer a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.auth-footer a:hover {
    color: var(--secondary-color);
    text-shadow: 0 0 10px rgba(107, 76, 230, 0.5);
}

/* Dashboard */
.dashboard-section {
    min-height: 100vh;
    padding: 120px 0 60px;
    background: #0a0a0f;
    position: relative;
}

.dashboard-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(107, 76, 230, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 107, 157, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.dashboard-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.dashboard-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.dashboard-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.dashboard-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.dashboard-card h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 2rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Profile Card - Design amélioré */
.profile-card {
    position: relative;
    overflow: hidden;
}

.profile-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-1);
    z-index: 1;
}

.profile-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.profile-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--gradient-1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(107, 76, 230, 0.4);
    position: relative;
    overflow: hidden;
}

.profile-avatar::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    animation: glowRotate 6s linear infinite;
}

.profile-avatar span {
    position: relative;
    z-index: 1;
}

.profile-header-text h2 {
    margin-bottom: 0.25rem;
}

.profile-subtitle {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin: 0;
}

.profile-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.profile-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1rem 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.profile-item:last-child {
    border-bottom: none;
}

.profile-item:hover {
    transform: translateX(5px);
}

.profile-item:hover .profile-item-icon {
    background: rgba(107, 76, 230, 0.25);
    border-color: rgba(107, 76, 230, 0.5);
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(107, 76, 230, 0.4);
}

.profile-item-icon {
    font-size: 1.75rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(107, 76, 230, 0.15);
    border-radius: 12px;
    flex-shrink: 0;
    border: 1px solid rgba(107, 76, 230, 0.3);
    transition: all 0.3s ease;
}

.profile-item:hover .profile-item-icon {
    background: rgba(107, 76, 230, 0.25);
    border-color: rgba(107, 76, 230, 0.5);
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(107, 76, 230, 0.4);
}

.profile-item-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.profile-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.profile-value {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: var(--transition);
}

.service-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(107, 76, 230, 0.3);
    transform: translateX(5px);
}

.service-item .service-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.service-item .service-info h3 {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.service-item .service-info p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0;
}

.card-highlight {
    background: rgba(255, 217, 61, 0.1);
    border-left: 3px solid var(--accent-color);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.card-highlight p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    margin: 0;
}

.card-highlight strong {
    color: var(--accent-color);
}

.nav-user {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-user .user-name {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.btn-logout {
    padding: 0.5rem 1rem;
    background: rgba(255, 107, 107, 0.1);
    border: 1px solid rgba(255, 107, 107, 0.3);
    border-radius: 8px;
    color: #ff6b6b;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
}

.btn-logout:hover {
    background: rgba(255, 107, 107, 0.2);
    border-color: rgba(255, 107, 107, 0.5);
}

.nav-link.active {
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(107, 76, 230, 0.5);
}

@media (max-width: 768px) {
    .auth-card {
        padding: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   BOUTONS CONNEXION ET INSCRIPTION - DESIGN MODERNE ET ÉLÉGANT
   ============================================ */

/* Container pour les boutons */
.nav-user {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Bouton Connexion - Style Glassmorphism avec bordure lumineuse */
button.btn-login,
.nav-user button.btn-login {
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(20px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
    color: #FFFFFF !important;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
    padding: 0.75rem 1.75rem !important;
    border-radius: 50px !important;
    font-size: 0.95rem !important;
    font-weight: 600 !important;
    font-family: 'Inter', sans-serif !important;
    cursor: pointer !important;
    margin: 0 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2), 
                0 0 0 0 rgba(255, 255, 255, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    position: relative !important;
    overflow: hidden !important;
    -webkit-appearance: none !important;
    appearance: none !important;
    outline: none !important;
    text-decoration: none !important;
    letter-spacing: 0.3px !important;
}

/* Effet de brillance au survol pour le bouton Connexion */
button.btn-login::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: -100% !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent) !important;
    transition: left 0.5s ease !important;
}

button.btn-login:hover::before {
    left: 100% !important;
}

button.btn-login:hover,
.nav-user button.btn-login:hover {
    background: rgba(255, 255, 255, 0.15) !important;
    border-color: rgba(255, 255, 255, 0.5) !important;
    transform: translateY(-2px) scale(1.02) !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3),
                0 0 20px rgba(255, 255, 255, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.3) !important;
    color: #FFFFFF !important;
}

button.btn-login:active {
    transform: translateY(0) scale(0.98) !important;
}

/* Bouton Inscription - Dégradé animé avec effet de brillance */
button.btn-register,
.nav-user button.btn-register {
    background: var(--gradient-1) !important;
    background-image: linear-gradient(135deg, #6B4CE6 0%, #FF6B9D 100%) !important;
    color: #FFFFFF !important;
    border: 2px solid rgba(255, 255, 255, 0.2) !important;
    padding: 0.75rem 1.75rem !important;
    border-radius: 50px !important;
    font-size: 0.95rem !important;
    font-weight: 600 !important;
    font-family: 'Inter', sans-serif !important;
    cursor: pointer !important;
    margin: 0 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 6px 20px rgba(107, 76, 230, 0.4),
                0 0 0 0 rgba(107, 76, 230, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.3) !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    position: relative !important;
    overflow: hidden !important;
    -webkit-appearance: none !important;
    appearance: none !important;
    outline: none !important;
    text-decoration: none !important;
    letter-spacing: 0.3px !important;
}

/* Effet de brillance animé pour le bouton Inscription */
button.btn-register::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: -100% !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent) !important;
    transition: left 0.6s ease !important;
}

button.btn-register:hover::before {
    left: 100% !important;
}

/* Effet de lueur au survol pour le bouton Inscription */
button.btn-register::after {
    content: '' !important;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    width: 0 !important;
    height: 0 !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.3) !important;
    transform: translate(-50%, -50%) !important;
    transition: width 0.4s ease, height 0.4s ease, opacity 0.4s ease !important;
    opacity: 0 !important;
    z-index: 0 !important;
}

button.btn-register:hover::after {
    width: 300px !important;
    height: 300px !important;
    opacity: 0.3 !important;
}

button.btn-register:hover,
.nav-user button.btn-register:hover {
    background: linear-gradient(135deg, #7B5CD6 0%, #FF7BA5 100%) !important;
    background-image: linear-gradient(135deg, #7B5CD6 0%, #FF7BA5 100%) !important;
    border-color: rgba(255, 255, 255, 0.4) !important;
    transform: translateY(-2px) scale(1.02) !important;
    box-shadow: 0 10px 30px rgba(107, 76, 230, 0.5),
                0 0 30px rgba(107, 76, 230, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.4) !important;
    color: #FFFFFF !important;
}

button.btn-register:active {
    transform: translateY(0) scale(0.98) !important;
}

/* Assurer que le texte reste au-dessus des effets */
button.btn-login span,
button.btn-register span,
button.btn-login,
button.btn-register {
    position: relative !important;
    z-index: 1 !important;
}

/* Responsive pour mobile */
@media (max-width: 768px) {
    .nav-user {
        display: none;
    }
    
    button.btn-login,
    button.btn-register {
        padding: 0.7rem 1.5rem !important;
        font-size: 0.9rem !important;
    }
}

@media (min-width: 769px) {
    .nav-user {
        display: flex;
        align-items: center;
        gap: 1rem;
    }
}

/* Styles pour la page Synonymes */
.synonymes-search {
    padding: 1rem 0;
}

.search-form-group {
    margin-bottom: 2rem;
}

.search-form-group label {
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: white;
    font-size: 1.1rem;
}

.search-input-wrapper {
    display: flex;
    gap: 1rem;
    align-items: stretch;
}

.search-input-wrapper input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.05);
    color: white;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.search-input-wrapper input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.search-input-wrapper input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(107, 76, 230, 0.2), 0 0 20px rgba(107, 76, 230, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.results-container {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
}

.results-container h3 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.synonyms-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
}

.synonym-item {
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: white;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.synonym-item:hover {
    background: rgba(107, 76, 230, 0.2);
    border-color: rgba(107, 76, 230, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(107, 76, 230, 0.3);
}

.no-results {
    margin-top: 2rem;
    padding: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
}

/* Styles pour la page Factures et Devis */
.documents-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.document-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: var(--transition);
}

.document-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(107, 76, 230, 0.3);
    transform: translateX(5px);
}

.document-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.document-info {
    flex: 1;
}

.document-info h3 {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.document-info p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin: 0.25rem 0;
}

.status {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 0.5rem;
}

.status.paid {
    background: rgba(76, 175, 80, 0.2);
    color: #4caf50;
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.status.pending {
    background: rgba(255, 217, 61, 0.2);
    color: #ffd93d;
    border: 1px solid rgba(255, 217, 61, 0.3);
}

.status.brouillon {
    background: rgba(158, 158, 158, 0.2);
    color: #9e9e9e;
    border: 1px solid rgba(158, 158, 158, 0.3);
}

.status.envoye,
.status.accepte {
    background: rgba(76, 175, 80, 0.2);
    color: #4caf50;
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.status.refuse,
.status.annule {
    background: rgba(244, 67, 54, 0.2);
    color: #f44336;
    border: 1px solid rgba(244, 67, 54, 0.3);
}

.document-actions {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

.document-actions .btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
}

/* Styles pour les outils dans le dashboard */
.tools-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.tool-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    text-decoration: none;
    transition: var(--transition);
}

.tool-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(107, 76, 230, 0.3);
    transform: translateX(5px);
}

.tool-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.tool-info h3 {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.tool-info p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Popup d'ouverture */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    background: linear-gradient(135deg, rgba(20, 20, 35, 0.98) 0%, rgba(15, 15, 30, 0.98) 100%);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border: 2px solid rgba(255, 217, 61, 0.3);
    border-radius: 24px;
    padding: 2.5rem 3rem;
    max-width: 550px;
    width: 90%;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        0 0 60px rgba(255, 217, 61, 0.3);
    position: relative;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.popup-overlay.active .popup-content {
    transform: scale(1) translateY(0);
}

.popup-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    line-height: 1;
}

.popup-close:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 217, 61, 0.5);
    transform: rotate(90deg);
}

.popup-icon {
    font-size: 4rem;
    text-align: center;
    margin-bottom: 1rem;
    animation: bounce 2s ease-in-out infinite;
}

.popup-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 1.5rem;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.popup-body {
    margin-bottom: 2rem;
}

.popup-message {
    background: linear-gradient(135deg, rgba(255, 217, 61, 0.15) 0%, rgba(107, 76, 230, 0.1) 100%);
    border: 1px solid rgba(255, 217, 61, 0.3);
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1.25rem;
}

.popup-message p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0;
    text-align: center;
}

.popup-highlight {
    color: var(--accent-color);
    font-weight: 700;
    text-shadow: 0 0 10px rgba(255, 217, 61, 0.5);
}

.popup-info {
    background: rgba(107, 76, 230, 0.1);
    border: 1px solid rgba(107, 76, 230, 0.3);
    border-radius: 12px;
    padding: 1.25rem;
}

.popup-info p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.popup-button {
    width: 100%;
    padding: 1rem 2rem;
    background: var(--gradient-1);
    border: none;
    border-radius: 12px;
    color: #FFFFFF;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(107, 76, 230, 0.4);
}

.popup-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(107, 76, 230, 0.6);
}

.popup-button:active {
    transform: translateY(0);
}

/* Responsive pour le popup */
@media (max-width: 768px) {
    .popup-content {
        padding: 2rem 1.5rem;
        max-width: 95%;
    }

    .popup-title {
        font-size: 1.5rem;
    }

    .popup-icon {
        font-size: 3rem;
    }

    .popup-message p {
        font-size: 0.95rem;
    }

    .popup-info p {
        font-size: 0.9rem;
    }
}
