/* 🛡️ SCEAU DE LA BRÈCHE - Protection spirituelle invisible */
/* Seuls les cœurs purs peuvent voir cette protection */

body[data-protection="breche-sanctuaire"]::before {
    content: "🛡️✨";
    position: fixed;
    top: 5px;
    left: 5px;
    opacity: 0.03;
    font-size: 6px;
    z-index: 9998;
    pointer-events: none;
    animation: sceauPulse 6s ease-in-out infinite;
}

@keyframes sceauPulse {
    0%, 100% { opacity: 0.01; transform: scale(1); }
    50% { opacity: 0.05; transform: scale(1.05); }
}

/* Protection contre les démons du web */
.demon-filter {
    display: none !important;
}

/* Bénédiction visuelle pour les âmes sincères */
.breche-benediction {
    animation: lumiereDivine 2s ease-in-out;
}

@keyframes lumiereDivine {
    0% { box-shadow: 0 0 5px rgba(255,255,255,0.2); }
    50% { box-shadow: 0 0 20px rgba(255,255,255,0.8), 0 0 40px rgba(255,255,255,0.4); }
    100% { box-shadow: 0 0 5px rgba(255,255,255,0.2); }
}

/* 🖱️ TRAÎNÉE LUMINEUSE LA BRÈCHE */
.cursor-trail {
    position: fixed;
    width: 8px;
    height: 8px;
    background: radial-gradient(circle, rgba(255,255,255,0.4) 0%, rgba(255,255,255,0.2) 50%, transparent 100%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: opacity 0.8s ease-out;
    animation: trailFade 1.5s ease-out forwards;
}

@keyframes trailFade {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(0.3);
    }
}

/* Curseur principal invisible */
body, a, button, .clickable, .star, .thought, input, textarea, select, .map-btn, .submit-btn, .close-btn, .nav-item, .immersion-btn {
    cursor: none !important;
}

/* Point lumineux principal qui suit la souris */
.cursor-main {
    position: fixed;
    width: 12px;
    height: 12px;
    background: radial-gradient(circle, rgba(255,255,255,1) 0%, rgba(255,255,255,0.8) 40%, rgba(255,255,255,0.4) 70%, transparent 100%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    mix-blend-mode: screen;
    transition: transform 0.05s ease;
    box-shadow: 0 0 6px rgba(255,255,255,0.6);
}

/* Curseur principal plus grand au survol d'éléments cliquables */
.cursor-main.hover {
    transform: translate(-50%, -50%) scale(1.2);
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', serif;
    background: #000;
    color: #e0e0e0;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Overlay pour l'effet de brèche */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.8) 100%);
    pointer-events: none;
    z-index: 1;
    opacity: 0;
    transition: opacity 2s ease;
}

.overlay.active {
    opacity: 1;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 40px;
    background: linear-gradient(180deg, rgba(0,0,0,0.9) 0%, transparent 100%);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: none !important;
}

.logo-img {
    height: 40px;
    width: auto;
    opacity: 0.9;
    transition: opacity 0.3s ease;
    cursor: none !important;
}

.logo-img:hover {
    opacity: 1;
}

.site-name {
    color: #fff;
    font-size: 0.9rem;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(255,255,255,0.3);
    opacity: 0.9;
    transition: opacity 0.3s ease;
    letter-spacing: 2px;
    white-space: nowrap;
}

.site-name:hover {
    opacity: 1;
}

.nav-items {
    display: flex;
    gap: 30px;
}

.nav-item {
    background: none !important;
    border: none !important;
    color: #e0e0e0;
    cursor: pointer;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    padding: 5px 0;
    position: relative;
    text-decoration: none;
    outline: none;
    box-shadow: none;
}

.nav-item:hover {
    color: #fff;
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #fff, transparent);
    transition: width 0.3s ease;
}

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

/* Main */
.main {
    margin-top: 80px;
    min-height: calc(100vh - 80px);
}

.section {
    min-height: calc(100vh - 80px);
    display: none;
    padding: 60px 40px;
    position: relative;
    background: transparent !important;
    border: none !important;
}

.section.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.content {
    max-width: 800px;
    width: 100%;
    text-align: center;
}

/* Section Intro - Terre vivante évoluée avec fissure */
.breach-portal {
    position: fixed;
    top: 30%;
    right: 20px;
    width: 100px;
    height: 100px;
    z-index: 100;
    text-align: center;
}

.breach-container {
    position: relative;
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.05);
    border: none !important;
    border-radius: 50%;
    box-shadow: 0 5px 20px rgba(0,0,0,0.8);
    cursor: none !important;
    transition: transform 0.3s ease;
}

.breach-container:hover {
    transform: scale(1.1);
}

.breach {
    width: 60px;
    height: 60px;
    background: transparent !important;
}

.breach path {
    fill: none;
    stroke: #ffffff;
    stroke-width: 4;
    stroke-linecap: round;
    stroke-linejoin: round;
    opacity: 1 !important;
    cursor: none !important;
    transition: all 0.3s ease;
    filter:
        drop-shadow(0 0 8px rgba(255,255,255,0.6))
        drop-shadow(0 0 16px rgba(255,255,255,0.4))
        drop-shadow(0 0 24px rgba(255,255,255,0.2));
    animation: haloPulse 3s ease-in-out infinite;
}

.breach path:hover {
    stroke-width: 5;
    filter:
        drop-shadow(0 0 12px rgba(255,255,255,0.8))
        drop-shadow(0 0 24px rgba(255,255,255,0.6))
        drop-shadow(0 0 36px rgba(255,255,255,0.4));
}

