/* ========== Base ========== */
:root {
    /* Couleurs principales */
    --color-dark: #0c0d1a;
    --color-darker: #060714;
    --color-blue: #1a2b56;
    --color-blue-light: #3a4d7a;
    --color-gold: #d4af37;
    --color-gold-light: #f7d456;
    --color-white: #ffffff;
    --color-gray: #a0a0a0;
    
    /* Dégradés */
    --gradient-blue: linear-gradient(135deg, var(--color-blue), var(--color-blue-light));
    --gradient-gold: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
    --gradient-dark: linear-gradient(135deg, var(--color-darker), var(--color-dark));
    
    /* Ombres */
    --shadow-sm: 0 2px 5px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 10px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 20px rgba(0, 0, 0, 0.2);
    --shadow-gold: 0 0 15px rgba(212, 175, 55, 0.5);
    --shadow-blue: 0 0 15px rgba(26, 43, 86, 0.5);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Typographie */
    --font-primary: 'Raleway', sans-serif;
    --font-secondary: 'Cinzel', serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: var(--font-primary);
    background-color: var(--color-dark);
    color: var(--color-white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Animations de scroll */
@keyframes fadeInUpScroll {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUpScroll 0.8s ease-out forwards;
}

/* Sélection de texte personnalisée */
::selection {
    background-color: var(--color-gold);
    color: var(--color-dark);
}

::-moz-selection {
    background-color: var(--color-gold);
    color: var(--color-dark);
}

/* Scrollbar personnalisée */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--color-darker);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--color-gold), var(--color-gold-light));
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-gold-light);
}

/* ========== Typographie ========== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-secondary);
    margin-bottom: 1rem;
    line-height: 1.3;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.8rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--color-white);
    text-decoration: none;
    transition: var(--transition-fast);
}

a:hover {
    color: var(--color-gold);
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
}

.section-header h2 {
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
    font-size: 3rem;
    letter-spacing: 2px;
}

.section-header h2::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -100px;
    width: 80px;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--color-gold));
}

.section-header h2::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -100px;
    width: 80px;
    height: 2px;
    background: linear-gradient(to left, transparent, var(--color-gold));
}

.section-header p {
    color: rgba(255, 255, 255, 0.7);
    max-width: 750px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
}

.magic-text {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
    position: relative;
}

.magic-text::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--gradient-gold);
    opacity: 0.7;
}

/* ========== Loader SUPPRIMÉ ========== */

/* ========== Header & Navigation - Design Épuré ========== */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 1.2rem 0;
    background-color: rgba(6, 7, 20, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-family: var(--font-secondary);
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 2px;
    transition: all var(--transition-normal);
}

.logo-text:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.3));
}

.main-nav {
    display: flex;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 0.5rem;
}

.nav-list li {
    margin-left: 0;
}

.nav-list a {
    position: relative;
    display: inline-block;
    padding: 0.7rem 1.2rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all var(--transition-normal);
    border-radius: 12px;
    font-weight: 500;
}

.nav-list a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 12px;
    opacity: 0;
    transition: opacity var(--transition-normal);
    z-index: -1;
}

.nav-list a:hover::before {
    opacity: 1;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    transition: width var(--transition-normal);
    border-radius: 2px;
}

.nav-list a:hover::after {
    width: 70%;
}

.discord-link {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(88, 101, 242, 0.15), rgba(88, 101, 242, 0.25));
    color: #7289da;
    padding: 0.7rem 1.5rem;
    border-radius: 12px;
    transition: all var(--transition-normal);
    border: 1px solid rgba(88, 101, 242, 0.3);
    backdrop-filter: blur(10px);
    font-weight: 600;
}

.discord-link:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, rgba(88, 101, 242, 0.3), rgba(88, 101, 242, 0.4));
    box-shadow: 0 10px 25px rgba(88, 101, 242, 0.3);
    color: #7289da;
    border-color: rgba(88, 101, 242, 0.5);
}

.discord-link i {
    margin-right: 8px;
    font-size: 1.1rem;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--color-white);
    border-radius: 3px;
    transition: var(--transition-fast);
}

.mobile-menu {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background-color: var(--color-darker);
    padding: 1rem 0;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
    z-index: 999;
    box-shadow: var(--shadow-lg);
}

.mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-list li {
    padding: 0.8rem 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-list a {
    display: block;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Header scroll effect */
.main-header.scrolled {
    padding: 0.8rem 0;
    background-color: rgba(6, 7, 20, 0.95);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    border-bottom-color: rgba(212, 175, 55, 0.2);
}

.main-header.scrolled .logo-text {
    font-size: 1.7rem;
}

/* ========== Buttons - Design Moderne ========== */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    font-family: var(--font-primary);
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-light) 100%);
    color: var(--color-dark);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
    border: 2px solid transparent;
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
    color: var(--color-dark);
}

