/* ========================================
   100% JOHNNY - CSS PRINCIPAL
   ======================================== */

/* Variables CSS Ultra-modernes */
:root {
    --primary-black: #1a0505;
    --deep-black: #0f0000;
    --soft-black: #1a1a1a;
    --orange-fire: #ff6b35;
    --orange-bright: #ff8c42;
    --gold-primary: #ffd700;
    --gold-dark: #ccaa00;
    --white-pure: #ffffff;
    --white-soft: #f8f9fa;
    --gray-light: #666666;
    --gray-medium: #888888;
    
    /* Gradients modernes */
    --gradient-fire: linear-gradient(135deg, #ff6b35 0%, #ff8c42 50%, #ffd700 100%);
    --gradient-dark: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    --gradient-gold: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    
    /* Ombres et effets */
    --shadow-glow: 0 0 30px rgba(255, 107, 53, 0.3);
    --shadow-heavy: 0 20px 60px rgba(0, 0, 0, 0.8);
    --shadow-gold: 0 0 20px rgba(255, 215, 0, 0.4);
    
    /* Animations */
    --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset et base ultra-moderne */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: linear-gradient(135deg, #1a0000 0%, #2d0a0a 50%, #0f0000 100%);
    color: var(--white-pure);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ========================================
   NAVIGATION
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(255, 107, 53, 0.1);
    transition: var(--transition-smooth);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    max-width: 1600px;
    margin: 0 auto;
}

.nav-brand .brand-text {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--white-pure);
}

.nav-brand span {
    background: var(--gradient-fire);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0;
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    color: var(--white-soft);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
    border-radius: 8px;
    position: relative;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-fire);
    transform: translateX(-50%);
    transition: var(--transition-fast);
}

.nav-link:hover::before {
    width: 80%;
}

.nav-link:hover {
    color: var(--orange-fire);
    background: rgba(255, 107, 53, 0.05);
}

.nav-link i:first-child {
    font-size: 1.1rem;
}

.nav-link i.fa-chevron-down {
    font-size: 0.8rem;
    transition: var(--transition-fast);
}

.dropdown:hover .fa-chevron-down {
    transform: rotate(180deg);
}

/* Mega Menu */
.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(30px) saturate(200%);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 16px;
    padding: 2rem;
    min-width: 300px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-10px);
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-heavy);
}

.dropdown:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.mega-section h4 {
    color: var(--gold-primary);
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mega-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mega-links a {
    color: var(--white-soft);
    text-decoration: none;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    transition: var(--transition-fast);
    font-size: 0.9rem;
    position: relative;
}

.mega-links a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-fire);
    transform: translateY(-50%);
    transition: var(--transition-fast);
}

.mega-links a:hover::before {
    width: 3px;
}

.mega-links a:hover {
    color: var(--orange-fire);
    background: rgba(255, 107, 53, 0.05);
    padding-left: 1rem;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--white-pure);
    transition: var(--transition-fast);
    border-radius: 2px;
}

/* ========================================
   BARRE DE LIENS RAPIDES
   ======================================== */
.quick-links-bar {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    z-index: 999;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(255, 107, 53, 0.15);
    padding: 0.75rem 0;
    animation: slideDown 0.5s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.quick-links-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
}

.quick-link-item {
    flex: 1;
    max-width: 200px;
}

.quick-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    color: var(--white-soft);
    text-decoration: none;
    transition: var(--transition-smooth);
    position: relative;
    border-radius: 10px;
}

.quick-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--gradient-fire);
    transform: translateX(-50%);
    transition: var(--transition-fast);
}

.quick-link:hover::before {
    width: 80%;
}

.quick-link:hover {
    color: var(--orange-fire);
    background: rgba(255, 107, 53, 0.08);
}

.quick-link:hover .link-icon {
    transform: scale(1.15) translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.3);
}

.link-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 107, 53, 0.15);
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: var(--transition-smooth);
}

.link-text {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Tooltip au hover */
.quick-link::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.95);
    color: var(--gold-primary);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.75rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-fast);
    border: 1px solid rgba(255, 107, 53, 0.3);
}