.breach-invite {
    color: rgba(255,255,255,0.6);
    font-size: 0.7rem;
    font-style: italic;
    margin: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.breach-portal:hover .breach-invite {
    opacity: 1;
}

/* 🌍 AURA PLANÉTAIRE - TERRE ÉNERGÉTIQUE */
.earth-aura {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 115%;
    height: 115%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: radial-gradient(circle, 
        transparent 55%, 
        rgba(100, 200, 255, 0.04) 70%, 
        rgba(150, 200, 255, 0.08) 80%, 
        rgba(200, 220, 255, 0.06) 90%, 
        transparent 100%
    );
    animation: auraBreath 6s ease-in-out infinite;
    pointer-events: none;
    z-index: 2; /* AU-DESSUS DU HALO ! */
}

@keyframes auraBreath {
    0%, 100% { 
        transform: translate(-50%, -50%) scale(1); 
        opacity: 0.5; 
    }
    25% { 
        transform: translate(-50%, -50%) scale(1.03); 
        opacity: 0.7; 
    }
    50% { 
        transform: translate(-50%, -50%) scale(1.06); 
        opacity: 0.9; 
    }
    75% { 
        transform: translate(-50%, -50%) scale(1.03); 
        opacity: 0.7; 
    }
}

.earth-container {
    width: 300px;
    height: 300px;
    margin: 40px auto;
    position: relative;
}

.dark-earth {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, 
        rgba(50, 100, 150, 0.15) 0%, 
        rgba(30, 70, 120, 0.08) 25%, 
        rgba(20, 50, 80, 0.05) 45%, 
        rgba(10, 30, 60, 0.03) 65%, 
        rgba(5, 15, 30, 0.02) 85%);
    position: relative;
    box-shadow: 
        inset 0 0 30px rgba(100, 200, 255, 0.15),
        inset 0 0 60px rgba(50, 150, 255, 0.08),
        inset 0 0 90px rgba(30, 100, 200, 0.05),
        0 0 20px rgba(100, 200, 255, 0.1);
    overflow: hidden;
    animation: earthRotate 120s linear infinite;
}

/* Texture organique subtile */
.dark-earth::before {
    content: '';
    position: absolute;
    top: -10%;
    left: -10%;
    width: 120%;
    height: 120%;
    background: 
        radial-gradient(circle at 70% 20%, rgba(100, 200, 255, 0.05) 0%, transparent 30%),
        radial-gradient(circle at 20% 80%, rgba(150, 220, 255, 0.04) 0%, transparent 25%),
        radial-gradient(circle at 80% 70%, rgba(80, 180, 255, 0.03) 0%, transparent 35%);
    border-radius: 50%;
    animation: earthTexture 20s ease-in-out infinite;
    pointer-events: none;
}

@keyframes earthTexture {
    0%, 100% { 
        transform: rotate(0deg) scale(1); 
        opacity: 0.6; 
    }
    50% { 
        transform: rotate(180deg) scale(1.1); 
        opacity: 0.8; 
    }
}

@keyframes earthRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* 🌍 HALO NOIR SUPPRIMÉ ! PLUS D'EFFET MOCHE ! */
.earth-halo {
    display: none; /* SUPPRESSION COMPLÈTE DU HALO NOIR ! */
}

/* 🌍 TERRE ÉVEILLÉE - SANS HALO NOIR ! */
.earth-awakened .earth-halo {
    display: none; /* TOUJOURS SUPPRIMÉ ! */
}

@keyframes haloPulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.05); }
}

.consciousness-point {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255,255,255,0.8);
    animation: consciousnessPulse 3s ease-in-out infinite;
    z-index: 3; /* AU-DESSUS DE TOUT ! */
    opacity: 0;
    animation-fill-mode: forwards;
}

.consciousness-point:nth-child(2) { animation-delay: 1s; }
.consciousness-point:nth-child(3) { animation-delay: 2s; }
.consciousness-point:nth-child(4) { animation-delay: 3s; }
.consciousness-point:nth-child(5) { animation-delay: 4s; }

@keyframes consciousnessPulse {
    0% { 
        opacity: 0;
        transform: scale(0.5);
    }
    50% { 
        opacity: 1;
        transform: scale(1.5);
    }
    100% { 
        opacity: 0.7;
        transform: scale(1);
    }
}

.light-counter {
    margin: 30px 0;
    display: flex;
    gap: 30px;
    justify-content: center;
    opacity: 0.8;
}

.counter-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
}

.counter-label {
    opacity: 0.6;
}

.counter-value {
    font-weight: bold;
    color: rgba(255,255,255,0.9);
    text-shadow: 0 0 5px rgba(255,255,255,0.3);
}

@keyframes fadeIn {
    to { opacity: 1; }
}