.btn-secondary {
    background: rgba(26, 43, 86, 0.3);
    color: var(--color-white);
    border: 2px solid rgba(212, 175, 55, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    transform: translateY(-4px) scale(1.02);
    background: rgba(26, 43, 86, 0.5);
    border-color: var(--color-gold);
    box-shadow: 0 15px 40px rgba(26, 43, 86, 0.4);
    color: var(--color-white);
}

.btn-shop {
    background: var(--gradient-gold);
    color: var(--color-dark);
    box-shadow: var(--shadow-gold);
    width: 100%;
    text-align: center;
    padding: 1rem;
    font-weight: 600;
    border-radius: 4px;
    transition: var(--transition-fast);
}

.btn-shop:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.6);
    color: var(--color-dark);
}

.btn-newsletter {
    background: var(--gradient-gold);
    color: var(--color-dark);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
}

.btn-newsletter:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

/* ========== Hero Section - Design Épuré et Magique ========== */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding: 2rem;
    background: linear-gradient(135deg, #060714 0%, #0c0d1a 50%, #1a2b56 100%);
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatCircle 20s ease-in-out infinite;
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(26, 43, 86, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatCircle 15s ease-in-out infinite reverse;
    z-index: 0;
}

@keyframes floatCircle {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(30px, -30px) scale(1.1);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23d4af37' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.4;
    z-index: 0;
}

.hero-content {
    max-width: 900px;
    z-index: 1;
    position: relative;
}

.hero-title {
    font-size: 5.5rem;
    margin-bottom: 1.5rem;
    letter-spacing: 3px;
    text-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
    animation: fadeInUp 1s ease-out;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.8);
    animation: fadeInUp 1s ease-out 0.2s both;
    font-weight: 300;
    letter-spacing: 1px;
}

.hero-video {
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-video iframe {
    transition: all 0.4s ease;
}

.hero-video:hover iframe {
    transform: scale(1.02);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.6) !important;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    animation: fadeInUp 1s ease-out 0.5s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero .magic-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.hero .magic-particles::before,
.hero .magic-particles::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(247, 212, 86, 0.1) 0%, transparent 70%);
}

.hero .magic-particles::before {
    top: 20%;
    left: 10%;
    animation: pulse 8s ease-in-out infinite;
}

.hero .magic-particles::after {
    bottom: 20%;
    right: 10%;
    animation: pulse 8s ease-in-out infinite 4s;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.6;
    }
}

/* ========== Slider Section - Design Unique avec Formes ========== */
.slider-section {
    padding: 8rem 2rem;
    background: linear-gradient(180deg, var(--color-darker) 0%, #0d0e1c 100%);
    position: relative;
    overflow: hidden;
}

.slider-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(135deg, #060714 0%, #0c0d1a 50%, #1a2b56 100%);
    clip-path: polygon(0 0, 100% 0, 100% 50%, 0 100%);
    z-index: 0;
}

.slider-section::after {
    content: '';
    position: absolute;
    top: 10%;
    right: -100px;
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05), transparent);
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    animation: morphShape 20s ease-in-out infinite;
    z-index: 0;
}

@keyframes morphShape {
    0%, 100% {
        border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
        transform: rotate(0deg);
    }
    50% {
        border-radius: 70% 30% 50% 50% / 60% 40% 60% 40%;
        transform: rotate(45deg);
    }
}

.slider-container {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.slider {
    position: relative;
    height: 550px;
    overflow: hidden;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    background: rgba(26, 43, 86, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease-in-out, transform 0.6s ease-in-out;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    transform: scale(1.05);
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, 
        rgba(6, 7, 20, 0.1) 0%, 
        rgba(6, 7, 20, 0.5) 60%,
        rgba(6, 7, 20, 0.9) 100%);
}

.slide.active {
    opacity: 1;
    transform: scale(1);
}

.slide:nth-child(1) {
    background-image: url('/img/slider1.png');
}
.slide:nth-child(2) {
    background-image: url('/img/slider2.png');
}
.slide:nth-child(3) {
    background-image: url('/img/slider3.png');
}
.slide:nth-child(4) {
    background-image: url('/img/slider4.png');
}

.slide-content {
    position: relative;
    padding: 3rem;
    width: 100%;
    color: var(--color-white);
    z-index: 1;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
    backdrop-filter: blur(5px);
}

.slide-content h3 {
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
}

.slide-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 600px;
}

.slider-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2.5rem;
    gap: 2rem;
}