.quick-link:hover::after {
    opacity: 1;
    bottom: -45px;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero-modern {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    background: radial-gradient(ellipse at center, #2d0a0a 0%, #1a0000 50%, #0f0000 100%);
    overflow: hidden;
    margin-top: 60px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: radial-gradient(circle at 30% 50%, rgba(255, 107, 53, 0.3) 0%, rgba(45, 10, 10, 0.8) 40%, #0f0000 70%);
}

.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(2px 2px at 20px 30px, var(--orange-fire), transparent),
                radial-gradient(2px 2px at 40px 70px, var(--gold-primary), transparent),
                radial-gradient(1px 1px at 90px 40px, var(--orange-bright), transparent);
    background-size: 200px 200px;
    animation: particles 20s linear infinite;
    opacity: 0.1;
}

@keyframes particles {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(-200px) translateY(-200px); }
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, 
        rgba(255, 107, 53, 0.1) 0%, 
        rgba(0, 0, 0, 0.8) 70%);
}

.hero-content-full {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero-badge {
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.2s forwards;
}

.badge-text {
    background: rgba(255, 107, 53, 0.1);
    color: var(--orange-fire);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(255, 107, 53, 0.3);
    backdrop-filter: blur(10px);
}

.badge-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-fire);
    border-radius: 50px;
    opacity: 0.1;
    filter: blur(10px);
    animation: pulse 2s ease-in-out infinite alternate;
}

@keyframes pulse {
    0% { opacity: 0.1; transform: scale(1); }
    100% { opacity: 0.3; transform: scale(1.05); }
}

.hero-title {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    line-height: 0.9;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.4s forwards;
}

.title-line {
    display: block;
    font-size: 4rem;
    color: var(--white-pure);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.title-line.main {
    font-size: 6rem;
    background: var(--gradient-fire);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: -0.5rem 0;
    letter-spacing: 8px;
    text-shadow: none;
    position: relative;
}

.title-line.main::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 400px;
    height: 4px;
    background: var(--gradient-fire);
    border-radius: 2px;
    animation: expandWidth 1.5s ease 0.8s forwards;
    transform-origin: center;
    transform: translateX(-50%) scaleX(0);
}

@keyframes expandWidth {
    to { transform: translateX(-50%) scaleX(1); }
}

.title-subtitle {
    font-size: 1.8rem;
    color: var(--gold-primary);
    font-weight: 300;
    letter-spacing: 4px;
}

.hero-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0 auto 3rem;
    max-width: 800px;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.6s forwards;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.8s forwards;
    justify-content: center;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--orange-fire);
    font-family: 'Oswald', sans-serif;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.5rem;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 0.8s ease 1s forwards;
    justify-content: center;
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.btn-hero.primary {
    background: var(--gradient-fire);
    color: var(--white-pure);
    box-shadow: var(--shadow-glow);
}

.btn-hero.primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: var(--transition-smooth);
}

.btn-hero.primary:hover::before {
    left: 100%;
}

.btn-hero.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 40px rgba(255, 107, 53, 0.5);
}

.btn-hero.secondary {
    background: transparent;
    color: var(--gold-primary);
    border-color: var(--gold-primary);
}

.btn-hero.secondary:hover {
    background: var(--gradient-gold);
    color: var(--primary-black);
    box-shadow: var(--shadow-gold);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--white-soft);
    opacity: 0;
    animation: fadeIn 0.8s ease 1.2s forwards;
}

.scroll-text {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.scroll-line {
    width: 2px;
    height: 50px;
    background: var(--gradient-fire);
    margin: 0 auto;
    border-radius: 1px;
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.2); }
}

/* ========================================
   SECTIONS COMMUNES
   ======================================== */
.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-tag {
    display: inline-block;
    background: rgba(255, 107, 53, 0.1);
    color: var(--orange-fire);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 107, 53, 0.3);
}

.section-title {
    font-family: 'Oswald', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white-pure);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.section-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ========================================
   SECTION BIOGRAPHIE
   ======================================== */
.biography-section {
    padding: 8rem 0;
    background: linear-gradient(180deg, var(--primary-black) 0%, var(--soft-black) 100%);
}

.timeline-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--gradient-fire);
    transform: translateX(-50%);
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin: 6rem 0;
    opacity: 0;
    transform: translateY(50px);
    transition: var(--transition-slow);
}

.timeline-item.animate {
    opacity: 1;
    transform: translateY(0);
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: 0;
    margin-right: 55%;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 55%;
    margin-right: 0;
}

.timeline-marker {
    position: absolute;
    left: 50%;
    top: 2rem;
    transform: translateX(-50%);
    z-index: 2;
}