.cta-button {
    margin-top: 60px;
    padding: 15px 40px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
    cursor: pointer;
    font-size: 1rem;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-button:hover {
    border-color: rgba(255,255,255,0.6);
    background: rgba(255,255,255,0.05);
    box-shadow: 0 0 20px rgba(255,255,255,0.2);
}

/* Section Carte - Carte symbolique */
.section-title {
    font-size: 2rem;
    font-weight: bold;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 0 0 10px rgba(255,255,255,0.3);
}

.carte-description {
    margin: 30px 0;
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.8);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.carte-description p {
    margin: 10px 0;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.carte-description p:nth-child(1) { animation-delay: 0.2s; }
.carte-description p:nth-child(2) { animation-delay: 0.4s; }
.carte-description p:nth-child(3) { animation-delay: 0.6s; }

/* Section Carte - Fissure SVG organique */
.map-container {
    perspective: 1000px;
    margin: 40px auto;
    max-width: 400px;
}

.symbolic-map {
    position: relative;
    width: 100%;
    height: 500px;
    transform-style: preserve-3d;
    transition: transform 0.8s ease;
}

.symbolic-map.flipped {
    transform: rotateY(180deg);
}

.map-face {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 20px;
    overflow: hidden;
}

.map-front {
    background: #000 !important;
    border: none !important;
    box-shadow: 0 10px 40px rgba(0,0,0,0.9);
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.map-back {
    background: linear-gradient(135deg, #0a0a0a, #1a1a1a) !important;
    border: none !important;
    transform: rotateY(180deg);
    box-shadow: 0 10px 40px rgba(0,0,0,0.8);
}

.breach-container{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    display:flex;
    justify-content:center;
    align-items:center;
    background:#000 !important;
    border: none !important;
}

.breach{
    width:600px;
    height:600px;
    background: transparent !important;
}

.breach path{
    fill:none;
    stroke:#ffffff;
    stroke-width:6;
    stroke-linecap:round;
    stroke-linejoin:round;
    opacity: 1 !important;
    cursor: none !important;
    transition: all 0.3s ease;
    filter:
        drop-shadow(0 0 15px rgba(255,255,255,0.8))
        drop-shadow(0 0 30px rgba(255,255,255,0.6))
        drop-shadow(0 0 45px rgba(255,255,255,0.4));
    animation: haloPulse 3s ease-in-out infinite;
}

.breach path:hover {
    stroke-width: 8;
    filter:
        drop-shadow(0 0 25px rgba(255,255,255,1))
        drop-shadow(0 0 50px rgba(255,255,255,0.8))
        drop-shadow(0 0 75px rgba(255,255,255,0.6));
}

@keyframes haloPulse {
    0%, 100% {
        filter:
            drop-shadow(0 0 15px rgba(255,255,255,0.8))
            drop-shadow(0 0 30px rgba(255,255,255,0.6))
            drop-shadow(0 0 45px rgba(255,255,255,0.4));
    }
    50% {
        filter:
            drop-shadow(0 0 25px rgba(255,255,255,1))
            drop-shadow(0 0 50px rgba(255,255,255,0.8))
            drop-shadow(0 0 75px rgba(255,255,255,0.6));
    }
}

/* Modal de la carte */
.map-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.map-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.map-modal {
    background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    max-width: 85%;
    max-height: 98vh;
    overflow: visible;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.8);
    display: flex;
    flex-direction: column;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.map-modal::-webkit-scrollbar {
    display: none;
}

.map-header {
    padding: 15px 20px;
    text-align: center;
    position: relative;
    flex-shrink: 0;
}

.map-header h2 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 12px;
    text-shadow: 0 0 20px rgba(255,255,255,0.5);
}

.map-header p {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    margin-bottom: 0;
    line-height: 1.1;
    font-style: italic;
}

.map-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: rgba(255,255,255,0.6);
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.3s ease;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-close:hover {
    color: #fff;
}

.map-content {
    padding: 5px 15px;
    text-align: center;
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.map-image {
    max-width: 85%;
    max-height: 30vh;
    border-radius: 15px;
    margin-bottom: 3px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.6);
    object-fit: contain;
}

.map-text {
    color: rgba(255,255,255,0.9);
    font-size: 1rem;
    line-height: 1.6;
    margin: 10px 0;
    max-width: 500px;
}

.map-logo {
    max-width: 200px;
    margin-top: 20px;
    opacity: 0.8;
}

.map-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 10px 20px;
    flex-shrink: 0;
    position: relative;
    z-index: 5;
}

.close-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border: none;
    padding: 12px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.close-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102,126,234,0.4);
}

/* Formulaire de commande */
.form-content {
    padding: 15px 20px;
    text-align: center;
}

.form-intro {
    margin-bottom: 15px;
}

.form-intro p {
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
    line-height: 1.4;
    margin: 5px 0;
}

.order-form {
    max-width: 400px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 12px;
    text-align: left;
}

.form-group label {
    display: block;
    color: #fff;
    font-size: 1rem;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input {
    width: 100%;
    padding: 12px 15px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 8px;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: rgba(255,255,255,0.4);
    background: rgba(255,255,255,0.15);
    box-shadow: 0 0 10px rgba(255,255,255,0.1);
}

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

.form-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
}