.prev-slide,
.next-slide {
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid rgba(212, 175, 55, 0.3);
    color: var(--color-gold);
    font-size: 1.3rem;
    cursor: pointer;
    transition: all var(--transition-normal);
    padding: 1rem 1.5rem;
    border-radius: 50%;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.prev-slide:hover,
.next-slide:hover {
    background: var(--gradient-gold);
    color: var(--color-dark);
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.slider-dots {
    display: flex;
    gap: 0.8rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(160, 160, 160, 0.3);
    cursor: pointer;
    transition: all var(--transition-normal);
    border: 2px solid transparent;
}

.dot:hover {
    background-color: rgba(160, 160, 160, 0.6);
}

.dot.active {
    background: var(--gradient-gold);
    transform: scale(1.4);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.6);
}

/* ========== About Section - Design Cartes Glassmorphism ========== */
.about-section {
    padding: 8rem 2rem;
    background: linear-gradient(180deg, #0d0e1c 0%, var(--color-dark) 50%, #111222 100%);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: -200px;
    left: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(26, 43, 86, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.about-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    right: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
}

.about-card {
    background: rgba(26, 43, 86, 0.15);
    backdrop-filter: blur(15px);
    border-radius: 25px;
    padding: 2.5rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.about-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        from 0deg at 50% 50%,
        transparent 0deg,
        rgba(212, 175, 55, 0.15) 90deg,
        transparent 180deg,
        rgba(26, 43, 86, 0.2) 270deg,
        transparent 360deg
    );
    opacity: 0;
    transition: opacity 0.5s ease;
    animation: rotateGradient 8s linear infinite;
    z-index: -1;
}

@keyframes rotateGradient {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.about-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3),
                0 0 30px rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.3);
}

.about-card:hover::before {
    opacity: 1;
}

.card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(247, 212, 86, 0.3));
    backdrop-filter: blur(10px);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.8rem;
    font-size: 1.8rem;
    color: var(--color-gold-light);
    transition: all var(--transition-normal);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.2);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.about-card:hover .card-icon {
    transform: scale(1.15) rotate(5deg);
    background: var(--gradient-gold);
    color: var(--color-dark);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.4);
}

.about-card h3 {
    margin-bottom: 1.2rem;
    font-size: 1.6rem;
    background: linear-gradient(135deg, #ffffff, rgba(255, 255, 255, 0.8));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.about-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ========== Features Section - Design Asymétrique et Ludique ========== */
.features-section {
    padding: 8rem 2rem;
    background: radial-gradient(ellipse at top, #1a2b56 0%, var(--color-darker) 50%, #060714 100%);
    position: relative;
    overflow: hidden;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: #111222;
    clip-path: polygon(0 0, 100% 30%, 100% 100%, 0 70%);
    z-index: 0;
}

.features-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 200px;
    background: #060714;
    clip-path: polygon(0 30%, 100% 0, 100% 100%, 0 100%);
    z-index: 0;
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.feature-row {
    display: flex;
    align-items: center;
    margin-bottom: 6rem;
    gap: 4rem;
    position: relative;
}

.feature-row::before {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1), transparent);
    border-radius: 50%;
    z-index: -1;
    animation: float 6s ease-in-out infinite;
}

.feature-row:nth-child(1)::before {
    top: -50px;
    left: -50px;
}

.feature-row:nth-child(2)::before {
    bottom: -50px;
    right: -50px;
    animation-delay: 2s;
}

.feature-row:nth-child(3)::before {
    top: -50px;
    left: -50px;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-20px) scale(1.1);
    }
}

.feature-row.reverse {
    flex-direction: row-reverse;
}

.feature-content {
    flex: 1;
}

.feature-content h3 {
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
    font-size: 2rem;
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.feature-content h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--gradient-gold);
    border-radius: 3px;
}

.feature-content p {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
    margin-top: 1.5rem;
}

.feature-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    padding: 0.8rem 1.2rem;
    background: rgba(26, 43, 86, 0.2);
    border-radius: 12px;
    border-left: 3px solid var(--color-gold);
    transition: all var(--transition-normal);
}

.feature-list li:hover {
    background: rgba(26, 43, 86, 0.4);
    transform: translateX(10px);
}

.feature-list li::before {
    content: '\f0e7';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-right: 15px;
    color: var(--color-gold);
    font-size: 1rem;
}

.feature-visual {
    flex: 1;
    position: relative;
    min-height: 350px;
    border-radius: 30px;
    overflow: hidden;
    background: rgba(26, 43, 86, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(212, 175, 55, 0.15);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: all 0.5s ease;
}

.feature-visual:hover {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4),
                0 0 50px rgba(212, 175, 55, 0.2);
}

.magic-visual-1,
.magic-visual-2,
.magic-visual-3 {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.magic-visual-1 {
    background: linear-gradient(135deg, rgba(26, 43, 86, 0.8), rgba(212, 175, 55, 0.2));
}

.magic-visual-2 {
    background: linear-gradient(225deg, rgba(212, 175, 55, 0.3), rgba(26, 43, 86, 0.8));
}

.magic-visual-3 {
    background: linear-gradient(315deg, rgba(26, 43, 86, 0.7), rgba(212, 175, 55, 0.25));
}

.visual-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.6;
}