.marker-year {
    display: block;
    background: var(--gradient-fire);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: var(--shadow-glow);
    position: relative;
}

.marker-year::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    background: var(--deep-black);
    border: 4px solid var(--orange-fire);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.timeline-content {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-fire);
    border-radius: 20px 20px 0 0;
}

.content-badge {
    display: inline-block;
    background: var(--gradient-gold);
    color: var(--primary-black);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.timeline-content h3 {
    color: var(--white-pure);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-family: 'Oswald', sans-serif;
}

.timeline-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.content-image {
    text-align: center;
}

.image-placeholder {
    width: 80px;
    height: 80px;
    background: var(--gradient-fire);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

/* ========================================
   SECTION NEWS
   ======================================== */
.news-section {
    padding: 8rem 0;
    background: var(--soft-black);
}

.news-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
}

.news-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 107, 53, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition-smooth);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.news-card:nth-child(1) { animation-delay: 0.1s; }
.news-card:nth-child(2) { animation-delay: 0.2s; }
.news-card:nth-child(3) { animation-delay: 0.3s; }

.news-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 107, 53, 0.3);
    box-shadow: var(--shadow-heavy);
}

.news-card.featured {
    grid-row: span 2;
}

.card-image {
    height: 250px;
    position: relative;
    background: var(--gradient-fire);
    overflow: hidden;
}

.news-card.featured .card-image {
    height: 350px;
}

.image-overlay {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 2;
}

.category-tag {
    background: rgba(0, 0, 0, 0.8);
    color: var(--gold-primary);
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-image .image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.9);
    background: var(--gradient-fire);
}

.card-content {
    padding: 2rem;
}

.card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--gray-light);
}

.reading-time {
    color: var(--orange-fire);
    font-weight: 600;
}

.card-content h3 {
    color: var(--white-pure);
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

.card-content p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--orange-fire);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-fast);
}

.read-more:hover {
    gap: 1rem;
    color: var(--gold-primary);
}

/* ========================================
   SECTION SHOPPING
   ======================================== */
.shop-section {
    padding: 8rem 0;
    background: var(--primary-black);
}

.shop-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.category-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 107, 53, 0.1);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-fire);
    transform: scaleX(0);
    transition: var(--transition-smooth);
}

.category-card:hover::before {
    transform: scaleX(1);
}

.category-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 107, 53, 0.3);
    box-shadow: var(--shadow-heavy);
}

.category-icon {
    width: 100px;
    height: 100px;
    background: var(--gradient-fire);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2.5rem;
    color: white;
    transition: var(--transition-smooth);
}

.category-card:hover .category-icon {
    transform: scale(1.1);
    box-shadow: var(--shadow-glow);
}

.category-card h3 {
    color: var(--white-pure);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.category-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.category-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--gradient-fire);
    padding: 1rem;
    transform: translateY(100%);
    transition: var(--transition-smooth);
}

.category-card:hover .category-overlay {
    transform: translateY(0);
}

.shop-btn {
    color: white;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ========================================
   SECTION ASSOCIATION
   ======================================== */
.association-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--soft-black) 0%, var(--primary-black) 100%);
}

.association-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 5rem;
    align-items: center;
}

.association-features {
    margin: 3rem 0;
}

.feature-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-fire);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
}