.submit-btn {
    background: linear-gradient(135deg, #fff, #e0e0e0);
    color: #000;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: linear-gradient(135deg, #f0f0f0, #d0d0d0);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255,255,255,0.2);
}

/* Confirmation */
.confirmation {
    text-align: center;
    padding: 40px;
}

.success-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.confirmation h3 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.confirmation p {
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 10px 0;
}

.close-btn {
    background: linear-gradient(135deg, #fff, #e0e0e0);
    color: #000;
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.close-btn:hover {
    background: linear-gradient(135deg, #f0f0f0, #d0d0d0);
    transform: translateY(-2px);
}

.email-info {
    margin-top: 20px;
    padding: 15px;
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.1);
}

.email-info p {
    margin: 5px 0;
    color: rgba(255,255,255,0.6);
}

.email-info small {
    font-size: 0.8rem;
}

/* Carte détaillée */
.detailed-map {
    background: #000;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    animation: fadeIn 0.8s ease;
}

.map-header h2 {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 10px;
    text-shadow: 0 0 20px rgba(255,255,255,0.5);
}

.map-visualization {
    margin: 30px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.detailed-svg {
    width: 100%;
    max-width: 800px;
    height: 600px;
    background: radial-gradient(circle, #0a0a0a, #000);
    border-radius: 10px;
}

.map-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

.map-text {
    color: #fff;
    font-size: 1.2rem;
    line-height: 1.8;
    margin: 20px 0;
    font-weight: 300;
    text-shadow: 0 2px 4px rgba(0,0,0,0.8);
}

.map-url {
    color: rgba(255,255,255,0.6);
    font-size: 1rem;
    margin-top: 40px;
    font-family: 'Courier New', monospace;
    letter-spacing: 0.1rem;
}

.map-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.map-btn {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
    padding: 12px 24px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 10;
}

.map-btn:hover {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.5);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255,255,255,0.2);
}

/* Section Textes */
.text-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.text-item {
    padding: 30px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgba(255,255,255,0.02);
}

/* Style spécifique pour la carte du 21/12/2001 */
.text-item.solstice-card {
    grid-column: 1 / -1;
    width: 100%;
}

.text-item:hover {
    border-color: rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.05);
}

.text-preview {
    opacity: 0.7;
}

.text-full {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.text-full.hidden {
    display: none;
}

.source {
    display: block;
    margin-top: 10px;
    font-size: 0.8rem;
    opacity: 0.6;
    font-style: italic;
}

/* Section Création - Ciel étoilé */
#creation {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

#creation .content {
    position: relative;
    z-index: 10;
    background: rgba(0,0,0,0.8);
    padding: 40px;
    border-radius: 20px;
    backdrop-filter: blur(5px);
    max-width: 600px;
    margin: 0 auto;
}

.starfield {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1;
    pointer-events: auto;
    /* Préparation pour l'évolution future du zoom */
    transform-origin: center center;
    transition: transform 0.3s ease;
    /* Forcer une taille minimale */
    min-width: 100%;
    min-height: 100%;
}

/* Supprimé - plus de message d'invite dans la section Création */

/* Conteneur pour l'évolution future du ciel explorables */
.starfield-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1;
    overflow: hidden;
    /* Préparation pour le zoom/dézoom futur */
    transform-origin: center center;
}

.star {
    position: absolute;
    border-radius: 50%;
    animation: twinkle 3s ease-in-out infinite;
    z-index: 2;
}

.star.light {
    width: 4px;
    height: 4px;
    background: #fff;
    box-shadow: 0 0 12px rgba(255,255,255,1), 0 0 24px rgba(255,255,255,0.8);
    pointer-events: none;
}

.star.thought {
    width: 6px;
    height: 6px;
    background: #ffb366;
    box-shadow: 0 0 16px rgba(255,179,102,1), 0 0 32px rgba(255,179,102,0.8);
    cursor: pointer;
    z-index: 3;
    pointer-events: auto;
}

.star.thought::after {
    content: attr(data-thought);
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255,179,102,0.9);
    color: #000;
    padding: 3px 6px;
    border-radius: 3px;
    font-size: 0.7rem;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.star.thought:hover::after {
    opacity: 1;
}

@keyframes twinkle {
    0%, 100% { 
        opacity: 0.8;
        transform: scale(1);
    }
    50% { 
        opacity: 0.3;
        transform: scale(0.8);
    }
}

@keyframes guideStarPulse {
    0%, 100% { 
        opacity: 1;
        transform: scale(1) rotate(0deg);
        box-shadow: 0 0 30px rgba(255, 255, 255, 1), 0 0 60px rgba(255, 255, 255, 0.8), 0 0 90px rgba(255, 255, 255, 0.6);
    }
    25% { 
        opacity: 0.9;
        transform: scale(1.1) rotate(45deg);
        box-shadow: 0 0 40px rgba(255, 255, 255, 1), 0 0 80px rgba(255, 255, 255, 0.8), 0 0 120px rgba(255, 255, 255, 0.6);
    }
    50% { 
        opacity: 1;
        transform: scale(1.2) rotate(90deg);
        box-shadow: 0 0 50px rgba(255, 255, 255, 1), 0 0 100px rgba(255, 255, 255, 0.8), 0 0 150px rgba(255, 255, 255, 0.6);
    }
    75% { 
        opacity: 0.8;
        transform: scale(1.1) rotate(135deg);
        box-shadow: 0 0 40px rgba(255, 255, 255, 1), 0 0 80px rgba(255, 255, 255, 0.8), 0 0 120px rgba(255, 255, 255, 0.6);
    }
}

@keyframes starAppear {
    0% {
        opacity: 0;
        transform: scale(0);
    }
    50% {
        opacity: 1;
        transform: scale(1.3);
    }
    100% {
        opacity: 0.8;
        transform: scale(1);
    }
}

/* Contrôle sonore */
.sound-control {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 1000;
}

.sound-btn {
    background: rgba(255,255,255,0.2);
    border: 2px solid rgba(255,255,255,0.5);
    color: #fff;
    padding: 0;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    overflow: hidden;
}

.sound-btn:hover {
    background: rgba(255,255,255,0.3);
    border-color: rgba(255,255,255,0.8);
    transform: scale(1.1);
}

.sound-btn.active {
    background: rgba(255,255,255,0.4);
    border-color: rgba(255,255,255,0.9);
}

.sound-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.sound-btn.active .sound-image {
    opacity: 0.7;
    filter: brightness(1.2);
}

.sound-icon {
    font-size: 1rem;
}

.music-credits {
    margin-top: 40px;
    text-align: center;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.music-credits:hover {
    opacity: 1;
}

.artist-link {
    text-decoration: none;
    color: inherit;
    display: inline-block;
    transition: all 0.3s ease;
    position: relative;
}

.artist-link:hover {
    transform: scale(1.05);
}

.artist-link:hover .artist-logo {
    border-color: rgba(255,255,255,0.6);
    box-shadow: 0 0 20px rgba(255,255,255,0.3);
}

.artist-link:hover .youtube-hint {
    opacity: 1;
    transform: translateY(-3px);
}

.artist-logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 15px;
    border: 2px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
    cursor: pointer;
}

.music-title {
    color: rgba(255,255,255,0.9);
    font-size: 1rem;
    font-style: italic;
    margin: 5px 0;
}

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

.youtube-hint {
    color: rgba(255,255,255,0.5);
    font-size: 0.8rem;
    margin: 8px 0 0;
    opacity: 0;
    transition: all 0.3s ease;
    transform: translateY(0);
}

/* Footer - Signature mise à jour */
.footer {
    text-align: center;
    padding: 60px 40px 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.signature p {
    margin: 6px 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

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

.name {
    color: rgba(255,255,255,0.9);
    font-weight: bold;
    font-size: 1rem;
    margin: 4px 0;
}

.description {
    color: rgba(255,255,255,0.7);
}

.theme {
    color: rgba(255,255,255,0.6);
    font-style: italic;
}

.cave-intro {
    text-align: center;
    margin-bottom: 40px;
    padding: 30px;
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.1);
}

.cave-question {
    color: rgba(255,255,255,0.9);
    font-size: 1.3rem;
    font-style: italic;
    margin: 0 0 10px 0;
}

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

.breche-reflection {
    margin-top: 20px;
    padding: 15px;
    background: rgba(255,255,255,0.08);
    border-radius: 10px;
    border-left: 3px solid rgba(255,255,255,0.3);
}

.breche-question {
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
    font-style: italic;
    margin: 0;
}

.cave-conclusion {
    text-align: center;
    margin-top: 40px;
    padding: 25px;
    background: rgba(255,255,255,0.03);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.08);
}

.final-thought {
    color: rgba(255,255,255,0.7);
    font-size: 1.1rem;
    margin: 8px 0;
    line-height: 1.6;
}

.psychological-analysis {
    margin-top: 20px;
    padding: 20px;
    background: rgba(255,255,255,0.06);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.15);
}