.magic-visual-1 .visual-effect {
    background-image: radial-gradient(var(--color-gold-light) 2px, transparent 2px);
    background-size: 30px 30px;
    animation: sparkleEffect 20s linear infinite;
}

.magic-visual-2 .visual-effect {
    background-image: 
        radial-gradient(circle, var(--color-gold) 1px, transparent 1px),
        radial-gradient(circle, var(--color-blue-light) 1px, transparent 1px);
    background-size: 25px 25px, 18px 18px;
    background-position: 0 0, 12px 12px;
    animation: particlesMove 15s linear infinite;
}

@keyframes particlesMove {
    0% {
        background-position: 0 0, 12px 12px;
    }
    100% {
        background-position: 50px 50px, 62px 62px;
    }
}

.magic-visual-3 .visual-effect {
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 20px,
        rgba(212, 175, 55, 0.1) 20px,
        rgba(212, 175, 55, 0.1) 21px
    );
    animation: patternMove 10s linear infinite;
}

@keyframes sparkleEffect {
    0%, 100% {
        opacity: 0.4;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

@keyframes patternMove {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 40px 40px;
    }
}

/* ========== Testimonials Section ========== */
.testimonials-section {
    padding: 5rem 2rem;
    background-color: var(--color-dark);
}

.testimonials-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial {
    background-color: rgba(26, 43, 86, 0.2);
    border-radius: 8px;
    padding: 2rem;
    transition: var(--transition-normal);
}

.testimonial:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.testimonial-content {
    position: relative;
    padding: 1rem 0;
}

.testimonial-content::before,
.testimonial-content::after {
    content: '"';
    font-family: var(--font-secondary);
    font-size: 3rem;
    color: var(--color-gold);
    line-height: 0;
    position: absolute;
}

.testimonial-content::before {
    top: 0;
    left: -10px;
}

.testimonial-content::after {
    bottom: 0;
    right: -10px;
    transform: rotate(180deg);
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: 1.5rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 1rem;
    background-color: var(--color-blue);
    position: relative;
    overflow: hidden;
}

.magic-avatar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: skewX(-20deg);
    animation: avatarShine 3s infinite;
}

@keyframes avatarShine {
    0% {
        left: -150%;
    }
    100% {
        left: 150%;
    }
}

.author-info h4 {
    margin-bottom: 0.2rem;
    font-size: 1.1rem;
}

.author-info p {
    font-size: 0.9rem;
    color: var(--color-gray);
    margin: 0;
}

/* ========== CTA Section - Design Immersif ========== */
.cta-section {
    padding: 8rem 2rem;
    background: linear-gradient(135deg, #1a2b56 0%, #0c0d1a 50%, #060714 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulseGlow 8s ease-in-out infinite;
    z-index: 0;
}

@keyframes pulseGlow {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.8;
    }
}

.cta-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23d4af37' fill-opacity='0.05'%3E%3Cpath d='M0 0h80v80H0V0zm20 20v40h40V20H20zm5 5h30v30H25V25z'/%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
    z-index: 0;
}

.cta-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    padding: 3rem;
    background: rgba(26, 43, 86, 0.2);
    backdrop-filter: blur(15px);
    border-radius: 30px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.cta-content h2 {
    margin-bottom: 1.8rem;
    font-size: 3rem;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
}

.cta-content p {
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cta-magic-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.cta-magic-effect::before,
.cta-magic-effect::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
}

.cta-magic-effect::before {
    top: -100px;
    left: -100px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15), transparent);
    animation: float 10s ease-in-out infinite;
}

.cta-magic-effect::after {
    bottom: -100px;
    right: -100px;
    background: radial-gradient(circle, rgba(26, 43, 86, 0.3), transparent);
    animation: float 10s ease-in-out infinite reverse;
}

/* ========== Shop Page ========== */
.shop-header {
    height: 40vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 80px;
}

.shop-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(26, 43, 86, 0.7), var(--color-darker));
    z-index: -1;
}

.shop-header-content {
    max-width: 800px;
    padding: 2rem;
    z-index: 1;
}

.shop-header-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.shop-packs {
    padding: 5rem 2rem;
    background-color: var(--color-dark);
}

.packs-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.pack {
    background-color: rgba(26, 43, 86, 0.2);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition-normal);
    position: relative;
    z-index: 1;
}

.pack.featured {
    transform: scale(1.05);
    z-index: 2;
    box-shadow: var(--shadow-lg);
}

.pack.featured::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: var(--gradient-gold);
    z-index: -1;
    border-radius: 12px;
    opacity: 0.5;
    filter: blur(5px);
}

.pack:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.pack.featured:hover {
    transform: translateY(-10px) scale(1.05);
}

.pack-header {
    padding: 2rem;
    background: var(--gradient-blue);
    position: relative;
}