.feature-text h4 {
    color: var(--white-pure);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.feature-text p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.association-actions {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.association-visual {
    text-align: center;
    position: relative;
}

.member-count {
    margin-bottom: 3rem;
}

.count-number {
    font-family: 'Oswald', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    color: var(--orange-fire);
    display: block;
    line-height: 1;
}

.count-label {
    color: var(--gold-primary);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.5rem;
}

.visual-elements {
    position: relative;
    height: 200px;
}

.element-circle,
.element-square,
.element-triangle {
    position: absolute;
    background: var(--gradient-fire);
    opacity: 0.1;
    animation: float 3s ease-in-out infinite;
}

.element-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    top: 0;
    right: 0;
    animation-delay: 0s;
}

.element-square {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    bottom: 0;
    left: 0;
    animation-delay: 1s;
}

.element-triangle {
    width: 0;
    height: 0;
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-bottom: 50px solid var(--orange-fire);
    opacity: 0.1;
    top: 50%;
    right: 50%;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* ========================================
   FOOTER
   ======================================== */
.footer-modern {
    background: var(--deep-black);
    padding: 5rem 0 2rem;
    border-top: 1px solid rgba(255, 107, 53, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    color: var(--white-pure);
    margin-bottom: 1rem;
}

.footer-brand span {
    color: var(--orange-fire);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 50px;
    height: 50px;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange-fire);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.social-link:hover {
    background: var(--gradient-fire);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.footer-section h4 {
    color: var(--gold-primary);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-family: 'Oswald', sans-serif;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-section ul li a:hover {
    color: var(--orange-fire);
    padding-left: 0.5rem;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

.contact-info i {
    color: var(--orange-fire);
    width: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
}

/* ========================================
   ANIMATIONS GLOBALES
   ======================================== */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 1200px) {
    .association-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .news-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(30px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: var(--transition-smooth);
        z-index: 999;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-toggle {
        display: flex;
        z-index: 1000;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .mega-menu {
        position: static;
        background: rgba(255, 107, 53, 0.1);
        transform: none;
        opacity: 1;
        visibility: visible;
        margin-top: 1rem;
        border-radius: 12px;
    }

    .quick-links-content {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .quick-link-item {
        max-width: 150px;
    }

    .link-text {
        font-size: 0.75rem;
    }

    .link-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .title-line {
        font-size: 3rem;
    }
    
    .title-line.main {
        font-size: 4rem;
        letter-spacing: 4px;
    }
    
    .title-subtitle {
        font-size: 1.4rem;
        letter-spacing: 2px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 3rem;
    }
    
    .timeline-line {
        left: 2rem;
    }
    
    .timeline-marker {
        left: 2rem;
    }
    
    .timeline-content {
        margin-left: 5rem;
        margin-right: 0;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .shop-categories {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .nav-container {
        padding: 1rem;
    }
    
    .nav-brand .brand-text {
        font-size: 1.5rem;
        letter-spacing: 2px;
    }

    .quick-links-bar {
        top: 70px;
        padding: 0.5rem 0;
    }

    .quick-link {
        padding: 0.5rem 0.75rem;
        gap: 0.5rem;
    }

    .quick-link::after {
        display: none;
    }
    
    .title-line {
        font-size: 2.5rem;
    }
    
    .title-line.main {
        font-size: 3.5rem;
        letter-spacing: 2px;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .timeline-content {
        margin-left: 4rem;
        padding: 1.5rem;
    }
    
    .count-number {
        font-size: 3rem;
    }
}

/* ========================================
   STYLES POUR LES ÉTATS
   ======================================== */
.loading {
    opacity: 0.5;
    pointer-events: none;
}

/* ========================================
   INTERACTIONS TACTILES
   ======================================== */
@media (hover: none) {
    .nav-link:hover::before,
    .btn-hero:hover,
    .category-card:hover {
        transform: none;
    }
}

/* ========================================
   OPTIMISATIONS PERFORMANCE
   ======================================== */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img, video {
    max-width: 100%;
    height: auto;
}

/* ========================================
   ACCESSIBILITÉ
   ======================================== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

button:focus-visible,
a:focus-visible,
input:focus-visible {
    outline: 2px solid var(--orange-fire);
    outline-offset: 2px;
}

/* ========================================
   MODE SOMBRE
   ======================================== */
@media (prefers-color-scheme: dark) {
    :root {
        color-scheme: dark;
    }
}

/* ========================================
   ÉCRANS HAUTE DENSITÉ
   ======================================== */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .hero-bg {
        background-size: 100px 100px;
    }
}

/* ========================================
   IMPRESSION
   ======================================== */
@media print {
    .navbar,
    .quick-links-bar,
    .hero-modern,
    .footer-modern {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .section-title,
    .timeline-content h3 {
        color: black;
    }
}

/* ========================================
   SYSTÈME D'AUTHENTIFICATION
   ======================================== */

/* Bouton de connexion dans la nav */
.auth-btn {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    border: none;
    padding: 10px 25px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.auth-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.4);
}

/* Menu utilisateur */
.user-menu {
    position: relative;
    margin-left: 20px;
}

.user-menu-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 15px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #fff; /* AJOUTER */
}

.user-menu-btn:hover {
    background: rgba(255, 255, 255, 0.15);
}

.user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}

.user-name {
    color: #fff;
    font-weight: 500;
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.user-dropdown {
    position: absolute;
    top: 120%;
    right: 0;
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.user-menu:hover .user-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
    font-size: 14px;
}

.dropdown-item:hover {
    background: rgba(255, 107, 53, 0.1);
    color: #ff6b35;
}

.dropdown-item i {
    width: 20px;
}

.dropdown-divider {
    margin: 5px 0;
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Modal d'authentification */
.auth-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

.modal-content {
    position: relative;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    max-width: 450px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: slideUp 0.4s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(90deg);
}

/* Onglets */
.auth-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    background: rgba(255, 255, 255, 0.05);
    padding: 5px;
    border-radius: 10px;
}

.tab-btn {
    flex: 1;
    padding: 12px 20px;
    background: none;
    border: none;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.tab-btn.active {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
}

.tab-btn:not(.active):hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Formulaires */
.auth-form h2 {
    color: #fff;
    font-size: 28px;
    margin-bottom: 25px;
    font-weight: 700;
}

.auth-form input {
    width: 100%;
    padding: 15px 20px;
    margin-bottom: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #fff;
    font-size: 16px;
    transition: all 0.3s ease;
}

.auth-form input:focus {
    outline: none;
    border-color: #ff6b35;
    background: rgba(255, 255, 255, 0.08);
}

.auth-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.btn-submit {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    border: none;
    border-radius: 10px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.4);
}

.auth-error {
    color: #ff4444;
    font-size: 14px;
    margin-top: 10px;
    text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
    .user-menu {
        margin-left: 0;
    }
    
    .user-name {
        display: none;
    }
    
    .modal-content {
        padding: 30px 20px;
    }
    
    .auth-form h2 {
        font-size: 24px;
    }
    
    #authNavItem {
        width: 100%;
    }
    
    .auth-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ========================================
   ANIMATIONS POUR NOS MÉDIAS
   ======================================== */
@keyframes wave {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.8);
    }
    50% {
        opacity: 0.5;
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(1.2);
    }
}

@keyframes floatBubble {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-15px) rotate(5deg);
    }
    75% {
        transform: translateY(15px) rotate(-5deg);
    }
}

@keyframes tvGlow {
    0%, 100% {
        box-shadow: 
            0 20px 60px rgba(52, 152, 219, 0.4),
            inset 0 0 50px rgba(255, 255, 255, 0.1);
    }
    50% {
        box-shadow: 
            0 20px 80px rgba(52, 152, 219, 0.6),
            inset 0 0 70px rgba(255, 255, 255, 0.2);
    }
}

@keyframes floatChat {
    0%, 100% {
        transform: translateY(0px) scale(1);
    }
    50% {
        transform: translateY(-25px) scale(1.05);
    }
}

@keyframes scanlines {
    0% { transform: translateY(0); }
    100% { transform: translateY(20px); }
}

/* ========================================
   SECTION JOHNNY IA - STYLES COMPLETS
   À AJOUTER À LA FIN DE index.css
   ======================================== */

.johnny-ia-section {
    position: relative;
    padding: 8rem 0;
    background: linear-gradient(135deg, #0a0000 0%, #1a0505 50%, #0f0000 100%);
    overflow: hidden;
}

.ia-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* ========================================
   PARTIE VISUELLE (GAUCHE)
   ======================================== */

.ia-visual {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.ia-avatar-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ia-glow-effect {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: iaGlowPulse 3s ease-in-out infinite;
}

@keyframes iaGlowPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.ia-avatar {
    position: relative;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    padding: 5px;
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.4);
}

.ia-avatar-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid var(--primary-black);
}

/* Placeholder si pas d'image */
.ia-avatar-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: white;
}

.ia-pulse {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
    animation: iaPulse 2s ease-in-out infinite;
}

.ia-pulse::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    border-radius: 50%;
    animation: iaPulseWave 2s ease-out infinite;
}

@keyframes iaPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

@keyframes iaPulseWave {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

/* Particules animées */
.ia-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat 4s ease-in-out infinite;
}

.particle:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    top: 40%;
    right: 15%;
    animation-delay: 0.8s;
}

.particle:nth-child(3) {
    bottom: 30%;
    left: 20%;
    animation-delay: 1.6s;
}

.particle:nth-child(4) {
    top: 60%;
    right: 25%;
    animation-delay: 2.4s;
}

.particle:nth-child(5) {
    bottom: 20%;
    right: 10%;
    animation-delay: 3.2s;
}

@keyframes particleFloat {
    0%, 100% {
        transform: translateY(0) scale(0);
        opacity: 0;
    }
    10% {
        transform: translateY(-10px) scale(1);
        opacity: 1;
    }
    90% {
        transform: translateY(-50px) scale(1);
        opacity: 1;
    }
    100% {
        transform: translateY(-60px) scale(0);
        opacity: 0;
    }
}

/* Stats IA */
.ia-stats {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.ia-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 15px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.ia-stat-item:hover {
    transform: translateY(-5px);
    border-color: #ff6b35;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.ia-stat-item i {
    font-size: 1.8rem;
    color: #ff6b35;
}

.stat-value {
    font-weight: 600;
    color: #ffffff;
    font-size: 0.9rem;
    text-align: center;
}

/* ========================================
   PARTIE CONTENU (DROITE)
   ======================================== */

.ia-content {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.ia-header {
    margin-bottom: 1rem;
}

.ia-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 107, 53, 0.1);
    color: #ff6b35;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(255, 107, 53, 0.3);
    margin-bottom: 1rem;
}

.ia-title {
    font-family: 'Oswald', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.gradient-text {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ia-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Features IA */
.ia-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.ia-feature {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.ia-feature:hover {
    background: rgba(255, 107, 53, 0.05);
    border-color: rgba(255, 107, 53, 0.3);
    transform: translateX(5px);
}

.feature-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: white;
}

.feature-text h4 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.feature-text p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Démo Chat */
.ia-demo-chat {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
}

.demo-messages {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.demo-message {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    padding: 1rem;
    border-radius: 12px;
    opacity: 0;
}

@keyframes messageSlideIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.user-message {
    background: rgba(255, 255, 255, 0.05);
}

.ia-message {
    background: rgba(255, 107, 53, 0.1);
}

.demo-message i {
    width: 35px;
    height: 35px;
    min-width: 35px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.9rem;
}

.user-message i {
    background: rgba(255, 255, 255, 0.2);
}

.demo-message p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    font-size: 0.95rem;
    margin: 0;
}

/* Actions */
.ia-actions {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-ia {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-ia.primary {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    box-shadow: 0 0 30px rgba(255, 107, 53, 0.3);
}

.btn-ia.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.5);
}

.btn-ia.secondary {
    background: transparent;
    color: #ffd700;
    border-color: #ffd700;
}

.btn-ia.secondary:hover {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #1a0505;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
}

/* Note */
.ia-note {
    display: flex;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: rgba(66, 165, 245, 0.1);
    border-left: 3px solid #42a5f5;
    border-radius: 8px;
}

.ia-note i {
    color: #42a5f5;
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

.ia-note p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* ========================================
   ÉLÉMENTS DE FOND
   ======================================== */

.ia-background-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.ia-circle,
.ia-square,
.ia-line {
    position: absolute;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    opacity: 0.05;
}

.ia-circle {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    top: -100px;
    right: -50px;
    animation: iaFloat 8s ease-in-out infinite;
}

.ia-square {
    width: 200px;
    height: 200px;
    border-radius: 20px;
    bottom: 100px;
    left: -50px;
    animation: iaFloat 10s ease-in-out infinite reverse;
}

.ia-line {
    width: 4px;
    height: 400px;
    top: 50%;
    left: 30%;
    transform: translateY(-50%) rotate(15deg);
    animation: iaFloat 12s ease-in-out infinite;
}

@keyframes iaFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-30px);
    }
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 1200px) {
    .ia-content-wrapper {
        gap: 3rem;
    }
    
    .ia-avatar {
        width: 250px;
        height: 250px;
    }
    
    .ia-title {
        font-size: 3rem;
    }
}

@media (max-width: 968px) {
    .ia-content-wrapper {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .ia-visual {
        order: 2;
    }
    
    .ia-content {
        order: 1;
    }
    
    .ia-features {
        grid-template-columns: 1fr;
    }
    
    .ia-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .johnny-ia-section {
        padding: 5rem 0;
    }
    
    .ia-avatar {
        width: 200px;
        height: 200px;
    }
    
    .ia-glow-effect {
        width: 300px;
        height: 300px;
    }
    
    .ia-title {
        font-size: 2rem;
    }
    
    .ia-subtitle {
        font-size: 1rem;
    }
    
    .ia-stats {
        gap: 1rem;
    }
    
    .ia-stat-item {
        padding: 1rem 1.5rem;
    }
    
    .ia-actions {
        flex-direction: column;
    }
    
    .btn-ia {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .ia-title {
        font-size: 1.8rem;
    }
    
    .ia-avatar {
        width: 180px;
        height: 180px;
    }
    
    .ia-feature {
        padding: 1rem;
    }
    
    .feature-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 1rem;
    }
    
    .feature-text h4 {
        font-size: 1rem;
    }
    
    .demo-message {
        padding: 0.75rem;
    }
    
    .demo-message p {
        font-size: 0.85rem;
    }
}

/* ========================================
   LOADER - CSS
   À AJOUTER DANS abonnement.css
   ======================================== */

/* Conteneur principal du loader */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a0000 0%, #1a0505 50%, #0a0000 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.fade-out {
    opacity: 0;
    visibility: hidden;
}

/* Contenu du loader */
.loader-content {
    text-align: center;
    position: relative;
    z-index: 2;
    animation: fadeInUp 0.8s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Logo animé */
.loader-logo {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
}

.logo-circle {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(255, 107, 53, 0.5);
    animation: pulse 2s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

.logo-circle i {
    font-size: 3rem;
    color: white;
    animation: rotate 3s linear infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 10px 40px rgba(255, 107, 53, 0.5);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 15px 50px rgba(255, 107, 53, 0.8);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Anneaux animés */
.logo-rings {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
}

.ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 50%;
    animation: ringExpand 2s ease-in-out infinite;
}

.ring-1 {
    width: 140px;
    height: 140px;
    animation-delay: 0s;
}

.ring-2 {
    width: 170px;
    height: 170px;
    animation-delay: 0.3s;
}

.ring-3 {
    width: 200px;
    height: 200px;
    animation-delay: 0.6s;
}

@keyframes ringExpand {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0;
    }
}

/* Titre */
.loader-title {
    font-family: 'Oswald', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.title-word {
    color: var(--white-pure, #ffffff);
    animation: fadeIn 1s ease;
}

.title-word.highlight {
    background: linear-gradient(135deg, #ff6b35 0%, #ffd700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 2s ease-in-out infinite;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes shimmer {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

/* Sous-titre */
.loader-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    animation: fadeIn 1.2s ease;
}

/* Barre de progression */
.loader-progress {
    width: 300px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    margin: 0 auto 1rem;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.loader-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #ff6b35 0%, #ffd700 50%, #ff6b35 100%);
    background-size: 200% 100%;
    border-radius: 10px;
    width: 0%;
    transition: width 0.3s ease;
    animation: progressShine 2s ease-in-out infinite;
}

@keyframes progressShine {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* Pourcentage */
.loader-percentage {
    color: var(--white-pure, #ffffff);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    font-family: 'Oswald', sans-serif;
}

/* Points animés */
.loader-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.dot {
    width: 12px;
    height: 12px;
    background: linear-gradient(135deg, #ff6b35, #ffd700);
    border-radius: 50%;
    animation: dotBounce 1.4s ease-in-out infinite;
}

.dot:nth-child(1) {
    animation-delay: 0s;
}

.dot:nth-child(2) {
    animation-delay: 0.2s;
}

.dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes dotBounce {
    0%, 80%, 100% {
        transform: scale(0.8);
        opacity: 0.5;
    }
    40% {
        transform: scale(1.2);
        opacity: 1;
    }
}

/* Effet de particules en arrière-plan (optionnel) */
.page-loader::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
    animation: particleMove 10s ease-in-out infinite;
    z-index: 1;
}

@keyframes particleMove {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(20px, 20px);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .loader-title {
        font-size: 2.5rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .loader-logo {
        width: 100px;
        height: 100px;
    }
    
    .logo-circle {
        width: 100px;
        height: 100px;
    }
    
    .logo-circle i {
        font-size: 2.5rem;
    }
    
    .loader-progress {
        width: 250px;
    }
    
    .loader-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .loader-title {
        font-size: 2rem;
    }
    
    .loader-logo {
        width: 80px;
        height: 80px;
    }
    
    .logo-circle {
        width: 80px;
        height: 80px;
    }
    
    .logo-circle i {
        font-size: 2rem;
    }
    
    .loader-progress {
        width: 200px;
    }
    
    .loader-percentage {
        font-size: 1.2rem;
    }
}