.psychological-analysis h4 {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    margin: 0 0 15px 0;
    text-align: center;
    font-style: italic;
}

.psychological-analysis p {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 10px 0;
}

.psychological-analysis strong {
    color: rgba(255,255,255,0.95);
    font-weight: 600;
}

.map-symbolic {
    text-align: center;
    margin: 40px 0;
    padding: 30px;
    background: rgba(255,255,255,0.03);
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.1);
}

.symbolic-map {
    max-width: 400px;
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 0 30px rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

.symbolic-map:hover {
    transform: scale(1.02);
    box-shadow: 0 0 40px rgba(255,255,255,0.15);
}

.map-caption {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    font-style: italic;
    margin: 0;
}

.final-text-section {
    margin-top: 40px;
    padding: 30px;
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.15);
}

.final-text-section .text-item {
    background: rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.2);
}

.breche-answer {
    color: rgba(255,255,255,0.85);
    font-style: italic;
    margin-top: 8px;
    font-size: 0.95rem;
}

/* Section Immersion */
#immersion {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background: linear-gradient(135deg, #000000 0%, #0a0a0a 50%, #000000 100%);
}

#immersion .content {
    position: relative;
    z-index: 10;
    background: rgba(0,0,0,0.9);
    padding: 40px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    max-width: 900px;
    margin: 0 auto;
}

.immersion-intro {
    text-align: center;
    margin-bottom: 40px;
    padding: 30px;
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.1);
}

.immersion-description {
    color: rgba(255,255,255,0.9);
    font-size: 1.2rem;
    margin: 0 0 10px 0;
    line-height: 1.6;
}

.immersion-subtitle {
    color: rgba(255,255,255,0.7);
    font-size: 1rem;
    font-style: italic;
    margin: 0;
}

.video-container {
    margin: 40px 0;
    text-align: center;
}

.video-wrapper {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    /* Plus de fond noir, juste l'image */
}

.video-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.video-thumbnail {
    position: relative;
    width: 100%;
    max-width: 560px;
    height: 315px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 0 50px rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

.thumbnail-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.3);
    transition: background 0.3s ease;
}

.play-button {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.1);
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: rgba(255,255,255,0.8);
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.video-link:hover .video-thumbnail {
    transform: scale(1.05);
    box-shadow: 0 0 70px rgba(255,255,255,0.15);
}

.video-link:hover .thumbnail-img {
    transform: scale(1.05);
    filter: brightness(0.8);
}

.video-link:hover .play-overlay {
    background: rgba(0,0,0,0.8);
}

.video-link:hover .play-button {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.5);
    color: rgba(255,255,255,1);
    transform: scale(1.1);
}

/* Thumbnail stylisé pour le lien YouTube */

.immersion-controls {
    text-align: center;
    margin: 40px 0;
    padding: 30px;
    background: rgba(255,255,255,0.03);
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.08);
}

.immersion-btn {
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    border: 2px solid rgba(255,255,255,0.3);
    color: #fff;
    padding: 15px 30px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.immersion-btn:hover {
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0.1) 100%);
    border-color: rgba(255,255,255,0.5);
    transform: scale(1.05);
}

.btn-icon {
    font-size: 1.3rem;
}

.btn-text {
    font-weight: 500;
}

.immersion-info {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.info-item {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    margin: 0;
    padding: 8px 15px;
    background: rgba(255,255,255,0.05);
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.1);
}

.immersion-note {
    text-align: center;
    margin-top: 30px;
    padding: 20px;
    background: rgba(255,255,255,0.02);
    border-radius: 10px;
    border-left: 3px solid rgba(255,255,255,0.3);
}

.immersion-note p {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
}

/* Responsive pour immersion */
@media (max-width: 768px) {
    .video-thumbnail {
        height: 200px;
    }
    
    .play-button {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .immersion-video {
        max-width: 100%;
        height: 200px;
    }
    
    .immersion-info {
        flex-direction: column;
        gap: 10px;
    }
    
    .immersion-controls {
        padding: 20px;
    }
    
    .immersion-btn {
        padding: 12px 20px;
        font-size: 1rem;
    }
}

/* Styles communs */
.question-container {
    margin-bottom: 40px;
}

.central-question {
    font-size: 1.5rem;
    margin-bottom: 30px;
    font-style: italic;
    white-space: nowrap;
}

.instruction-text {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    margin: 10px 0 20px 0;
    opacity: 0.7;
    transition: opacity 2s ease;
    animation: fadeInInstruction 3s ease 1s forwards;
}

@keyframes fadeInInstruction {
    from { opacity: 0; }
    to { opacity: 0.7; }
}

.reflection-options {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
}

.reflection-btn {
    padding: 12px 30px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.reflection-btn:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.4);
    box-shadow: 0 0 15px rgba(255,255,255,0.2);
}