.pack-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--gradient-gold);
    color: var(--color-dark);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.3rem 0.8rem;
    border-radius: 0 0 0 4px;
}

.pack-header h3 {
    margin-bottom: 0.5rem;
}

.pack-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-gold);
}

.pack-content {
    padding: 2rem;
}

.pack-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pack-features li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
}

.pack-features i {
    color: var(--color-gold);
    margin-right: 0.8rem;
    font-size: 1.1rem;
}

.pack-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0;
    transition: var(--transition-normal);
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.2), transparent 70%);
    z-index: -1;
}

.pack:hover .pack-glow {
    opacity: 1;
}

.credits-benefits {
    padding: 5rem 2rem;
    background-color: var(--color-darker);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-card {
    text-align: center;
    padding: 2rem;
    transition: var(--transition-normal);
    border-radius: 8px;
    background-color: rgba(26, 43, 86, 0.2);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    background-color: rgba(26, 43, 86, 0.4);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: var(--color-dark);
    box-shadow: var(--shadow-gold);
}

.benefit-card h3 {
    margin-bottom: 1rem;
}

.shop-faq {
    padding: 5rem 2rem;
    background-color: var(--color-dark);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 1rem;
}

.faq-question {
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.2rem;
}

.faq-toggle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(26, 43, 86, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.faq-toggle i {
    transition: var(--transition-fast);
}

.faq-item.active .faq-toggle {
    background: var(--gradient-gold);
    color: var(--color-dark);
}

.faq-item.active .faq-toggle i {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: var(--transition-normal);
    padding: 0 1rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 1.5rem;
}

.shop-cta {
    padding: 5rem 2rem;
    background: var(--gradient-dark);
    position: relative;
    overflow: hidden;
    text-align: center;
}

/* ========== Footer - Design Épuré ========== */
.main-footer {
    background: linear-gradient(180deg, var(--color-darker) 0%, #030409 100%);
    padding: 5rem 2rem 2rem;
    position: relative;
    overflow: hidden;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(212, 175, 55, 0.5) 50%, 
        transparent 100%);
}

.main-footer::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05), transparent);
    border-radius: 50%;
    pointer-events: none;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 4rem;
    position: relative;
    z-index: 1;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-logo .logo-text {
    font-size: 1.8rem;
    display: inline-block;
    transition: all var(--transition-normal);
}

.footer-logo .logo-text:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.3));
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    margin-top: 0.5rem;
}

.footer-column h3 {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--gradient-gold);
    border-radius: 3px;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 1rem;
}

.footer-column a {
    transition: all var(--transition-normal);
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    display: inline-flex;
    align-items: center;
    padding: 0.3rem 0;
}

.footer-column a:hover {
    color: var(--color-gold);
    transform: translateX(8px);
}

.footer-column a i {
    margin-right: 10px;
    width: 20px;
    text-align: center;
    color: var(--color-gold);
    transition: all var(--transition-normal);
}

.footer-column a:hover i {
    transform: scale(1.2);
}

.footer-bottom {
    max-width: 1400px;
    margin: 4rem auto 0;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom p {
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

/* ========== Responsive Styles ========== */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 4rem;
    }
    
    .section-header h2 {
        font-size: 2.5rem;
    }
    
    .section-header h2::before,
    .section-header h2::after {
        display: none;
    }
    
    .feature-row {
        flex-direction: column;
        gap: 3rem;
    }
    
    .feature-row.reverse {
        flex-direction: column;
    }
    
    .feature-visual {
        width: 100%;
        min-height: 300px;
    }
    
    .footer-columns {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero {
        padding: 2rem 1.5rem;
    }
    
    .hero-title {
        font-size: 3rem;
        letter-spacing: 1px;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-video iframe {
        height: 300px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .slider {
        height: 400px;
        border-radius: 20px;
    }
    
    .slider-section {
        padding: 5rem 1.5rem;
    }
    
    .about-section,
    .features-section,
    .cta-section {
        padding: 5rem 1.5rem;
    }
    
    .about-grid {
        gap: 2rem;
    }
    
    .section-header {
        margin-bottom: 3rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-content {
        padding: 2rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .pack.featured {
        transform: scale(1);
    }
    
    .pack.featured:hover {
        transform: translateY(-10px);
    }
    
    .footer-columns {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-video iframe {
        height: 220px;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .slider {
        height: 300px;
    }
    
    .btn {
        padding: 0.9rem 2rem;
        font-size: 0.85rem;
    }
    
    .about-card,
    .cta-content {
        padding: 1.8rem;
    }
    
    .slide-content {
        padding: 2rem;
    }
    
    .slide-content h3 {
        font-size: 1.8rem;
    }
}

/* ========== Boutique Lumens - Styles Spécifiques ========== */

/* Header de la boutique Lumens */
.shop-header {
    background: linear-gradient(135deg, #060714 0%, #0c0d1a 50%, #1a2b56 100%);
    position: relative;
    overflow: hidden;
}

.lumens-icon-header {
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(247, 212, 86, 0.3), transparent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 3rem;
    color: var(--color-gold);
    animation: pulseGlow 3s ease-in-out infinite;
    box-shadow: 0 0 60px rgba(212, 175, 55, 0.4);
}

.lumens-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.lumens-particles::before,
.lumens-particles::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(247, 212, 86, 0.15), transparent);
    animation: floatParticle 10s ease-in-out infinite;
}

.lumens-particles::before {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.lumens-particles::after {
    bottom: 10%;
    right: 5%;
    animation-delay: 5s;
}

@keyframes floatParticle {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(30px, -30px) scale(1.2);
        opacity: 0.8;
    }
}

/* Section des packs Lumens */
.lumens-section {
    background: linear-gradient(180deg, var(--color-dark) 0%, var(--color-darker) 100%);
}

.lumens-section.compact-section {
    padding-top: 120px;
}

.lumens-packs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    max-width: 700px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.lumens-pack {
    background: rgba(26, 43, 86, 0.2);
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(212, 175, 55, 0.15);
    backdrop-filter: blur(10px);
}

.lumens-pack::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(212, 175, 55, 0.05) 100%);
    pointer-events: none;
}

.lumens-pack:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4),
                0 0 25px rgba(212, 175, 55, 0.15);
}

.lumens-pack.featured {
    border-color: var(--color-gold);
}

.lumens-pack.featured:hover {
    transform: translateY(-8px);
}

.lumens-pack.featured::after {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light), var(--color-gold));
    border-radius: 26px;
    z-index: -1;
    opacity: 0.5;
    filter: blur(10px);
    animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.6;
    }
}

.pack-glow-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 0%, var(--pack-color, rgba(212, 175, 55, 0.2)), transparent 60%);
    opacity: 0.3;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.lumens-pack:hover .pack-glow-effect {
    opacity: 0.5;
}

.lumens-pack .pack-header {
    padding: 1.2rem 1rem 0.8rem;
    text-align: center;
    background: transparent;
    position: relative;
}

.lumens-pack .pack-icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.8rem;
    font-size: 1.5rem;
    border: 2px solid currentColor;
    box-shadow: 0 0 20px currentColor;
    transition: all 0.4s ease;
}

.lumens-pack:hover .pack-icon {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 0 30px currentColor;
}

.lumens-pack .pack-header h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--color-white);
}

.lumens-amount {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 0.5rem;
}

.lumens-amount .amount {
    font-size: 2.2rem;
    font-weight: 700;
    font-family: var(--font-secondary);
    color: var(--color-white);
    line-height: 1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.lumens-amount .label {
    font-size: 0.75rem;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 0.2rem;
    opacity: 0.9;
}

.bonus-badge {
    display: inline-block;
    margin-top: 0.4rem;
    padding: 0.25rem 0.6rem;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 2px 10px rgba(34, 197, 94, 0.4);
}

.lumens-pack .pack-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-white);
}

.lumens-pack .pack-content {
    padding: 0.8rem 1rem 1.2rem;
}

.pack-description {
    display: none;
}

.lumens-pack .pack-features {
    display: none;
}

.lumens-pack .pack-features li {
    padding: 0.4rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
}

.lumens-pack .pack-features li:last-child {
    border-bottom: none;
}

.lumens-pack .pack-features i {
    color: var(--color-gold);
    margin-right: 0.5rem;
    width: 16px;
    text-align: center;
}

.btn-lumens {
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-light) 100%);
    color: var(--color-dark);
    border: none;
    padding: 1.2rem 2rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    width: 100%;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.btn-lumens:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
    color: var(--color-dark);
}

.btn-lumens:active {
    transform: translateY(-1px);
}

/* Champ de saisie du code boutique */
.shop-code-input {
    margin-bottom: 1.5rem;
}

.shop-code-input label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-gold);
    margin-bottom: 0.5rem;
}

.shop-code-input label i {
    font-size: 1rem;
}

.shop-code-input input {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.4);
    color: var(--color-white);
    font-size: 1.1rem;
    font-family: var(--font-primary);
    text-align: center;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.shop-code-input input::placeholder {
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 1px;
}