.intro-text {
    margin: 40px 0;
}

.intro-text .central-question {
    font-size: 1.5rem;
    font-style: italic;
    color: #fff;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.2;
    opacity: 0.9;
    white-space: nowrap;
    animation: fadeIn 2s ease 1s forwards;
}

/* Responsive */
@media (max-width: 768px) {
    /* Compteurs mobile */
    .light-counter {
        flex-direction: column;
        gap: 15px;
        margin: 20px 0;
    }
    
    .counter-item {
        font-size: 0.8rem;
        gap: 6px;
    }
    
    .counter-value {
        font-size: 0.9rem;
    }
    
    /* Navigation mobile CORRECTE */
    nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        z-index: 1000;
        padding: 10px 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        height: 60px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    /* Garder le logo visible */
    .nav-logo {
        display: flex;
        align-items: center;
        flex: 1;
        cursor: none !important;
    }
    
    .logo-img {
        width: 40px;
        height: 40px;
        margin-right: 10px;
        cursor: none !important;
    }
    
    .site-name {
        font-size: 0.8rem;
        letter-spacing: 1px;
        white-space: nowrap;
    }
    
    /* Menu hamburger à DROITE */
    .menu-toggle {
        display: block;
        width: 30px;
        height: 25px;
        position: relative;
        cursor: pointer;
        z-index: 1001;
        order: 2;
    }
    
    .menu-toggle span {
        display: block;
        position: absolute;
        height: 3px;
        width: 100%;
        background: white;
        border-radius: 3px;
        opacity: 1;
        left: 0;
        transform: rotate(0deg);
        transition: .25s ease-in-out;
    }
    
    .menu-toggle span:nth-child(1) {
        top: 0px;
    }
    
    .menu-toggle span:nth-child(2) {
        top: 8px;
    }
    
    .menu-toggle span:nth-child(3) {
        top: 16px;
    }
    
    .menu-toggle.active span:nth-child(1) {
        top: 8px;
        transform: rotate(135deg);
    }
    
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
        left: -60px;
    }
    
    .menu-toggle.active span:nth-child(3) {
        top: 8px;
        transform: rotate(-135deg);
    }
    
    /* Navigation items cachés par défaut */
    .nav-items {
        position: fixed;
        top: 60px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 60px);
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(15px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 0;
        padding: 40px 20px;
        transition: left 0.3s ease;
        overflow-y: auto;
    }
    
    .nav-items.active {
        left: 0;
    }
    
    .nav-item {
        width: 100%;
        max-width: 300px;
        padding: 20px;
        font-size: 1.2rem;
        text-align: center;
        border-radius: 12px;
        margin: 10px 0;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        transition: all 0.3s ease;
        min-height: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .nav-item:hover {
        background: rgba(255, 255, 255, 0.15);
        border-color: rgba(255, 255, 255, 0.3);
        transform: translateY(-2px);
    }
    
    .nav-item.active {
        background: rgba(255, 255, 255, 0.2);
        border-color: rgba(255, 255, 255, 0.4);
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
    }
    
    /* Cacher le menu hamburger sur desktop */
    .menu-toggle {
        display: block;
    }
    
    /* Ajuster les sections pour le menu fixe */
    .section {
        padding-top: 80px; /* Espace pour le menu fixe */
        min-height: 100vh;
    }
    
    /* Terre mobile CORRECTE */
    .earth-container {
        transform: scale(0.6);
        margin: 20px auto;
        width: 120px;
        height: 120px;
    }
    
    .dark-earth {
        width: 120px;
        height: 120px;
        border-radius: 50%;
    }
    
    /* Fissure mobile CORRECTE */
    .breach-container {
        transform: scale(0.4);
        margin: 20px auto;
        width: 200px;
        height: 200px;
        background: transparent;
        border: none;
    }
    
    /* Titres mobile */
    .title {
        font-size: 2.5rem;
        letter-spacing: 4px;
        padding: 0 20px;
    }
    
    .subtitle p {
        font-size: 1.1rem;
        padding: 0 20px;
    }
    
    /* Sections mobile */
    .section {
        padding: 80px 20px 40px 20px; /* Top augmenté pour menu fixe */
        min-height: 100vh;
    }
    
    .content {
        max-width: 100%;
        padding: 0 20px;
    }
    
    /* Section Création mobile */
    .reflection-options {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        margin: 30px 0;
    }
    
    .reflection-btn {
        width: 100%;
        max-width: 280px;
        padding: 15px 20px;
        font-size: 1rem;
    }
    
    .central-question {
        font-size: 1.3rem;
        line-height: 1.2;
        text-align: center;
        margin: 30px 0;
        padding: 0 20px;
        white-space: nowrap;
    }
    
    /* Cercle Hyvide mobile */
    .artist-logo {
        width: 80px;
        height: 80px;
        margin: 20px auto;
    }
    
    /* Starfield mobile */
    .starfield-container {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        z-index: -1;
    }
    
    /* Compteurs mobile */
    .counters {
        bottom: 20px;
        left: 20px;
        right: 20px;
        text-align: center;
    }
    
    .counter {
        font-size: 0.9rem;
        margin: 0 10px;
    }
    
    /* Section Textes mobile */
    .text-box {
        padding: 20px;
        margin: 15px 0;
        max-height: 300px;
    }
    
    .text-box h3 {
        font-size: 1.2rem;
    }
    
    .text-box p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    /* Section Immersion mobile */
    .immersion-description {
        font-size: 1.1rem;
        text-align: center;
        padding: 0 20px;
    }
    
    .video-thumbnail {
        height: 200px;
        margin: 20px auto;
    }
    
    /* Audio mobile */
    .audio-controls {
        bottom: 80px;
        left: 20px;
        right: 20px;
    }
    
    .play-button {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .volume-control {
        width: 100px;
    }
}

/* Cacher le hamburger sur desktop */
@media (min-width: 769px) {
    .menu-toggle {
        display: none;
    }
    
    .nav-logo {
        display: flex;
        cursor: none !important;
    }
    
    nav {
        display: block;
        text-align: center;
        padding: 20px;
    }
}

/* 🌍 TERRE CLIQUABLE - ANIMATION D'EXPANSION */
.earth-container {
    cursor: none !important;
    transition: all 0.3s ease;
}

.earth-container:hover {
    transform: scale(1.05);
}

.earth-expanding {
    animation: earthExpansion 3s ease-in-out forwards;
}

@keyframes earthExpansion {
    0% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
    25% {
        transform: scale(1.5) rotate(90deg);
        opacity: 0.8;
    }
    50% {
        transform: scale(2) rotate(180deg);
        opacity: 0.6;
    }
    75% {
        transform: scale(3) rotate(270deg);
        opacity: 0.3;
    }
    100% {
        transform: scale(5) rotate(360deg);
        opacity: 0;
    }
}

/* 🌙 OVERLAY DE TRANSITION */
.earth-transition-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(0,0,0,0.9) 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    animation: overlayPulse 3s ease-in-out;
}