.shop-code-input input:focus {
    outline: none;
    border-color: var(--color-gold);
    background: rgba(0, 0, 0, 0.6);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.shop-code-input input:valid {
    border-color: #22c55e;
}

.shop-code-input small {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
}

/* Message TVA */
.tva-notice {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    margin-top: 1rem;
    padding: 0.8rem 1rem;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 10px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

.tva-notice i {
    color: #60a5fa;
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.purchase-form {
    width: 100%;
}

/* ========== Contrôles de quantité ========== */
.quantity-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    margin-bottom: 0.8rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    padding: 0.5rem;
}

.qty-btn {
    width: 32px;
    height: 32px;
    border: 2px solid var(--color-gold);
    background: transparent;
    color: var(--color-white);
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.qty-btn:hover {
    background: var(--color-gold);
    color: var(--color-dark);
    border-color: var(--color-gold);
    transform: scale(1.1);
}

.qty-display {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-white);
    min-width: 35px;
    text-align: center;
    font-family: var(--font-secondary);
}

.btn-add-cart {
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
    color: var(--color-dark);
    border: none;
    padding: 0.7rem 1rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-add-cart:hover {
    background: linear-gradient(135deg, var(--color-gold-light), #ffe066);
    color: var(--color-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
}

/* ========== Panier flottant ========== */
.cart-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    width: 380px;
    max-width: calc(100vw - 40px);
    background: rgba(12, 13, 26, 0.98);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cart-widget.open {
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.6),
                0 0 40px rgba(212, 175, 55, 0.2);
}

.cart-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.05));
    cursor: pointer;
    transition: all 0.3s ease;
}

.cart-header:hover {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.25), rgba(212, 175, 55, 0.1));
}

.cart-icon {
    position: relative;
    font-size: 1.5rem;
    color: var(--color-gold);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -10px;
    background: var(--color-gold);
    color: var(--color-dark);
    font-size: 0.75rem;
    font-weight: 700;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-total {
    flex: 1;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-white);
    font-family: var(--font-secondary);
}

.cart-arrow {
    color: var(--color-gold);
    transition: transform 0.3s ease;
}

.cart-widget.open .cart-arrow {
    transform: rotate(180deg);
}

.cart-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cart-widget.open .cart-body {
    max-height: 500px;
    overflow-y: auto;
}

.cart-items {
    padding: 1rem 1.5rem;
    max-height: 200px;
    overflow-y: auto;
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem;
    background: rgba(26, 43, 86, 0.2);
    border-radius: 10px;
    margin-bottom: 0.8rem;
    flex-wrap: wrap;
}

.cart-item:last-child {
    margin-bottom: 0;
}

.cart-item-info {
    flex: 1;
    min-width: 100px;
}

.cart-item-name {
    display: block;
    font-weight: 600;
    color: var(--color-white);
    font-size: 0.9rem;
    margin-bottom: 0.2rem;
}

.cart-item-lumens {
    display: block;
    font-size: 0.8rem;
    color: var(--color-gold);
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cart-qty-btn {
    width: 28px;
    height: 28px;
    border: 2px solid var(--color-gold);
    background: transparent;
    color: var(--color-white);
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    transition: all 0.2s ease;
}

.cart-qty-btn:hover {
    background: var(--color-gold);
    color: var(--color-dark);
}

.cart-item-qty {
    font-weight: 600;
    color: var(--color-white);
    min-width: 24px;
    text-align: center;
}

.cart-remove-btn {
    width: 28px;
    height: 28px;
    border: 1px solid rgba(239, 68, 68, 0.3);
    background: transparent;
    color: #ef4444;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    transition: all 0.2s ease;
    margin-left: 0.5rem;
}

.cart-remove-btn:hover {
    background: #ef4444;
    color: white;
}

.cart-item-price {
    font-weight: 700;
    color: var(--color-white);
    font-family: var(--font-secondary);
    width: 60px;
    text-align: right;
}

.cart-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    color: rgba(255, 255, 255, 0.5);
    gap: 0.5rem;
}

.cart-empty i {
    font-size: 2rem;
    color: rgba(212, 175, 55, 0.3);
}

.cart-summary {
    padding: 1rem 1.5rem;
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cart-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    color: rgba(255, 255, 255, 0.7);
}

.cart-summary-row.total {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-white);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
    margin-top: 0.5rem;
}

.cart-checkout {
    padding: 1.5rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.cart-checkout .shop-code-input {
    margin-bottom: 1rem;
}

.cart-checkout .shop-code-input input {
    padding: 0.8rem 1rem;
    font-size: 1rem;
}

.btn-checkout {
    width: 100%;
}

.btn-checkout:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
}

/* Responsive panier */
@media (max-width: 480px) {
    .cart-widget {
        width: calc(100vw - 30px);
        right: 15px;
        bottom: 15px;
    }
    
    .cart-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .cart-item-price {
        width: auto;
        text-align: left;
    }
    
    .cart-item-controls {
        width: 100%;
        justify-content: flex-start;
    }
}

/* Section notice importante */
.shop-notice {
    padding: 3rem 2rem;
    background: linear-gradient(135deg, rgba(180, 83, 9, 0.2), rgba(180, 83, 9, 0.1));
    border-top: 2px solid rgba(251, 191, 36, 0.3);
    border-bottom: 2px solid rgba(251, 191, 36, 0.3);
}

.notice-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 16px;
    border: 1px solid rgba(251, 191, 36, 0.2);
}

.notice-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #1a1a2e;
}

.notice-content h3 {
    color: #fbbf24;
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.notice-content p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.notice-content a {
    color: #fbbf24;
    text-decoration: underline;
}

.notice-content a:hover {
    color: #f59e0b;
}

/* Section avantages Lumens */
.lumens-benefits {
    background: linear-gradient(180deg, var(--color-darker) 0%, var(--color-dark) 100%);
}

.lumens-benefits .benefit-icon {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(247, 212, 86, 0.3));
    color: var(--color-gold);
    border: 2px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.2);
}

.lumens-benefits .benefit-card:hover .benefit-icon {
    background: var(--gradient-gold);
    color: var(--color-dark);
    transform: scale(1.1) rotate(5deg);
}

/* ========== Pages de résultat de paiement ========== */
.payment-result-content {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 2rem 4rem;
    background: linear-gradient(135deg, #060714 0%, #0c0d1a 50%, #1a2b56 100%);
}

.payment-result {
    position: relative;
    width: 100%;
}

.result-container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    background: rgba(26, 43, 86, 0.2);
    backdrop-filter: blur(15px);
    border-radius: 30px;
    padding: 4rem 3rem;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

.result-icon {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 4rem;
    position: relative;
}

.success-icon {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.2), rgba(34, 197, 94, 0.1));
    color: #22c55e;
    border: 3px solid #22c55e;
    box-shadow: 0 0 40px rgba(34, 197, 94, 0.3);
    animation: successPulse 2s ease-in-out infinite;
}

@keyframes successPulse {
    0%, 100% {
        box-shadow: 0 0 40px rgba(34, 197, 94, 0.3);
    }
    50% {
        box-shadow: 0 0 60px rgba(34, 197, 94, 0.5);
    }
}

.cancel-icon {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.2), rgba(239, 68, 68, 0.1));
    color: #ef4444;
    border: 3px solid #ef4444;
    box-shadow: 0 0 40px rgba(239, 68, 68, 0.3);
}

.icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150%;
    height: 150%;
    border-radius: 50%;
    background: inherit;
    opacity: 0.2;
    filter: blur(30px);
    z-index: -1;
}

.result-container h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.purchase-summary {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.lumens-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.lumens-display i {
    font-size: 2.5rem;
    color: var(--color-gold);
    animation: rotateSun 10s linear infinite;
}

@keyframes rotateSun {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.lumens-display .lumens-amount {
    font-size: 3rem;
    font-weight: 700;
    font-family: var(--font-secondary);
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    flex-direction: row;
    gap: 0.5rem;
}

.lumens-display .lumens-label {
    font-size: 1.5rem;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.purchase-summary .pack-name {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-size: 1.1rem;
}

/* Détails de la transaction */
.transaction-details {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.detail-label i {
    color: var(--color-gold);
    width: 20px;
    text-align: center;
}

.detail-value {
    font-weight: 600;
    color: var(--color-white);
    font-family: var(--font-secondary);
    letter-spacing: 1px;
}

/* Liste des produits achetés */
.products-purchased {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.product-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.product-row:last-child {
    border-bottom: none;
}

.product-name {
    flex: 1;
    color: var(--color-white);
    font-weight: 500;
}

.product-qty {
    color: rgba(255, 255, 255, 0.6);
    margin: 0 1rem;
    font-size: 0.9rem;
}

.product-lumens {
    color: var(--color-gold);
    font-weight: 600;
}

.result-message {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.result-info {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.info-item i {
    color: var(--color-gold);
}

.result-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.result-actions .btn {
    min-width: 200px;
}

.support-note {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.support-note p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    font-size: 0.9rem;
}

.support-note a {
    color: var(--color-gold);
}

.magic-particles-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.magic-particles-bg::before,
.magic-particles-bg::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.1), transparent);
    animation: floatParticle 15s ease-in-out infinite;
}

.magic-particles-bg::before {
    top: -100px;
    left: -100px;
}

.magic-particles-bg::after {
    bottom: -100px;
    right: -100px;
    animation-delay: 7s;
}

/* Responsive pour la boutique Lumens */
@media (max-width: 768px) {
    .lumens-packs {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .lumens-pack.featured {
        transform: none;
    }
    
    .lumens-pack.featured:hover {
        transform: translateY(-10px);
    }
    
    .notice-container {
        flex-direction: column;
        text-align: center;
    }
    
    .notice-icon {
        margin: 0 auto;
    }
    
    .result-container {
        padding: 3rem 2rem;
    }
    
    .result-container h1 {
        font-size: 2rem;
    }
    
    .lumens-display .lumens-amount {
        font-size: 2.5rem;
    }
    
    .result-actions {
        flex-direction: column;
    }
    
    .result-actions .btn {
        width: 100%;
    }
    
    .result-info {
        flex-direction: column;
        gap: 1rem;
    }
}