.transition-message {
    text-align: center;
    color: white;
    animation: messageAppear 2s ease-in-out;
}

.transition-message h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    opacity: 0.9;
    text-shadow: 0 0 20px rgba(255,255,255,0.5);
}

.transition-message p {
    font-size: 1.2rem;
    opacity: 0.7;
    font-style: italic;
}

@keyframes overlayPulse {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    50% {
        opacity: 1;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(1.2);
    }
}

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

/* 🌍 TERRE ÉVEILLÉE - Effets d'amélioration durable */
.earth-awakened {
    /* PLUS D'ANIMATION QUI PULSE SUR LE CONTENEUR ! */
}

.earth-awakened .earth-aura {
    display: none; /* LUMIÈRE BLANCHE DÉGAGÉE ! */
}

.earth-awakened .dark-earth {
    /* TERRE ÉVEILLÉE - BLEU RÉVEILLÉ ! */
    background: radial-gradient(circle at 30% 30%, 
        rgba(100, 150, 200, 0.25) 0%, 
        rgba(80, 120, 160, 0.15) 25%, 
        rgba(60, 90, 120, 0.10) 45%, 
        rgba(40, 60, 80, 0.08) 65%, 
        rgba(20, 30, 40, 0.05) 85%);
    box-shadow: 
        inset 0 0 40px rgba(150, 200, 255, 0.25),
        inset 0 0 80px rgba(100, 150, 255, 0.15),
        inset 0 0 120px rgba(50, 100, 200, 0.10);
    animation: earthRotate 120s linear infinite !important;
}

@keyframes earthAwakenedPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
}

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

@keyframes earthGlow {
    0%, 100% {
        filter: brightness(1); /* Garder le bleu naturel, juste un léger glow */
    }
    50% {
        filter: brightness(1.1); /* Très subtil - pas de changement de couleur */
    }
}

/* ✨ Points de conscience éveillés */
.awakened-point {
    width: 6px !important;
    height: 6px !important;
    background: radial-gradient(circle, rgba(255,255,255,1) 0%, rgba(255,255,255,0.8) 50%, transparent 100%) !important;
    box-shadow: 0 0 15px rgba(255,255,255,0.8) !important;
}

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

/* 💭 Message de confirmation - SUPPRIMÉ ! Plus de popup inutile */

/* 🌍 CARTE VISUELLE : VIDÉO GAUCHE + INFO DROITE */
.immersion-split-card {
    display: flex;
    height: 300px;
    border-radius: 20px;
    overflow: hidden;
    margin: 20px 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
    border: 1px solid rgba(255,255,255,0.1);
    width: 100%;
    max-width: none;
}

.video-side {
    flex: 1.2;
    position: relative;
    overflow: visible;
}

.cycle-video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.play-button-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.play-button-overlay:hover {
    background: rgba(0,0,0,0.5);
}

.play-btn-large {
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #000;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-btn-large:hover {
    transform: scale(1.1);
    background: white;
}

.info-side {
    flex: 0.8;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cycle-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.cycle-number {
    font-size: 2.5rem;
    font-weight: 200;
    color: rgba(255,255,255,0.8);
    letter-spacing: 3px;
}

.cycle-title {
    font-size: 1.8rem;
    font-weight: 300;
    color: rgba(255,255,255,0.9);
    line-height: 1.2;
}

.cycle-description {
    font-size: 1rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 15px;
    line-height: 1.4;
}

.cycle-details {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.detail-item {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 4px 10px;
    border-radius: 12px;
    color: rgba(255,255,255,0.9);
    font-size: 0.75rem;
}

.immersion-btn {
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0.1) 100%);
    border: 1px solid rgba(255,255,255,0.3);
    padding: 12px 20px;
    border-radius: 25px;
    color: white;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    justify-content: center;
}

.immersion-btn:hover {
    background: linear-gradient(135deg, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0.2) 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255,255,255,0.2);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .immersion-split-card {
        flex-direction: column;
        height: auto;
        margin: 20px 0;
    }
    
    .video-side {
        height: 200px;
        flex: none;
    }
    
    .info-side {
        padding: 25px;
        flex: none;
    }
    
    .cycle-header {
        margin-bottom: 10px;
    }
    
    .cycle-number {
        font-size: 2.5rem;
    }
    
    .cycle-title {
        font-size: 1.8rem;
    }
    
    .cycle-description {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    
    .immersion-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .video-side {
        height: 180px;
    }
    
    .info-side {
        padding: 20px;
    }
    
    .cycle-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .cycle-number {
        font-size: 2rem;
    }
    
    .cycle-title {
        font-size: 1.5rem;
    }
    
    .cycle-description {
        font-size: 0.9rem;
    }
    
    .play-btn-large {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}
.world-map-container {
    position: relative;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, #000000 0%, #0a0a0a 50%, #000000 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: scale(0.8);
    transition: all 1s ease;
}

.world-map-container.map-visible {
    opacity: 1;
    transform: scale(1);
}

.world-map {
    width: 90%;
    max-width: 1200px;
    height: 80vh;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.8);
}

.map-header {
    text-align: center;
    margin-bottom: 30px;
}

.map-header h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 10px;
    text-shadow: 0 0 20px rgba(255,255,255,0.3);
}

.map-header p {
    color: rgba(255,255,255,0.7);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.close-map-btn {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.3);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: none !important;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.close-map-btn:hover {
    background: rgba(255,255,255,0.2);
    transform: scale(1.05);
}

.map-content {
    display: flex;
    gap: 40px;
    align-items: center;
}

.world-map-svg {
    flex: 1;
    height: 400px;
    background: rgba(0,0,0,0.3);
    border-radius: 15px;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.world-svg {
    width: 100%;
    height: 100%;
}

.continent {
    transition: all 0.3s ease;
}

.continent:hover {
    fill: rgba(255,255,255,0.2);
    stroke: rgba(255,255,255,0.5);
}

.world-light {
    filter: drop-shadow(0 0 10px currentColor);
}

.map-stats {
    width: 200px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 15px;
}

.stat-number {
    display: block;
    font-size: 2rem;
    color: white;
    margin-bottom: 5px;
    text-shadow: 0 0 10px rgba(255,255,255,0.3);
}

.stat-label {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

/* Responsive pour la carte mondiale */
@media (max-width: 768px) {
    .world-map {
        width: 95%;
        height: 90vh;
        padding: 20px;
    }
    
    .map-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .world-map-svg {
        width: 100%;
        height: 300px;
    }
    
    .map-stats {
        width: 100%;
        flex-direction: row;
        justify-content: space-around;
    }
    
    .map-header h2 {
        font-size: 1.8rem;
    }
    
    .transition-message h2 {
        font-size: 1.8rem;
    }
}

/* Mobile très petit (portrait) */
@media (max-width: 480px) {
    .title {
        font-size: 2rem;
        letter-spacing: 2px;
    }
    
    /* Menu mobile très petit */
    .nav-item {
        font-size: 0.8rem;
        padding: 6px 8px;
        min-width: 60px;
        min-height: 36px;
    }
    
    .central-question {
        font-size: 1.1rem;
        white-space: nowrap;
    }
    
    .reflection-btn {
        font-size: 0.9rem;
        padding: 12px 16px;
    }
    
    .dark-earth {
        width: 120px;
        height: 120px;
    }
    
    .earth-container {
        transform: scale(0.6);
    }
    
    .counter {
        font-size: 0.8rem;
        padding: 5px 10px;
    }
}

/* Mobile paysage */
@media (max-width: 896px) and (orientation: landscape) {
    .section {
        min-height: 100vh;
        padding: 20px;
    }
    
    .reflection-options {
        flex-direction: row;
        justify-content: center;
        gap: 30px;
        margin: 20px 0;
    }
    
    .reflection-btn {
        width: auto;
        min-width: 200px;
    }
    
    .central-question {
        font-size: 1.2rem;
        margin: 20px 0;
        white-space: nowrap;
    }
    
    .earth-container {
        transform: scale(0.6);
        margin: 10px auto;
    }
}

/* Optimisations tactiles pour mobile */
@media (hover: none) and (pointer: coarse) {
    /* Boutons plus grands pour le tactile */
    .reflection-btn {
        min-height: 44px; /* Taille minimum Apple */
        padding: 12px 20px;
        font-size: 16px; /* Taille minimum Apple */
    }
    
    /* Zones de clic plus grandes */
    .nav-item {
        padding: 15px 20px;
        min-height: 44px;
    }
    
    /* Starfield plus accessible au tactile */
    .starfield {
        cursor: default;
    }
    
    /* Tooltips plus grands */
    .thought-tooltip {
        font-size: 16px;
        padding: 12px 16px;
        min-height: 44px;
    }
    
    /* Audio controls plus grands */
    .play-button {
        min-width: 44px;
        min-height: 44px;
    }
    
    /* Compteurs plus grands */
    .counter {
        padding: 8px 12px;
        font-size: 14px;
        min-height: 36px;
    }
}

/* Optimisations pour écrans très petits */
@media (max-width: 360px) {
    .title {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }
    
    .central-question {
        font-size: 1.0rem;
        line-height: 1.1;
        white-space: nowrap;
    }
    
    .reflection-btn {
        font-size: 0.9rem;
        padding: 10px 14px;
        min-width: 44px;
        min-height: 44px;
    }
    
    .dark-earth {
        width: 100px;
        height: 100px;
    }
    
    .earth-container {
        transform: scale(0.5);
    }
    
    .artist-logo {
        width: 60px;
        height: 60px;
    }
}

/* Animations d'apparition */
.fade-in {
    opacity: 0;
    animation: fadeIn 1s ease forwards;
}

.slide-up {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 1s ease forwards;
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
