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

:root {
    --orange: #FF8C00;
    --gold: #FFD700;
    --yellow: #FFFF00;
    --cream: #FFF8DC;
    --black: #000000;
    --red: #FF0000;
    --blue: #87CEEB;
    --white: #FFFFFF;
    --bg-light: #FFF8DC;
    --bg-dark: #1a1a1a;
}

html {
    overflow-x: hidden;
}

body {
    font-family: 'Arial', 'Helvetica', 'Comic Sans MS', sans-serif;
    background: var(--bg-light);
    color: var(--black);
    overflow-x: hidden;
    line-height: 1.6;
    position: relative;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
}

* {
    box-sizing: border-box;
}

/* ==================== NAVIGATION ==================== */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    padding: clamp(0.8rem, 2vw, 1.2rem) clamp(3%, 5vw, 5%);
    z-index: 1000;
    box-shadow: none;
    border-bottom: none;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: relative;
}

.nav-links {
    display: flex;
    gap: 1.2rem;
    list-style: none;
    margin: 0;
    padding: 0;
    margin-left: auto;
}

.nav-links a {
    color: var(--black);
    text-decoration: none;
    font-weight: bold;
    font-size: clamp(0.78em, 1.6vw, 1em);
    padding: clamp(0.28rem, 0.8vw, 0.45rem) clamp(0.55rem, 1.3vw, 0.9rem);
    border-radius: 15px;
    transition: all 0.3s ease;
    text-shadow: 2px 2px 0 rgba(255, 255, 255, 0.6);
    background: var(--orange);
    border: 3px solid var(--black);
    box-shadow: 
        inset 0 2px 0 rgba(255, 255, 255, 0.4),
        0 4px 0 rgba(0, 0, 0, 0.3);
}

.nav-links a:hover {
    transform: translateY(2px);
    box-shadow: 
        inset 0 2px 0 rgba(255, 255, 255, 0.4),
        0 2px 0 rgba(0, 0, 0, 0.3);
    background: #00FF00;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 12px;
    background: var(--orange);
    border-radius: 10px;
    border: 3px solid var(--black);
    box-shadow: 
        inset 0 2px 0 rgba(255, 255, 255, 0.3),
        0 4px 0 rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    z-index: 1001;
}

.mobile-toggle:hover {
    background: var(--red);
    transform: translateY(2px);
    box-shadow: 
        inset 0 2px 0 rgba(255, 255, 255, 0.3),
        0 2px 0 rgba(0, 0, 0, 0.3);
}

.mobile-toggle.active {
    background: var(--red);
}

.mobile-toggle span {
    width: 32px;
    height: 4px;
    background: var(--white);
    border-radius: 3px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* ==================== HERO SECTION ==================== */
.hero {
    min-height: 100vh;
    min-height: 100dvh;
    height: 100vh;
    height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(60px, 6vh, 80px) clamp(3%, 5vw, 5%) clamp(40px, 5vh, 60px);
    position: relative;
    overflow-x: hidden;
    overflow-y: hidden;
    background: var(--white);
    z-index: 10;
    border-bottom: clamp(5px, 1.2vw, 10px) solid var(--black);
    box-sizing: border-box;
}

.hero-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="40" height="40" xmlns="http://www.w3.org/2000/svg"><rect width="20" height="20" fill="%23FF8C00" opacity="0.08"/><rect x="20" y="20" width="20" height="20" fill="%23FF8C00" opacity="0.08"/></svg>');
    pointer-events: none;
}

.hero-content {
    scale: 0.85;
    max-width: 1100px;
    width: 100%;
    text-align: center;
    z-index: 2;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.hero-logo-container {
    margin-bottom: clamp(15px, 2vh, 30px);
}

.hero-logo-container img {
    max-width: min(280px, 40vw);
    height: auto;
    animation: float 3.5s ease-in-out infinite;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.4));
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-25px) rotate(3deg); }
}

.hero h1 {
    font-size: clamp(2.5em, 8vw, 6em);
    font-weight: 900;
    color: var(--orange);
    text-shadow: 
        clamp(2px, 0.8vw, 5px) clamp(2px, 0.8vw, 5px) 0 rgba(255, 140, 0, 0.3),
        clamp(3px, 1.2vw, 8px) clamp(3px, 1.2vw, 8px) 0 rgba(0, 0, 0, 0.2),
        0 0 clamp(20px, 5vw, 40px) rgba(255, 140, 0, 0.3);
    margin-bottom: clamp(10px, 2vh, 20px);
    letter-spacing: clamp(2px, 1vw, 5px);
    position: relative;
    z-index: 2;
    word-wrap: break-word;
}

.hero .tagline {
    font-size: clamp(1.2em, 3.5vw, 2.2em);
    color: var(--orange);
    font-weight: bold;
    text-shadow: 
        3px 3px 0 rgba(255, 140, 0, 0.3),
        0 0 20px rgba(255, 140, 0, 0.3);
    margin-bottom: clamp(15px, 2vh, 25px);
    letter-spacing: clamp(1px, 0.5vw, 2px);
    position: relative;
    z-index: 2;
    word-wrap: break-word;
}

.hero .subtitle {
    font-size: clamp(1em, 2.5vw, 1.6em);
    margin-bottom: clamp(20px, 3vh, 40px);
    color: var(--orange);
    max-width: min(850px, 90vw);
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    font-weight: 500;
    text-shadow: 1px 1px 0 rgba(255, 140, 0, 0.2);
    position: relative;
    z-index: 2;
    padding: 0 10px;
    word-wrap: break-word;
}

.cta-buttons {
    display: flex;
    gap: clamp(15px, 3vw, 25px);
    justify-content: center;
    flex-wrap: wrap;
    margin-top: clamp(20px, 3vh, 30px);
    position: relative;
    z-index: 100;
    padding: 0 5%;
}

.cta-btn {
    padding: clamp(15px, 2.5vw, 20px) clamp(30px, 6vw, 50px);
    font-size: clamp(1em, 2.5vw, 1.4em);
    font-weight: bold;
    text-decoration: none;
    border-radius: 15px;
    border: clamp(3px, 0.8vw, 5px) solid var(--black);
    box-shadow: 
        inset 0 3px 0 rgba(255, 255, 255, 0.6),
        8px 8px 0 rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
    cursor: pointer;
    color: var(--black);
    text-shadow: 2px 2px 0 rgba(255, 255, 255, 0.6);
    position: relative;
    z-index: 100;
    white-space: nowrap;
}

.cta-primary {
    background: linear-gradient(to bottom, var(--gold), var(--orange));
}

.cta-secondary {
    background: linear-gradient(to bottom, #00D084, #00a86b);
    color: var(--white);
    text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.6);
}

.cta-btn:hover {
    transform: translateY(-6px);
    box-shadow: 
        inset 0 3px 0 rgba(255, 255, 255, 0.6),
        10px 10px 0 rgba(0, 0, 0, 0.4);
}

.cta-btn:active {
    transform: translate(4px, 4px);
    box-shadow: 
        inset 0 3px 0 rgba(255, 255, 255, 0.6),
        4px 4px 0 rgba(0, 0, 0, 0.4);
}

/* Floating logos */
.floating-logo {
    position: absolute;
    opacity: 0.15;
    animation: float-random 10s ease-in-out infinite;
    width: 100px;
    height: auto;
    z-index: 0;
    pointer-events: none;
}

.floating-logo:nth-child(1) { top: 12%; left: 8%; animation-delay: 0s; }
.floating-logo:nth-child(2) { top: 25%; right: 12%; animation-delay: 1.5s; }
.floating-logo:nth-child(3) { bottom: 18%; left: 15%; animation-delay: 3s; }
.floating-logo:nth-child(4) { bottom: 30%; right: 8%; animation-delay: 4.5s; }

@keyframes float-random {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(25px, -25px) rotate(12deg); }
    50% { transform: translate(-20px, 20px) rotate(-12deg); }
    75% { transform: translate(15px, -15px) rotate(6deg); }
}

/* ==================== SECTIONS ==================== */
section {
    padding: clamp(60px, 10vh, 100px) clamp(3%, 5vw, 5%);
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-header h2 {
    font-size: clamp(2em, 6vw, 4.5em);
    color: var(--orange);
    text-shadow: 
        clamp(2px, 0.8vw, 5px) clamp(2px, 0.8vw, 5px) 0 rgba(255, 140, 0, 0.3),
        clamp(3px, 1.2vw, 8px) clamp(3px, 1.2vw, 8px) 0 rgba(0, 0, 0, 0.2),
        0 0 clamp(20px, 5vw, 40px) rgba(255, 140, 0, 0.3);
    margin-bottom: 25px;
    font-weight: 900;
    letter-spacing: clamp(1px, 0.5vw, 3px);
    word-wrap: break-word;
    padding: 0 10px;
}

.section-header p {
    font-size: clamp(1em, 2.5vw, 1.6em);
    color: var(--orange);
    max-width: min(850px, 90vw);
    margin: 0 auto;
    line-height: 1.6;
    padding: 0 15px;
    text-shadow: 1px 1px 0 rgba(255, 140, 0, 0.2);
}

/* ==================== TIMELINE/ROADMAP SECTION ==================== */
.timeline-section {
    background: var(--bg-light);
    border-top: 10px solid var(--black);
    border-bottom: 10px solid var(--black);
    position: relative;
    z-index: 1;
}

/* ==================== WHAT'S BUTTCOIN (new DA) ==================== */
#what-buttcoin.timeline-section {
    background: linear-gradient(180deg, rgba(255, 140, 0, 0.12), rgba(255, 255, 255, 0.92)), var(--bg-light);
}

#what-buttcoin.timeline-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(0, 0, 0, 0.08) 1.5px, transparent 1.5px);
    background-size: 14px 14px;
    opacity: 0.25;
    pointer-events: none;
}

.what-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.35fr 1fr;
    gap: clamp(22px, 4vw, 42px);
    align-items: stretch;
}

.what-card {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.12);
    border-radius: 18px;
    box-shadow: 0 14px 32px rgba(0,0,0,0.12);
    padding: clamp(22px, 3vw, 32px);
    display: grid;
    gap: 14px;
}

.what-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: rgba(255, 140, 0, 0.14);
    border-radius: 999px;
    font-weight: 900;
    color: var(--black);
    border: 1px solid rgba(0,0,0,0.12);
    width: fit-content;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-size: 0.92em;
}

.what-title {
    font-size: clamp(1.9em, 4vw, 2.6em);
    font-weight: 900;
    line-height: 1.18;
    color: var(--black);
}

.what-subtitle {
    font-size: clamp(1.05em, 2.2vw, 1.25em);
    color: #2a2a2a;
    line-height: 1.75;
}

.what-list {
    display: grid;
    gap: 10px;
    margin-top: 2px;
}

.what-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 10px;
    align-items: start;
    font-size: 1.05em;
    color: #1f1f1f;
    line-height: 1.6;
}

.what-bullet {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--orange);
    margin-top: 8px;
    flex-shrink: 0;
}

.what-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 6px;
}

.what-badge {
    padding: 7px 11px;
    border-radius: 10px;
    background: rgba(0,0,0,0.06);
    font-weight: 900;
    font-size: 0.92em;
}

.what-stack {
    display: grid;
    gap: 16px;
}

.what-media {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.12);
    border-radius: 18px;
    box-shadow: 0 14px 32px rgba(0,0,0,0.12);
    overflow: hidden;
    display: grid;
    gap: 0;
}

.what-media img {
    width: 100%;
    display: block;
    height: auto;
}

.what-media-body {
    padding: clamp(16px, 3vw, 22px);
    display: grid;
    gap: 10px;
}

.what-media-title {
    font-weight: 900;
    font-size: 1.2em;
    color: var(--black);
}

.what-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.what-meta span {
    background: rgba(255, 140, 0, 0.14);
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 8px;
    padding: 6px 10px;
    font-weight: 900;
    font-size: 0.9em;
}

.what-sidecard {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.12);
    border-radius: 16px;
    box-shadow: 0 12px 28px rgba(0,0,0,0.10);
    padding: clamp(16px, 2.5vw, 22px);
    display: grid;
    gap: 8px;
}

.what-sidecard-title {
    font-weight: 900;
    font-size: 1.05em;
    color: var(--black);
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.what-sidecard p {
    margin: 0;
    color: #1f1f1f;
    line-height: 1.6;
}

.what-sidecard a {
    color: var(--black);
    font-weight: 900;
    text-decoration: none;
    border-bottom: 3px solid var(--orange);
}

.what-sidecard a:hover {
    border-bottom-color: var(--red);
}

@media (max-width: 900px) {
    .what-grid {
        grid-template-columns: 1fr;
    }
}

.timeline-container {
    max-width: 1100px;
    margin: 0 auto;
}

.timeline-img {
    width: 100%;
    max-width: 950px;
    margin: 0 auto;
    display: block;
    border: 8px solid var(--black);
    border-radius: 25px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
    background: var(--white);
    padding: 25px;
}

/* ==================== COMIC ROADMAP SECTION ==================== */
.comic-roadmap {
    position: relative;
    padding: 80px 5%;
    background: var(--bg-light);
    overflow: visible;
    z-index: 0;
}

.comic-roadmap-strip {
    position: relative;
    max-width: min(1400px, 95vw);
    margin: 0 auto;
    height: clamp(400px, 50vh, 500px);
    background: var(--orange);
    border: clamp(5px, 1.5vw, 10px) solid var(--black);
    box-shadow: 0 10px 0 rgba(0, 0, 0, 0.3);
    overflow: visible;
    z-index: 2;
}

.comic-roadmap-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 20px,
        rgba(0, 0, 0, 0.05) 20px,
        rgba(0, 0, 0, 0.05) 40px
    );
    opacity: 0.3;
}

.comic-roadmap-content {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding: clamp(20px, 4vw, 40px) clamp(20px, 8vw, 80px);
    gap: clamp(20px, 4vw, 40px);
}

.roadmap-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    flex: 1;
    max-width: 280px;
}

.roadmap-logo-container {
    position: relative;
    margin-bottom: 20px;
}

.roadmap-logo {
    width: clamp(120px, 20vw, 180px);
    height: clamp(120px, 20vw, 180px);
    border-radius: 50%;
    border: clamp(5px, 1.2vw, 8px) solid var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 0 0 clamp(4px, 0.8vw, 6px) rgba(255, 255, 255, 0.9),
        0 0 0 clamp(6px, 1.2vw, 10px) var(--black),
        0 15px 40px rgba(0, 0, 0, 0.6),
        inset 0 5px 15px rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 3;
    background: var(--white);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.roadmap-logo:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 
        0 0 0 6px rgba(255, 255, 255, 0.9),
        0 0 0 10px var(--black),
        0 20px 50px rgba(0, 0, 0, 0.7),
        inset 0 5px 15px rgba(255, 255, 255, 0.3);
}

.roadmap-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.roadmap-logo.bitcoin {
    background: linear-gradient(135deg, #F7931A 0%, #FF8C00 100%);
    border-color: #F7931A;
}

.roadmap-logo.bitcoin img {
    padding: 20px;
    object-fit: contain;
}

.roadmap-logo.buttcoin {
    background: var(--orange);
    border-color: var(--white);
}

.roadmap-logo.dogecoin {
    background: linear-gradient(135deg, #C2A633 0%, #F5D742 100%);
    border-color: #C2A633;
}

.roadmap-logo.dogecoin img {
    padding: 15px;
    object-fit: contain;
}

.roadmap-name {
    font-size: clamp(1.5em, 4vw, 2.8em);
    font-weight: 900;
    color: var(--black);
    text-shadow: 
        4px 4px 0 rgba(255, 255, 255, 0.9),
        6px 6px 0 rgba(0, 0, 0, 0.4),
        0 0 20px rgba(255, 255, 255, 0.5);
    margin-bottom: 12px;
    font-style: italic;
    letter-spacing: clamp(1px, 0.5vw, 3px);
    text-transform: uppercase;
    word-wrap: break-word;
    text-align: center;
}

.roadmap-year {
    font-size: clamp(1.3em, 3vw, 2.2em);
    font-weight: 900;
    color: var(--black);
    text-shadow: 
        3px 3px 0 rgba(255, 255, 255, 0.9),
        5px 5px 0 rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.8);
    padding: clamp(6px, 1.2vw, 8px) clamp(12px, 2.5vw, 20px);
    border-radius: 20px;
    border: clamp(3px, 0.8vw, 4px) solid var(--black);
    display: inline-block;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.roadmap-connector {
    position: absolute;
    top: 9em;
    left: 80px;
    right: 80px;
    height: 8px;
    background: var(--black);
    z-index: 1;
    box-shadow: 0 3px 0 rgba(0, 0, 0, 0.2);
}



.roadmap-stars {
    position: absolute;
    top: -20px;
    right: 15em;
    font-size: 2em;
    color: var(--white);
    text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.5);
    animation: twinkle 2s ease-in-out infinite;
}

@keyframes twinkle {
    0%, 100% { opacity: 1; transform: scale(1) rotate(0deg); }
    50% { opacity: 0.7; transform: scale(1.2) rotate(180deg); }
}

.comic-halftone {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle, rgba(0, 0, 0, 0.15) 1.5px, transparent 1.5px);
    background-size: 12px 12px;
    opacity: 0.4;
    pointer-events: none;
}

@media (max-width: 1024px) {
    .origin-stories-container {
        padding: 20px 0;
    }
    .roadmap-dot {
        display: none;
    }
}

@media (max-width: 768px) {
    .comic-roadmap-strip {
        height: 500px;
    }

    .comic-roadmap-content {
        flex-direction: column;
        gap: 40px;
        padding: 40px 20px;
    }

    .roadmap-connector {
        display: none;
    }

    .roadmap-dot {
        display: none;
    }

    .roadmap-logo {
        width: 120px;
        height: 120px;
    }

    .roadmap-name {
        font-size: 1.8em;
    }

    .roadmap-year {
        font-size: 1.5em;
    }
}

.timeline-text {
    
    text-align: center;
    margin-top: 70px;
    max-width: 950px;
    margin-left: auto;
    margin-right: auto;
}

.timeline-text h3 {
    font-size: 3em;
    color: var(--orange);
    margin-bottom: 35px;
    text-shadow: 3px 3px 0 rgba(0, 0, 0, 0.15);
    font-weight: bold;
}

.timeline-text p {
    font-size: 1.45em;
    line-height: 1.9;
    color: var(--black);
    margin-bottom: 25px;
    text-align: left;
}

.timeline-highlight {
    background: linear-gradient(135deg, var(--orange), var(--gold));
    padding: 40px;
    border-radius: 20px;
    border: 6px solid var(--black);
    margin-top: 50px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.timeline-highlight h4 {
    font-size: 2.3em;
    margin-bottom: 20px;
    color: var(--black);
    text-shadow: 3px 3px 0 rgba(255, 255, 255, 0.6);
    text-align: center;
    font-weight: bold;
}

/* ==================== ORIGIN SECTION ==================== */
.origin-section {
    background: var(--white);
    position: relative;
    z-index: 1;
    overflow-x: hidden;
    overflow-y: visible;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
}

.origin-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="40" height="40" xmlns="http://www.w3.org/2000/svg"><rect width="20" height="20" fill="%23FF8C00" opacity="0.08"/><rect x="20" y="20" width="20" height="20" fill="%23FF8C00" opacity="0.08"/></svg>');
    pointer-events: none;
    z-index: 0;
}

.origin-section > * {
    position: relative;
    z-index: 1;
}

.origin-scroll-hint {
    text-align: center;
    margin-top: -40px;
    margin-bottom: 20px;
    font-size: clamp(0.95em, 2vw, 1.25em);
    font-weight: 900;
    color: var(--orange);
    text-shadow: 2px 2px 0 rgba(255, 255, 255, 0.7);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.origin-scroll-hint svg {
    width: 1.1em;
    height: 1.1em;
    vertical-align: -0.2em;
    margin-left: 8px;
}

.origin-stories-container {
    display: flex;
    overflow-x: scroll !important;
    overflow-y: hidden;
    gap: clamp(20px, 3vw, 35px);
    padding: clamp(30px, 5vw, 60px) clamp(5%, 8vw, 10%) clamp(80px, 10vh, 100px);
    scroll-behavior: smooth;
    scrollbar-width: auto;
    scrollbar-color: var(--orange) var(--white);
    scrollbar-gutter: stable both-edges;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    min-height: 70vh;
    align-items: stretch;
}

.origin-stories-container::-webkit-scrollbar {
    height: 25px;
    display: block !important;
    visibility: visible !important;
}

.origin-story {
    scroll-snap-align: start;
}

.origin-stories-container::-webkit-scrollbar-track {
    background: var(--white);
    border: clamp(4px, 0.8vw, 6px) solid var(--black);
    border-radius: 15px;
    box-shadow: 
        inset 0 3px 0 rgba(0, 0, 0, 0.2),
        0 0 0 clamp(2px, 0.4vw, 3px) var(--orange);
    margin: 0 clamp(5%, 8vw, 10%);
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.origin-stories-container::-webkit-scrollbar-thumb {
    background: var(--orange);
    border: clamp(4px, 0.8vw, 6px) solid var(--black);
    border-radius: 15px;
    box-shadow: 
        inset 0 3px 0 rgba(255, 255, 255, 0.4),
        0 4px 0 rgba(0, 0, 0, 0.3),
        0 0 0 clamp(2px, 0.4vw, 3px) rgba(255, 140, 0, 0.5);
    min-width: 80px;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.origin-stories-container::-webkit-scrollbar-thumb:hover {
    background: var(--red);
    box-shadow: 
        inset 0 3px 0 rgba(255, 255, 255, 0.4),
        0 6px 0 rgba(0, 0, 0, 0.4),
        0 0 0 clamp(3px, 0.6vw, 4px) rgba(255, 0, 0, 0.5);
}

.origin-stories-container::-webkit-scrollbar-thumb:active {
    transform: translateY(2px);
    box-shadow: 
        inset 0 3px 0 rgba(255, 255, 255, 0.4),
        0 2px 0 rgba(0, 0, 0, 0.3);
}

.origin-story {
    background: rgba(255, 255, 255, 0.95);
    padding: 0;
    border-radius: 20px;
    border: clamp(5px, 1vw, 8px) solid var(--black);
    box-shadow: 
        0 0 0 clamp(3px, 0.6vw, 5px) var(--orange),
        0 10px 0 rgba(0, 0, 0, 0.3),
        inset 0 3px 0 rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
    position: relative;
    backdrop-filter: blur(5px);
    width: min(400px, 80vw);
    height: min(500px, 70vh);
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* Flèche entre les cards (élément séparé entre les cards) */
.origin-story-arrow {
    flex-shrink: 0;
    display: flex;
    align-items: center; /* verticalement centré par rapport aux cards */
    justify-content: center;
    width: clamp(40px, 6vw, 60px);
    font-size: clamp(1.8em, 4vw, 3em);
    font-weight: 900;
    color: var(--orange);
    text-shadow:
        3px 3px 0 rgba(255, 255, 255, 0.9),
        5px 5px 0 rgba(0, 0, 0, 0.25);
    pointer-events: none;
    scroll-snap-align: none;
    user-select: none;
}

.origin-story:hover {
    transform: translateY(-8px) scale(1.01);
   
  
}

.origin-story h3 {
    font-size: clamp(1.4em, 3.5vw, 2.2em);
    color: var(--orange);
    margin: 0;
    text-align: center;
    font-weight: 900;
    word-wrap: break-word;
    padding: clamp(15px, 3vw, 25px) clamp(20px, 3.5vw, 30px);
    text-shadow: 
        clamp(2px, 0.5vw, 3px) clamp(2px, 0.5vw, 3px) 0 rgba(255, 140, 0, 0.3),
        0 0 clamp(15px, 3vw, 25px) rgba(255, 140, 0, 0.2);
    border-bottom: clamp(3px, 0.6vw, 5px) solid var(--black);
    position: relative;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.9);
}

.origin-story h3::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: clamp(3px, 0.6vw, 5px);
    background: var(--orange);
    border-radius: 0 0 5px 5px;
}

/* Zone de contenu scrollable */
.origin-story-content {
    flex: 1;
    overflow-y: auto;
    padding: clamp(20px, 3.5vw, 30px);
    scrollbar-width: thin;
    scrollbar-color: var(--orange) rgba(255, 255, 255, 0.5);
}

/* Scrollbar verticale pour le contenu */
.origin-story-content::-webkit-scrollbar {
    width: 12px;
}

.origin-story-content::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.5);
    border-radius: 10px;
    margin: 5px;
}

.origin-story-content::-webkit-scrollbar-thumb {
    background: var(--orange);
    border-radius: 10px;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.origin-story-content::-webkit-scrollbar-thumb:hover {
    background: var(--red);
}

/* Paragraphes dans le contenu */
.origin-story-content p {
    font-size: clamp(0.95em, 2vw, 1.2em);
    line-height: 1.7;
    margin-bottom: clamp(15px, 2.5vw, 20px);
    color: var(--orange);
    text-shadow: 1px 1px 0 rgba(255, 140, 0, 0.1);
}

.origin-story-content p:last-child {
    margin-bottom: 0;
}

.origin-story-content strong {
    color: var(--orange);
    font-weight: 900;
    text-shadow: 1px 1px 0 rgba(255, 140, 0, 0.3);
}

.origin-story-media {
    margin-top: clamp(12px, 2vw, 18px);
    border-radius: 14px;
    border: 4px solid var(--black);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 8px 0 rgba(0, 0, 0, 0.25);
    overflow: hidden;
}

.origin-story-media img {
    width: 100%;
    display: block;
    height: auto;
}

.origin-story-media figcaption {
    padding: 12px 14px;
    font-size: clamp(0.9em, 2vw, 1.05em);
    font-weight: 800;
    color: var(--black);
    background: rgba(255, 215, 0, 0.35);
    border-top: 3px solid rgba(0, 0, 0, 0.25);
}


/* ==================== CITATIONS SECTION ==================== */
.citations-section {
    background: var(--white);
    border-top: 10px solid var(--black);
    border-bottom: 10px solid var(--black);
    position: relative;
    z-index: 1;
}

.citations-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="40" height="40" xmlns="http://www.w3.org/2000/svg"><rect width="20" height="20" fill="%23FF8C00" opacity="0.08"/><rect x="20" y="20" width="20" height="20" fill="%23FF8C00" opacity="0.08"/></svg>');
    pointer-events: none;
    z-index: 0;
}

.citations-section > * {
    position: relative;
    z-index: 1;
}

/* ==================== SOCIALS (DA) ==================== */
#socials.citations-section {
    background: radial-gradient(circle at 10% 20%, rgba(255, 140, 0, 0.16) 0%, transparent 45%),
                radial-gradient(circle at 90% 10%, rgba(255, 215, 0, 0.18) 0%, transparent 40%),
                var(--white);
}

#socials.citations-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(0, 0, 0, 0.10) 1.5px, transparent 1.5px);
    background-size: 14px 14px;
    opacity: 0.25;
    pointer-events: none;
}

#socials.citations-section {
    background: radial-gradient(circle at 10% 20%, rgba(255, 140, 0, 0.16) 0%, transparent 45%),
                radial-gradient(circle at 90% 10%, rgba(255, 215, 0, 0.18) 0%, transparent 40%),
                var(--white);
}

#socials.citations-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(0, 0, 0, 0.10) 1.5px, transparent 1.5px);
    background-size: 14px 14px;
    opacity: 0.25;
    pointer-events: none;
}

.socials-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(18px, 3vw, 30px);
    padding: 0 clamp(3%, 4vw, 5%);
}

.social-card {
    display: flex;
    gap: 16px;
    align-items: center;
    text-decoration: none;
    color: var(--black);
    background: rgba(255, 255, 255, 0.98);
    border: clamp(5px, 1vw, 8px) solid var(--black);
    border-radius: 20px;
    padding: clamp(18px, 3vw, 26px);
    box-shadow:
        0 0 0 clamp(3px, 0.6vw, 5px) var(--orange),
        0 10px 0 rgba(0, 0, 0, 0.28),
        inset 0 3px 0 rgba(255, 255, 255, 0.55);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    position: relative;
    overflow: hidden;
}

.social-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -40%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 140, 0, 0.12) 0%, transparent 65%);
    opacity: 0.9;
    pointer-events: none;
}

.social-card:hover {
    transform: translateY(-6px);
    box-shadow:
        0 0 0 clamp(4px, 0.8vw, 6px) var(--orange),
        0 14px 0 rgba(0, 0, 0, 0.35),
        inset 0 3px 0 rgba(255, 255, 255, 0.55),
        0 0 30px rgba(255, 140, 0, 0.25);
}

.social-icon {
    width: clamp(62px, 10vw, 84px);
    height: clamp(62px, 10vw, 84px);
    border-radius: 18px;
    border: clamp(4px, 0.8vw, 6px) solid var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow:
        0 0 0 clamp(2px, 0.4vw, 3px) rgba(255, 140, 0, 0.35),
        0 7px 0 rgba(0, 0, 0, 0.25),
        inset 0 2px 0 rgba(255, 255, 255, 0.45);
    background: rgba(255, 255, 255, 0.92);
    overflow: hidden;
}

.social-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 12px;
    display: block;
}

.social-text {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 0;
}

.social-title {
    font-weight: 900;
    font-size: clamp(1.2em, 2.4vw, 1.8em);
    letter-spacing: 0.6px;
    text-transform: uppercase;
    text-shadow: 2px 2px 0 rgba(255, 255, 255, 0.7);
}

.social-subtitle {
    color: var(--black);
    opacity: 0.85;
    font-weight: 700;
    line-height: 1.4;
}

.social-cta {
    margin-left: auto;
    position: relative;
    z-index: 1;
    font-weight: 900;
    background: var(--orange);
    border: 3px solid var(--black);
    border-radius: 999px;
    padding: 10px 14px;
    box-shadow: 0 6px 0 rgba(0, 0, 0, 0.25);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    white-space: nowrap;
}

.citations-container {
    max-width: min(1200px, 95vw);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(350px, 90vw), 1fr));
    gap: clamp(30px, 5vw, 50px);
    padding: 0 clamp(3%, 4vw, 5%);
}

.citation-card::after {
    content: 'OFFICIAL';
    position: absolute;
    top: 15px;
    right: 15px;
    background: #00FF00;
    color: var(--black);
    padding: 6px 12px;
    border-radius: 20px;
    border: 3px solid var(--black);
    font-size: clamp(0.7em, 1.5vw, 0.85em);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 
        0 0 0 2px rgba(0, 255, 0, 0.3),
        0 4px 0 rgba(0, 0, 0, 0.3),
        inset 0 2px 0 rgba(255, 255, 255, 0.4);
    z-index: 2;
    animation: pulse 2s ease-in-out infinite;
}

.citation-card::before {
    content: '';
    position: absolute;
    top: 20px;
    right: 20px;
    width: 14px;
    height: 14px;
    background: var(--black);
    clip-path: polygon(28% 38%, 41% 53%, 75% 24%, 85% 34%, 40% 78%, 15% 50%);
    z-index: 3;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 
            0 0 0 2px rgba(0, 255, 0, 0.3),
            0 4px 0 rgba(0, 0, 0, 0.3),
            inset 0 2px 0 rgba(255, 255, 255, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 
            0 0 0 4px rgba(0, 255, 0, 0.5),
            0 6px 0 rgba(0, 0, 0, 0.4),
            inset 0 2px 0 rgba(255, 255, 255, 0.4),
            0 0 15px rgba(0, 255, 0, 0.4);
    }
}

.citation-card {
    background: rgba(255, 255, 255, 0.98);
    border: clamp(5px, 1vw, 8px) solid var(--black);
    border-radius: 20px;
    padding: clamp(25px, 4vw, 35px);
    box-shadow: 
        0 0 0 clamp(3px, 0.6vw, 5px) var(--orange),
        0 10px 0 rgba(0, 0, 0, 0.3),
        inset 0 3px 0 rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.tweet-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    border: clamp(4px, 0.8vw, 6px) solid var(--black);
    margin-bottom: clamp(20px, 3vw, 30px);
    box-shadow: 
        0 0 0 clamp(2px, 0.4vw, 3px) var(--orange),
        0 8px 0 rgba(0, 0, 0, 0.3);
    object-fit: contain;
    background: var(--white);
    transition: all 0.3s ease;
}

.citation-card:hover .tweet-image {
    transform: scale(1.02);
    box-shadow: 
        0 0 0 clamp(3px, 0.6vw, 4px) var(--orange),
        0 10px 0 rgba(0, 0, 0, 0.4),
        0 0 20px rgba(255, 140, 0, 0.3);
}

.tweet-description {
    font-size: clamp(1em, 2vw, 1.2em);
    color: var(--orange);
    line-height: 1.7;
    text-shadow: 1px 1px 0 rgba(255, 140, 0, 0.1);
    margin-top: auto;
}

.citation-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 140, 0, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.citation-card:hover::before {
    opacity: 1;
}

.citation-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 0 0 clamp(4px, 0.8vw, 6px) var(--orange),
        0 15px 0 rgba(0, 0, 0, 0.4),
        inset 0 3px 0 rgba(255, 255, 255, 0.5),
        0 0 30px rgba(255, 140, 0, 0.3);
    border-color: var(--orange);
}

.citation-header {
    display: flex;
    align-items: center;
    gap: clamp(12px, 2vw, 20px);
    margin-bottom: clamp(15px, 2.5vw, 20px);
    padding-bottom: clamp(12px, 2vw, 18px);
    border-bottom: clamp(3px, 0.6vw, 5px) solid var(--black);
    position: relative;
}

.citation-header::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 60px;
    height: clamp(3px, 0.6vw, 5px);
    background: var(--orange);
    border-radius: 0 0 5px 5px;
}

.citation-icon {
    background: var(--orange);
    width: clamp(60px, 10vw, 80px);
    height: clamp(60px, 10vw, 80px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: clamp(4px, 0.8vw, 6px) solid var(--black);
    box-shadow: 
        0 0 0 clamp(2px, 0.4vw, 3px) rgba(255, 140, 0, 0.3),
        0 6px 0 rgba(0, 0, 0, 0.3),
        inset 0 2px 0 rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.citation-icon svg {
    width: clamp(30px, 5vw, 40px);
    height: clamp(30px, 5vw, 40px);
    fill: var(--black);
}

.citation-card:hover .citation-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 
        0 0 0 clamp(3px, 0.6vw, 5px) rgba(255, 140, 0, 0.5),
        0 8px 0 rgba(0, 0, 0, 0.4),
        inset 0 2px 0 rgba(255, 255, 255, 0.4),
        0 0 20px rgba(255, 140, 0, 0.4);
}

.citation-header h3 {
    font-size: clamp(1.3em, 3vw, 1.8em);
    color: var(--orange);
    font-weight: 900;
    margin: 0;
    flex: 1;
    word-wrap: break-word;
    text-shadow: 
        clamp(1px, 0.3vw, 2px) clamp(1px, 0.3vw, 2px) 0 rgba(255, 140, 0, 0.3),
        0 0 clamp(10px, 2vw, 15px) rgba(255, 140, 0, 0.2);
}

.citation-date {
    background: var(--orange);
    color: var(--black);
    padding: clamp(8px, 1.5vw, 12px) clamp(12px, 2.5vw, 20px);
    border-radius: 20px;
    border: clamp(3px, 0.6vw, 4px) solid var(--black);
    font-weight: 900;
    font-size: clamp(0.85em, 1.8vw, 1em);
    white-space: nowrap;
    box-shadow: 
        0 0 0 clamp(2px, 0.4vw, 3px) rgba(255, 140, 0, 0.3),
        0 4px 0 rgba(0, 0, 0, 0.3),
        inset 0 2px 0 rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.citation-card:hover .citation-date {
    transform: scale(1.05);
    box-shadow: 
        0 0 0 clamp(3px, 0.6vw, 4px) rgba(255, 140, 0, 0.5),
        0 6px 0 rgba(0, 0, 0, 0.4),
        inset 0 2px 0 rgba(255, 255, 255, 0.4);
}

.citation-content {
    font-size: clamp(1em, 2vw, 1.15em);
    line-height: 1.8;
    color: var(--orange);
    text-shadow: 1px 1px 0 rgba(255, 140, 0, 0.1);
    margin-top: auto;
}

.tweet-description {
    font-size: clamp(0.95em, 1.8vw, 1.1em);
    line-height: 1.6;
    color: var(--orange);
    text-shadow: 1px 1px 0 rgba(255, 140, 0, 0.1);
    margin-top: clamp(15px, 2.5vw, 20px);
    padding: clamp(15px, 2.5vw, 20px);
    background: rgba(255, 140, 0, 0.1);
    border-radius: 12px;
    border: 2px solid rgba(255, 140, 0, 0.3);
}

.citation-content p {
    margin-bottom: 20px;
}

.citation-note {
    background: var(--orange);
    padding: clamp(18px, 3vw, 25px);
    border: clamp(3px, 0.6vw, 4px) solid var(--black);
    border-radius: 15px;
    margin-top: clamp(20px, 3vw, 30px);
    box-shadow: 
        0 0 0 clamp(2px, 0.4vw, 3px) rgba(255, 140, 0, 0.3),
        0 6px 0 rgba(0, 0, 0, 0.3),
        inset 0 2px 0 rgba(255, 255, 255, 0.4);
    position: relative;
    font-weight: 600;
    color: var(--black);
    text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.citation-card:hover .citation-note {
    transform: scale(1.02);
    box-shadow: 
        0 0 0 clamp(3px, 0.6vw, 4px) rgba(255, 140, 0, 0.5),
        0 8px 0 rgba(0, 0, 0, 0.4),
        inset 0 2px 0 rgba(255, 255, 255, 0.4);
}

/* ==================== BUY SECTION ==================== */
.buy-section {
    background: var(--white);
    border-top: 10px solid var(--black);
    border-bottom: 10px solid var(--black);
    position: relative;
    z-index: 1;
}

.buy-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="40" height="40" xmlns="http://www.w3.org/2000/svg"><rect width="20" height="20" fill="%23FF8C00" opacity="0.08"/><rect x="20" y="20" width="20" height="20" fill="%23FF8C00" opacity="0.08"/></svg>');
    pointer-events: none;
    z-index: 0;
}

.buy-section > * {
    position: relative;
    z-index: 1;
}

.buy-btn-2010 {
    background: #00FF00;
    color: var(--black);
    border: clamp(5px, 1.2vw, 8px) solid var(--black);
    padding: clamp(20px, 4vw, 30px) clamp(50px, 10vw, 80px);
    font-size: clamp(1.5em, 5vw, 3em);
    font-weight: 900;
    font-family: 'Arial', 'Helvetica', 'Comic Sans MS', sans-serif;
    text-transform: uppercase;
    letter-spacing: clamp(2px, 0.8vw, 5px);
    cursor: pointer;
    box-shadow: 
        0 0 0 clamp(3px, 0.6vw, 4px) #00FF00,
        0 15px 0 rgba(0, 0, 0, 0.3);
    transition: all 0.1s ease;
    text-shadow: 3px 3px 0 rgba(0, 0, 0, 0.2);
    position: relative;
    white-space: nowrap;
}

.buy-btn-2010:hover {
    transform: translateY(5px);
    box-shadow: 
        0 0 0 4px #00FF00,
        0 10px 0 rgba(0, 0, 0, 0.3);
}

.buy-btn-2010:active {
    transform: translateY(10px);
    box-shadow: 
        0 0 0 4px #00FF00,
        0 5px 0 rgba(0, 0, 0, 0.3);
}

.platforms-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
    position: relative;
    z-index: 2;
}

.platform-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    border: 5px solid var(--black);
    box-shadow: 0 8px 0 rgba(0, 0, 0, 0.3);
    text-align: center;
    text-decoration: none;
    color: var(--black);
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    position: relative;
}

.platform-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 0 rgba(0, 0, 0, 0.3);
}

.platform-card:active {
    transform: translateY(3px);
    box-shadow: 0 5px 0 rgba(0, 0, 0, 0.3);
}

.platform-icon {
    font-size: 4.5em;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.5));
    transition: transform 0.3s ease;
}

.platform-card:hover .platform-icon {
    transform: scale(1.2) rotate(5deg);
}

.platform-card span {
    font-size: 1.5em;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    letter-spacing: 1px;
}

/* ==================== BUY MODAL ==================== */
.buy-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.buy-modal.active {
    display: flex;
}

.buy-modal-content {
    background: var(--white);
    border: clamp(5px, 1.2vw, 8px) solid var(--black);
    border-radius: 20px;
    max-width: min(900px, 95vw);
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 15px 0 rgba(0, 0, 0, 0.3);
}

.buy-modal-header {
    background: var(--orange);
    padding: clamp(20px, 4vw, 30px);
    border-bottom: clamp(3px, 0.8vw, 5px) solid var(--black);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.buy-modal-header h2 {
    font-size: clamp(1.5em, 4vw, 2.5em);
    color: var(--black);
    font-weight: 900;
    margin: 0;
    word-wrap: break-word;
}

.buy-modal-close {
    background: var(--black);
    color: var(--white);
    border: none;
    width: clamp(40px, 6vw, 50px);
    height: clamp(40px, 6vw, 50px);
    border-radius: 50%;
    font-size: clamp(1.5em, 3vw, 2em);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    flex-shrink: 0;
}

.buy-modal-close:hover {
    transform: scale(1.1);
    background: var(--red);
}

.buy-modal-body {
    padding: clamp(25px, 5vw, 40px);
}

.buy-platform-item {
    display: flex;
    align-items: center;
    gap: clamp(15px, 3vw, 20px);
    padding: clamp(15px, 3vw, 25px);
    border: clamp(3px, 0.6vw, 4px) solid var(--black);
    border-radius: 15px;
    margin-bottom: clamp(15px, 3vw, 20px);
    background: var(--white);
    transition: all 0.2s;
    text-decoration: none;
    color: var(--black);
}

.buy-platform-item:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 0 rgba(0, 0, 0, 0.2);
}

.buy-platform-logo {
    width: clamp(60px, 12vw, 80px);
    height: clamp(60px, 12vw, 80px);
    border-radius: 10px;
    border: clamp(2px, 0.5vw, 3px) solid var(--black);
    object-fit: contain;
    flex-shrink: 0;
    background: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(1.8em, 4vw, 2.5em);
}

.buy-platform-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 10px;
    display: block;
}

.buy-platform-logo.logo-whitepad img {
    padding: 12px;
    background: rgba(255, 255, 255, 0.92);
    border-radius: 8px;
}

.buy-platform-logo:not([src]),
.buy-platform-logo[src=""] {
    background: var(--orange);
}

.buy-platform-info {
    flex: 1;
}

.buy-platform-info h3 {
    font-size: clamp(1.3em, 3vw, 1.8em);
    margin: 0 0 10px 0;
    font-weight: 900;
    word-wrap: break-word;
}

.buy-platform-info p {
    font-size: clamp(0.95em, 2vw, 1.1em);
    margin: 0;
    color: #666;
    word-wrap: break-word;
}

.buy-platform-arrow {
    font-size: 2em;
    color: var(--orange);
}

.platform-mexc { 
    background: #00C087;
    color: var(--white);
}

.platform-phantom { 
    background: #AB9FF2;
    color: var(--white);
}

.platform-pumpfun { 
    background: #FF00FF;
    color: var(--white);
}

.platform-dex { 
    background: #FF6B35;
    color: var(--white);
}

.platform-moonshot { 
    background: var(--gold);
}

.platform-fomo { 
    background: #00D9FF;
}

/* ==================== FOOTER ==================== */
footer {
    background: var(--white);
    padding: clamp(40px, 8vh, 70px) clamp(3%, 5vw, 5%);
    text-align: center;
    border-top: clamp(5px, 1.2vw, 10px) solid var(--black);
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="40" height="40" xmlns="http://www.w3.org/2000/svg"><rect width="20" height="20" fill="%23FF8C00" opacity="0.08"/><rect x="20" y="20" width="20" height="20" fill="%23FF8C00" opacity="0.08"/></svg>');
    pointer-events: none;
    z-index: 0;
}

footer > * {
    position: relative;
    z-index: 1;
}

.contract-box {
    max-width: min(850px, 90vw);
    margin: 0 auto clamp(30px, 5vw, 50px);
    background: rgba(255, 255, 255, 0.95);
    padding: clamp(20px, 4vw, 35px);
    border: clamp(4px, 0.8vw, 5px) solid var(--black);
    border-radius: 15px;
    box-shadow: 0 8px 0 rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
}

.contract-label {
    font-weight: 900;
    color: var(--orange);
    font-size: 1.5em;
    margin-bottom: 15px;
    text-shadow: 
        2px 2px 0 rgba(255, 140, 0, 0.3),
        0 0 15px rgba(255, 140, 0, 0.2);
}

.contract-address {
    font-family: 'Courier New', monospace;
    font-size: 1.2em;
    word-break: break-all;
    background: var(--white);
    padding: 20px;
    border: 4px solid var(--black);
    border-radius: 12px;
    margin-top: 15px;
}

.footer-text {
    font-size: clamp(1.1em, 2.8vw, 1.7em);
    font-weight: 900;
    color: var(--orange);
    text-shadow: 
        clamp(2px, 0.5vw, 3px) clamp(2px, 0.5vw, 3px) 0 rgba(255, 140, 0, 0.3),
        0 0 clamp(15px, 3vw, 25px) rgba(255, 140, 0, 0.2);
    margin-bottom: 15px;
    word-wrap: break-word;
}

.disclaimer {
    font-size: 1.05em;
    color: var(--orange);
    margin-top: 40px;
    font-style: italic;
    max-width: 950px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    text-shadow: 1px 1px 0 rgba(255, 140, 0, 0.1);
}


/* ==================== ORIGIN SECTION - STYLE 2010 AUTHENTIQUE ==================== */
.origin-section {
    background: linear-gradient(135deg, 
        #E8F4F8 0%, 
        #FFF8DC 25%, 
        #FFE4B5 75%, 
        #FFD8A8 100%);
    position: relative;
    z-index: 1;
    overflow-x: hidden;
    overflow-y: visible;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
}

.origin-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 35px,
            rgba(255, 140, 0, 0.03) 35px,
            rgba(255, 140, 0, 0.03) 70px
        ),
        radial-gradient(circle at 20% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255, 140, 0, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.origin-scroll-hint {
    text-align: center;
    margin-top: -40px;
    margin-bottom: 20px;
    font-size: clamp(0.95em, 2vw, 1.25em);
    font-weight: 900;
    color: var(--orange);
    text-shadow: 
        2px 2px 0 rgba(255, 255, 255, 0.8),
        3px 3px 0 rgba(0, 0, 0, 0.1);
    letter-spacing: 1px;
    text-transform: uppercase;
    animation: bounce 2s ease-in-out infinite;
}

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

.origin-scroll-hint svg {
    width: 1.1em;
    height: 1.1em;
    vertical-align: -0.2em;
    margin-left: 8px;
    filter: drop-shadow(2px 2px 0 rgba(255, 255, 255, 0.8));
}

/* ==================== SCROLLBAR STYLE 2010 ==================== */
.origin-stories-container::-webkit-scrollbar {
    height: 28px;
    display: block !important;
    visibility: visible !important;
}

.origin-stories-container::-webkit-scrollbar-track {
    background: linear-gradient(to bottom, 
        rgba(255, 255, 255, 0.95) 0%, 
        rgba(255, 250, 235, 0.95) 50%, 
        rgba(255, 255, 255, 0.95) 100%);
    border: clamp(5px, 1vw, 7px) solid var(--black);
    border-radius: 20px;
    box-shadow: 
        inset 0 4px 8px rgba(0, 0, 0, 0.2),
        inset 0 -2px 4px rgba(255, 255, 255, 0.5),
        0 0 0 clamp(2px, 0.4vw, 3px) var(--orange),
        0 3px 0 rgba(0, 0, 0, 0.15);
    margin: 0 clamp(5%, 8vw, 10%);
}

.origin-stories-container::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, 
        var(--gold) 0%, 
        var(--orange) 50%, 
        #FF6B00 100%);
    border: clamp(5px, 1vw, 7px) solid var(--black);
    border-radius: 20px;
    box-shadow: 
        inset 0 3px 0 rgba(255, 255, 255, 0.6),
        inset 0 -2px 0 rgba(0, 0, 0, 0.2),
        0 5px 0 rgba(0, 0, 0, 0.35),
        0 0 0 clamp(2px, 0.4vw, 3px) rgba(255, 140, 0, 0.6),
        0 0 15px rgba(255, 140, 0, 0.4);
    min-width: 100px;
}

.origin-stories-container::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, 
        #FF0000 0%, 
        #FF4500 50%, 
        #FF6347 100%);
    box-shadow: 
        inset 0 3px 0 rgba(255, 255, 255, 0.7),
        inset 0 -2px 0 rgba(0, 0, 0, 0.25),
        0 7px 0 rgba(0, 0, 0, 0.4),
        0 0 0 clamp(3px, 0.6vw, 4px) rgba(255, 0, 0, 0.6),
        0 0 20px rgba(255, 0, 0, 0.5);
}

/* ==================== ORIGIN STORY CARDS - STYLE 2010 ==================== */
.origin-story {
    background: linear-gradient(135deg, 
        rgba(255, 252, 245, 0.98) 0%, 
        rgba(255, 248, 230, 0.98) 35%, 
        rgba(255, 245, 220, 0.98) 65%, 
        rgba(255, 242, 210, 0.98) 100%);
    padding: 0;
    border-radius: 18px;
    border: clamp(6px, 1.2vw, 9px) solid var(--black);
    box-shadow: 
        0 0 0 clamp(4px, 0.8vw, 6px) var(--orange),
        0 0 0 clamp(8px, 1.6vw, 11px) rgba(255, 140, 0, 0.3),
        0 14px 0 rgba(0, 0, 0, 0.4),
        0 18px 30px rgba(0, 0, 0, 0.25),
        inset 0 5px 0 rgba(255, 255, 255, 0.8),
        inset 0 -3px 10px rgba(255, 140, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    backdrop-filter: blur(10px);
    width: min(400px, 80vw);
    height: min(520px, 72vh);
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* Effet brillance années 2010 */
.origin-story::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 15% 25%, rgba(255, 255, 255, 0.4) 0%, transparent 35%),
        radial-gradient(circle at 85% 75%, rgba(255, 215, 0, 0.2) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(255, 140, 0, 0.08) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
    opacity: 0.8;
}

/* Reflet glossy supérieur */
.origin-story::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 55%;
    background: linear-gradient(180deg, 
        rgba(255, 255, 255, 0.6) 0%, 
        rgba(255, 255, 255, 0.25) 30%,
        transparent 100%);
    pointer-events: none;
    z-index: 1;
    border-radius: 18px 18px 0 0;
}

/* Flèche entre les cards avec emojis 2010 */
.origin-story-arrow {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: clamp(50px, 7vw, 70px);
    font-size: clamp(2.2em, 5vw, 3.5em);
    font-weight: 900;
    color: var(--orange);
    text-shadow:
        3px 3px 0 rgba(255, 255, 255, 0.95),
        6px 6px 0 rgba(0, 0, 0, 0.3),
        0 0 20px rgba(255, 140, 0, 0.5);
    pointer-events: none;
    scroll-snap-align: none;
    user-select: none;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.origin-story:hover {
    transform: translateY(-12px) scale(1.02) rotate(1deg);
    box-shadow: 
        0 0 0 clamp(5px, 1vw, 7px) var(--gold),
        0 0 0 clamp(10px, 2vw, 13px) rgba(255, 215, 0, 0.5),
        0 18px 0 rgba(0, 0, 0, 0.45),
        0 25px 40px rgba(0, 0, 0, 0.3),
        inset 0 5px 0 rgba(255, 255, 255, 0.9),
        inset 0 -3px 10px rgba(255, 215, 0, 0.2),
        0 0 40px rgba(255, 140, 0, 0.4);
   
}

/* En-tête de la card avec emoji */
.origin-story h3 {
    font-size: clamp(1.35em, 3.2vw, 2em);
    color: var(--orange);
    margin: 0;
    text-align: center;
    font-weight: 900;
    word-wrap: break-word;
    padding: clamp(18px, 3.5vw, 28px) clamp(22px, 4vw, 32px);
    text-shadow: 
        clamp(2px, 0.5vw, 3px) clamp(2px, 0.5vw, 3px) 0 rgba(255, 140, 0, 0.4),
        clamp(4px, 1vw, 5px) clamp(4px, 1vw, 5px) 0 rgba(0, 0, 0, 0.15),
        0 0 clamp(20px, 4vw, 30px) rgba(255, 140, 0, 0.3);
    border-bottom: clamp(4px, 0.8vw, 6px) solid var(--black);
    position: relative;
    flex-shrink: 0;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95) 0%, 
        rgba(255, 250, 240, 0.9) 100%);
    z-index: 2;
}

.origin-story h3::before {
    content: '📅';
    font-size: 0.85em;
    margin-right: 8px;
    filter: drop-shadow(2px 2px 0 rgba(255, 255, 255, 0.8));
}

.origin-story h3::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: clamp(4px, 0.8vw, 6px);
    background: linear-gradient(90deg, transparent, var(--orange), transparent);
    border-radius: 0 0 8px 8px;
    box-shadow: 0 3px 0 rgba(0, 0, 0, 0.2);
}

/* Zone de contenu scrollable */
.origin-story-content {
    flex: 1;
    overflow-y: auto;
    padding: clamp(22px, 4vw, 32px);
    scrollbar-width: thin;
    scrollbar-color: var(--orange) rgba(255, 250, 240, 0.7);
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.3);
}

/* Scrollbar verticale style 2010 */
.origin-story-content::-webkit-scrollbar {
    width: 14px;
}

.origin-story-content::-webkit-scrollbar-track {
    background: linear-gradient(to right, 
        rgba(255, 255, 255, 0.8) 0%, 
        rgba(255, 250, 235, 0.8) 100%);
    border-radius: 12px;
    margin: 8px;
    border: 2px solid rgba(0, 0, 0, 0.15);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.origin-story-content::-webkit-scrollbar-thumb {
    
    border-radius: 12px;
    border: 2px solid rgba(0, 0, 0, 0.3);
    box-shadow: 
        inset 0 2px 0 rgba(255, 255, 255, 0.6),
        0 2px 4px rgba(0, 0, 0, 0.3);
}

.origin-story-content::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, 
        var(--red) 0%, 
        #FF6347 100%);
    box-shadow: 
        inset 0 2px 0 rgba(255, 255, 255, 0.7),
        0 3px 6px rgba(0, 0, 0, 0.4),
        0 0 10px rgba(255, 0, 0, 0.3);
}

/* Paragraphes avec emojis années 2010 */
.origin-story-content p {
    font-size: clamp(0.98em, 2.2vw, 1.15em);
    line-height: 1.75;
    margin-bottom: clamp(16px, 3vw, 22px);
    color: #2b2b2b;
    text-shadow: 
        1px 1px 0 rgba(255, 255, 255, 0.8),
        0 0 1px rgba(255, 140, 0, 0.1);
    position: relative;
    padding-left: 6px;
}

.origin-story-content p:first-of-type::before {
    content: '✨ ';
    font-size: 1.1em;
    margin-right: 4px;
    filter: drop-shadow(1px 1px 0 rgba(255, 255, 255, 0.9));
}

.origin-story-content p:last-child {
    margin-bottom: 0;
}

.origin-story-content strong {
    color: var(--orange);
    font-weight: 900;
    text-shadow: 
        1px 1px 0 rgba(255, 255, 255, 0.8),
        2px 2px 0 rgba(255, 140, 0, 0.2);
    background: linear-gradient(to bottom, 
        rgba(255, 215, 0, 0.15), 
        rgba(255, 140, 0, 0.08));
    padding: 2px 4px;
    border-radius: 3px;
}

/* Media avec cadre style 2010 */
.origin-story-media {
    margin-top: clamp(14px, 2.5vw, 20px);
    border-radius: 12px;
    border: 5px solid var(--black);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 
        0 0 0 3px var(--orange),
        0 10px 0 rgba(0, 0, 0, 0.3),
        0 12px 20px rgba(0, 0, 0, 0.2),
        inset 0 3px 0 rgba(255, 255, 255, 0.7);
    overflow: hidden;
    transform: rotate(-1deg);
    transition: all 0.3s ease;
}

.origin-story-media:hover {
    transform: rotate(0deg) scale(1.02);
    box-shadow: 
        0 0 0 4px var(--gold),
        0 12px 0 rgba(0, 0, 0, 0.35),
        0 15px 25px rgba(0, 0, 0, 0.25),
        inset 0 3px 0 rgba(255, 255, 255, 0.8);
}

.origin-story-media img {
    width: 100%;
    display: block;
    height: auto;
}

.origin-story-media figcaption {
    padding: 14px 16px;
    font-size: clamp(0.88em, 1.9vw, 1.02em);
    font-weight: 800;
    color: var(--black);
    background: linear-gradient(135deg, 
        rgba(255, 215, 0, 0.4) 0%, 
        rgba(255, 140, 0, 0.3) 100%);
    border-top: 4px solid rgba(0, 0, 0, 0.3);
    text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.7);
}

.origin-story-media figcaption::before {
    content: '📸 ';
    margin-right: 6px;
    filter: drop-shadow(1px 1px 0 rgba(255, 255, 255, 0.9));
}

/* ==================== RESPONSIVE - MOBILE ==================== */
@media (max-width: 768px) {
    .origin-story {
        width: min(360px, 85vw);
        height: min(480px, 68vh);
    }

    .origin-story-arrow {
        display: none;
    }

    .origin-stories-container::-webkit-scrollbar {
        height: 22px;
    }

    .origin-story h3 {
        font-size: clamp(1.4em, 4vw, 1.9em);
        padding: clamp(16px, 3vw, 24px) clamp(18px, 3.5vw, 28px);
    }

    .origin-story h3::before {
        font-size: 0.8em;
    }

    .origin-story-content {
        padding: clamp(18px, 3.5vw, 28px);
    }

    .origin-story-content p {
        font-size: clamp(0.95em, 2vw, 1.08em);
        line-height: 1.7;
    }
}

@media (max-width: 480px) {
    .origin-story {
        width: min(320px, 90vw);
        height: min(460px, 65vh);
    }

    .origin-story h3 {
        font-size: clamp(1.25em, 4.5vw, 1.6em);
    }

    .origin-stories-container::-webkit-scrollbar {
        height: 20px;
    }
}

/* ==================== RESPONSIVE ==================== */
@media (min-width: 1400px) {
    .hero {
        padding: clamp(50px, 5vh, 70px) clamp(3%, 5vw, 5%) clamp(30px, 4vh, 50px);
    }

    .hero-content {
        max-width: 1200px;
    }

    .hero-logo-container {
        margin-bottom: clamp(10px, 1.5vh, 20px);
    }

    .hero h1 {
        font-size: clamp(4em, 6vw, 5.5em);
        margin-bottom: clamp(8px, 1.5vh, 15px);
    }

    .hero .tagline {
        font-size: clamp(1.8em, 2.5vw, 2em);
        margin-bottom: clamp(10px, 1.5vh, 20px);
    }

    .hero .subtitle {
        font-size: clamp(1.3em, 1.8vw, 1.5em);
        margin-bottom: clamp(15px, 2vh, 25px);
        line-height: 1.5;
    }

    .cta-buttons {
        margin-top: clamp(15px, 2vh, 25px);
    }
}

@media (max-width: 1200px) {
    .hero {
        padding: 100px 4% 160px;
    }

    .hero h1 {
        font-size: clamp(2.5em, 7vw, 5em);
    }

    .hero .tagline {
        font-size: clamp(1.3em, 3vw, 2em);
    }

    .hero .subtitle {
        font-size: clamp(1.1em, 2.2vw, 1.5em);
    }
}

@media (max-width: 768px) {
    nav {
       
        box-shadow: 0 5px 0 rgba(0, 0, 0, 0.3);
        
    }

    .nav-container {
        justify-content: flex-end;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(255, 140, 0, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 120px 30px 30px;
        gap: 0;
        z-index: 999;
        border-top: 5px solid var(--black);
        box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
        animation: slideDown 0.3s ease-out;
        overflow-y: auto;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        width: 100%;
        border-bottom: 3px solid var(--black);
    }

    .nav-links li:last-child {
        border-bottom: none;
    }
    
    .nav-links a {
        display: block;
        width: 100%;
        padding: 25px 20px;
        font-size: 1.8em;
        text-align: center;
        background: var(--white);
        border: 4px solid var(--black);
        border-radius: 15px;
        margin-bottom: 15px;
        box-shadow: 
            inset 0 3px 0 rgba(255, 255, 255, 0.6),
            0 8px 0 rgba(0, 0, 0, 0.3);
        transition: all 0.2s ease;
        text-transform: uppercase;
        letter-spacing: 2px;
        font-weight: 900;
    }

    .nav-links a:hover {
        transform: translateY(4px);
        box-shadow: 
            inset 0 3px 0 rgba(255, 255, 255, 0.6),
            0 4px 0 rgba(0, 0, 0, 0.3);
        background: #00FF00;
    }

    .nav-links a:active {
        transform: translateY(6px);
        box-shadow: 
            inset 0 3px 0 rgba(255, 255, 255, 0.6),
            0 2px 0 rgba(0, 0, 0, 0.3);
    }
    
    .mobile-toggle {
        display: flex;
        position: relative;
        order: -1;
    }

    .nav-links li {
        animation: fadeInUp 0.4s ease-out forwards;
        opacity: 0;
    }

    .nav-links.active li:nth-child(1) {
        animation-delay: 0.1s;
    }

    .nav-links.active li:nth-child(2) {
        animation-delay: 0.2s;
    }

    .nav-links.active li:nth-child(3) {
        animation-delay: 0.3s;
    }

    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .hero {
        padding: 90px 4% 140px;
        min-height: 100vh;
        min-height: 100dvh;
    }

    .hero-content {
        width: 100%;
        padding: 0 10px;
    }

    .hero-logo-container {
        margin-bottom: 20px;
    }

    .hero-logo-container img {
        max-width: min(200px, 50vw);
        height: auto;
    }

    .hero h1 {
        font-size: clamp(2em, 10vw, 2.5em);
        letter-spacing: 2px;
        margin-bottom: 12px;
        padding: 0 5px;
    }
    
    .hero .tagline {
        font-size: clamp(1.1em, 5vw, 1.3em);
        letter-spacing: 1px;
        margin-bottom: 18px;
        padding: 0 10px;
    }
    
    .hero .subtitle {
        font-size: clamp(0.95em, 4vw, 1.1em);
        padding: 0 10px;
        line-height: 1.6;
        margin-bottom: clamp(20px, 3vh, 30px);
    }

    .cta-buttons {
        margin-top: clamp(15px, 2vh, 20px);
        gap: 12px;
    }

    .cta-btn {
        font-size: clamp(0.9em, 4vw, 1.1em);
        padding: clamp(12px, 3vw, 15px) clamp(20px, 6vw, 30px);
        white-space: normal;
        width: 100%;
        max-width: 300px;
    }
    
    .section-header h2 {
        font-size: clamp(1.8em, 5vw, 2.5em);
    }

    .section-header p {
        font-size: clamp(1em, 2.5vw, 1.2em);
        padding: 0 10px;
    }

    section {
        padding: clamp(50px, 8vh, 80px) clamp(3%, 4vw, 5%);
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .cta-btn {
        width: 100%;
        font-size: 1.2em;
        padding: 15px 30px;
    }

    .buy-btn-2010 {
        font-size: 2em;
        padding: 25px 50px;
        letter-spacing: 3px;
    }

    .origin-stories-container {
        padding: clamp(25px, 4vw, 40px) clamp(3%, 5vw, 8%) clamp(70px, 8vh, 90px);
        gap: clamp(20px, 3vw, 35px);
        min-height: 60vh;
    }

    .origin-story {
        width: min(350px, 80vw);
        height: min(450px, 65vh);
        padding: 0;
    }

    .origin-story-arrow {
        display: none;
    }

    .origin-stories-container::-webkit-scrollbar {
        height: 20px;
    }

    .origin-stories-container::-webkit-scrollbar-track {
        margin: 0 clamp(3%, 5vw, 8%);
    }

    .origin-story h3 {
        font-size: clamp(1.5em, 4vw, 2em);
    }

    .origin-story-content p {
        font-size: clamp(1em, 2vw, 1.1em);
    }

    .comic-roadmap {
        padding: 60px 4%;
    }

    .comic-roadmap-strip {
        height: clamp(450px, 60vh, 500px);
    }

    .comic-roadmap-content {
        padding: clamp(20px, 4vw, 30px) clamp(15px, 5vw, 40px);
        gap: clamp(20px, 4vw, 30px);
    }

    .roadmap-logo {
        width: clamp(100px, 18vw, 140px);
        height: clamp(100px, 18vw, 140px);
    }

    .roadmap-name {
        font-size: clamp(1.4em, 4.5vw, 1.8em);
        letter-spacing: 1px;
        margin-bottom: 8px;
    }

    .roadmap-year {
        font-size: clamp(1.2em, 3.5vw, 1.5em);
        padding: clamp(5px, 1vw, 6px) clamp(10px, 2vw, 15px);
    }

    .roadmap-connector {
        left: clamp(20px, 5vw, 40px);
        right: clamp(20px, 5vw, 40px);
        top: clamp(60px, 8vh, 70px);
    }

    .roadmap-dot.left {
        left: clamp(20px, 5vw, 40px);
    }

    .roadmap-dot.right {
        right: clamp(20px, 5vw, 40px);
    }

    .buy-modal-content {
        max-width: 95%;
        margin: 10px;
    }

    .buy-modal-header {
        padding: 20px;
    }

    .buy-modal-header h2 {
        font-size: 1.8em;
    }

    .buy-modal-body {
        padding: 20px;
    }

    .buy-platform-item {
        padding: 20px;
        flex-direction: column;
        text-align: center;
    }

    .buy-platform-logo {
        width: 60px;
        height: 60px;
    }

    .buy-platform-info h3 {
        font-size: 1.5em;
    }

    .buy-platform-info p {
        font-size: 1em;
    }

    .citations-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .citation-card {
        padding: 25px;
    }

    .citation-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .citation-header h3 {
        font-size: 1.5em;
    }

    .citation-content {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 70px 3% 100px;
        min-height: 100vh;
        min-height: 100dvh;
    }

    .hero-logo-container img {
        max-width: min(150px, 45vw);
        height: auto;
    }

    .hero h1 {
        font-size: clamp(1.8em, 12vw, 2em);
        letter-spacing: 1px;
        margin-bottom: 10px;
    }
    
    .hero .tagline {
        font-size: clamp(1em, 5.5vw, 1.1em);
        letter-spacing: 0.5px;
        margin-bottom: 12px;
    }

    .hero .subtitle {
        font-size: clamp(0.85em, 4.5vw, 1em);
        padding: 0 8px;
        margin-bottom: clamp(15px, 2vh, 25px);
    }

    .cta-buttons {
        margin-top: clamp(15px, 2vh, 20px);
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }

    .cta-btn {
        width: 100%;
        max-width: 100%;
        font-size: clamp(0.85em, 4vw, 1em);
        padding: clamp(10px, 2.5vw, 12px) clamp(15px, 5vw, 25px);
    }

    .hero .subtitle {
        margin-bottom: 30px;
    }

    .buy-btn-2010 {
        font-size: 1.3em;
        padding: 20px 35px;
        letter-spacing: 2px;
    }

    .section-header h2 {
        font-size: clamp(1.5em, 6vw, 1.8em);
    }

    .section-header p {
        font-size: clamp(0.9em, 3vw, 1em);
    }

    section {
        padding: clamp(40px, 6vh, 60px) clamp(2%, 3vw, 4%);
    }

    .comic-roadmap {
        padding: 40px 3%;
    }

    .comic-roadmap-strip {
        height: auto;
        min-height: 600px;
    }

    .comic-roadmap-content {
        flex-direction: column;
        padding: 30px 15px;
        gap: 35px;
        height: auto;
    }

    .roadmap-item {
        max-width: 100%;
        width: 100%;
    }

    .roadmap-logo {
        width: clamp(100px, 25vw, 120px);
        height: clamp(100px, 25vw, 120px);
    }

    .roadmap-name {
        font-size: clamp(1.3em, 5vw, 1.6em);
        letter-spacing: 0.5px;
    }

    .roadmap-year {
        font-size: clamp(1.1em, 3.5vw, 1.3em);
        padding: clamp(4px, 1vw, 5px) clamp(8px, 2vw, 12px);
    }

    .roadmap-connector {
        display: none;
    }

    .roadmap-dot {
        display: none;
    }

    .buy-btn-2010 {
        white-space: normal;
        width: 100%;
        max-width: 100%;
    }

    .buy-modal-content {
        max-width: 98vw;
        margin: 10px;
    }

    .buy-modal-header {
        padding: 15px;
        flex-wrap: wrap;
    }

    .buy-modal-body {
        padding: 20px 15px;
    }

    .buy-platform-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .buy-platform-logo {
        width: 70px;
        height: 70px;
    }
}

/* Extra mobile tightening to prevent horizontal scroll */
@media (max-width: 600px) {
    section,
    .hero,
    .timeline-section,
    #what-buttcoin,
    #socials,
    .buy-section,
    .origin-section {
        padding-left: 4%;
        padding-right: 4%;
        overflow-x: hidden;
    }

    .comic-roadmap,
    .comic-roadmap-strip {
        max-width: 100%;
        width: 100%;
        overflow: hidden;
    }

    .comic-roadmap-content {
        overflow: hidden;
    }

    .timeline-container,
    .heritage-layout,
    .socials-grid,
    .platforms-grid {
        max-width: 100%;
        width: 100%;
    }

    .socials-grid,
    .platforms-grid {
        grid-template-columns: 1fr;
    }

    .origin-stories-container {
        padding-left: 4%;
        padding-right: 4%;
        min-height: 55vh;
    }
}

@media (max-width: 320px) {
    .hero {
        padding: 70px 2% 100px;
    }

    .hero-logo-container img {
        max-width: 120px;
        height: auto;
    }

    .hero h1 {
        font-size: 1.5em;
    }

    .hero .tagline {
        font-size: 0.95em;
    }

    .hero .subtitle {
        font-size: 0.8em;
    }

    .cta-btn {
        font-size: 0.85em;
        padding: 10px 15px;
    }

    .section-header h2 {
        font-size: 1.3em;
    }

    .roadmap-logo {
        width: 80px;
        height: 80px;
    }

    .roadmap-name {
        font-size: 1.1em;
    }

    .roadmap-year {
        font-size: 1em;
    }
}

@media (min-width: 1920px) {
    .hero {
        padding: clamp(40px, 4vh, 60px) clamp(3%, 5vw, 5%) clamp(30px, 3vh, 40px);
    }

    .hero-content {
        max-width: 1400px;
    }

    .hero-logo-container {
        margin-bottom: clamp(8px, 1vh, 15px);
    }

    .hero h1 {
        font-size: clamp(4.5em, 5.5vw, 5.5em);
        margin-bottom: clamp(5px, 1vh, 12px);
    }

    .hero .tagline {
        font-size: clamp(1.9em, 2.2vw, 2em);
        margin-bottom: clamp(8px, 1vh, 15px);
    }

    .hero .subtitle {
        font-size: clamp(1.4em, 1.6vw, 1.5em);
        margin-bottom: clamp(12px, 1.5vh, 20px);
        line-height: 1.5;
    }

    .cta-buttons {
        margin-top: clamp(12px, 1.5vh, 20px);
    }

    .comic-roadmap-strip {
        max-width: 1600px;
    }

    .citations-container {
        max-width: 1400px;
    }
}

/* ==================== ANIMATIONS ==================== */
/* Animation classes are handled by GSAP - elements are visible by default */
.fade-in,
.fade-left,
.fade-right,
.scale-in {
    will-change: transform, opacity;
}

/* ==================== BUY MODAL - AMÉLIORATION MOBILE ==================== */
.buy-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 15px;
    overflow-y: auto;
}

.buy-modal.active {
    display: flex;
}

.buy-modal-content {
    background: var(--white);
    border: clamp(5px, 1.2vw, 8px) solid var(--black);
    border-radius: 20px;
    max-width: min(900px, 100%);
    width: 100%;
    max-height: calc(100vh - 30px);
    overflow-y: auto;
    position: relative;
    box-shadow: 0 15px 0 rgba(0, 0, 0, 0.3);
    margin: auto;
}

.buy-modal-header {
    background: var(--orange);
    padding: clamp(15px, 3vw, 30px);
    border-bottom: clamp(3px, 0.8vw, 5px) solid var(--black);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    position: sticky;
    top: 0;
    z-index: 10;
}

.buy-modal-header h2 {
    font-size: clamp(1.3em, 3.5vw, 2.5em);
    color: var(--black);
    font-weight: 900;
    margin: 0;
    word-wrap: break-word;
    line-height: 1.2;
    flex: 1;
}

.buy-modal-close {
    background: var(--black);
    color: var(--white);
    border: none;
    width: clamp(35px, 5vw, 50px);
    height: clamp(35px, 5vw, 50px);
    min-width: 35px;
    min-height: 35px;
    border-radius: 50%;
    font-size: clamp(1.3em, 2.5vw, 2em);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    flex-shrink: 0;
    line-height: 1;
}

.buy-modal-close:hover {
    transform: scale(1.1);
    background: var(--red);
}

.buy-modal-body {
    padding: clamp(20px, 4vw, 40px) clamp(15px, 3vw, 40px);
}

.buy-platform-item {
    display: flex;
    align-items: center;
    gap: clamp(12px, 2.5vw, 20px);
    padding: clamp(12px, 2.5vw, 25px);
    border: clamp(3px, 0.6vw, 4px) solid var(--black);
    border-radius: 15px;
    margin-bottom: clamp(12px, 2.5vw, 20px);
    background: var(--white);
    transition: all 0.2s;
    text-decoration: none;
    color: var(--black);
}

.buy-platform-item:last-child {
    margin-bottom: 0;
}

.buy-platform-item:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 0 rgba(0, 0, 0, 0.2);
}

.buy-platform-logo {
    width: clamp(50px, 10vw, 80px);
    height: clamp(50px, 10vw, 80px);
    min-width: 50px;
    min-height: 50px;
    border-radius: 10px;
    border: clamp(2px, 0.5vw, 3px) solid var(--black);
    object-fit: contain;
    flex-shrink: 0;
    background: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(1.5em, 3vw, 2.5em);
}

.buy-platform-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 8px;
    display: block;
}

.buy-platform-logo.logo-whitepad img {
    padding: 10px;
    background: rgba(255, 255, 255, 0.92);
    border-radius: 8px;
}

.buy-platform-info {
    flex: 1;
    min-width: 0;
}

.buy-platform-info h3 {
    font-size: clamp(1.1em, 2.5vw, 1.8em);
    margin: 0 0 clamp(4px, 1vw, 10px) 0;
    font-weight: 900;
    word-wrap: break-word;
    line-height: 1.2;
}

.buy-platform-info p {
    font-size: clamp(0.85em, 1.8vw, 1.1em);
    margin: 0;
    color: #666;
    word-wrap: break-word;
    line-height: 1.3;
}

.buy-platform-arrow {
    font-size: clamp(1.5em, 3vw, 2em);
    color: var(--orange);
    flex-shrink: 0;
}

/* Responsive amélioré pour petits écrans */
@media (max-width: 768px) {
    .buy-modal {
        padding: 10px;
        align-items: flex-start;
        padding-top: 20px;
    }

    .buy-modal-content {
        max-height: calc(100vh - 20px);
        border-width: 5px;
    }

    .buy-modal-header {
        padding: 15px;
        gap: 8px;
    }

    .buy-modal-header h2 {
        font-size: clamp(1.2em, 4vw, 1.5em);
    }

    .buy-modal-body {
        padding: 20px 15px;
    }

    .buy-platform-item {
        padding: 15px 12px;
        gap: 12px;
    }

    .buy-platform-logo {
        width: 55px;
        height: 55px;
        min-width: 55px;
        min-height: 55px;
    }

    .buy-platform-info h3 {
        font-size: 1.15em;
    }

    .buy-platform-info p {
        font-size: 0.9em;
    }

    .buy-platform-arrow {
        font-size: 1.5em;
    }
}

@media (max-width: 480px) {
    .buy-modal {
        padding: 8px;
        padding-top: 15px;
    }

    .buy-modal-content {
        max-height: calc(100vh - 16px);
        border-width: 4px;
        border-radius: 15px;
    }

    .buy-modal-header {
        padding: 12px;
        border-radius: 15px 15px 0 0;
    }

    .buy-modal-header h2 {
        font-size: 1.15em;
    }

    .buy-modal-close {
        width: 32px;
        height: 32px;
        min-width: 32px;
        min-height: 32px;
        font-size: 1.2em;
    }

    .buy-modal-body {
        padding: 15px 12px;
    }

    .buy-platform-item {
        padding: 12px 10px;
        gap: 10px;
        border-radius: 12px;
    }

    .buy-platform-logo {
        width: 50px;
        height: 50px;
        min-width: 50px;
        min-height: 50px;
        border-radius: 8px;
    }

    .buy-platform-logo img {
        padding: 6px;
    }

    .buy-platform-info h3 {
        font-size: 1.05em;
        margin-bottom: 3px;
    }

    .buy-platform-info p {
        font-size: 0.85em;
    }
}
/* ==================== HERO SECTION - RESPONSIVE DESKTOP 13-15" ==================== */

/* Écrans 13-14" (1366px à 1600px) */
@media (min-width: 1366px) and (max-width: 1600px) {
    .hero {
        min-height: 90vh;
        padding: clamp(70px, 8vh, 100px) clamp(4%, 6vw, 8%) clamp(50px, 6vh, 70px);
    }
    
    .hero-content {
        max-width: 1000px;
    }
    
    .hero-logo-container {
        margin-bottom: clamp(20px, 2.5vh, 35px);
    }
    
    .hero-logo-container img {
        max-width: min(250px, 35vw);
    }
    
    .hero h1 {
        font-size: clamp(2.8em, 7vw, 4.5em);
        letter-spacing: clamp(2px, 0.8vw, 4px);
        margin-bottom: clamp(12px, 1.8vh, 18px);
        text-shadow: 
            clamp(2px, 0.6vw, 4px) clamp(2px, 0.6vw, 4px) 0 rgba(255, 140, 0, 0.3),
            clamp(3px, 0.8vw, 6px) clamp(3px, 0.8vw, 6px) 0 rgba(0, 0, 0, 0.2),
            0 0 clamp(20px, 4vw, 35px) rgba(255, 140, 0, 0.3);
    }
    
    .hero .tagline {
        font-size: clamp(1.3em, 3vw, 1.8em);
        margin-bottom: clamp(15px, 2vh, 22px);
        text-shadow: 
            2.5px 2.5px 0 rgba(255, 140, 0, 0.3),
            0 0 18px rgba(255, 140, 0, 0.3);
    }
    
    .hero .subtitle {
        font-size: clamp(1.1em, 2.2vw, 1.4em);
        margin-bottom: clamp(25px, 3vh, 35px);
        max-width: min(750px, 85vw);
        line-height: 1.6;
    }
    
    .cta-buttons {
        gap: clamp(18px, 3vw, 22px);
        margin-top: clamp(25px, 3vh, 35px);
    }
    
    .cta-btn {
        padding: clamp(16px, 2.2vw, 18px) clamp(35px, 5vw, 45px);
        font-size: clamp(1.1em, 2.2vw, 1.3em);
        border-width: clamp(3px, 0.6vw, 4px);
        box-shadow: 
            inset 0 3px 0 rgba(255, 255, 255, 0.6),
            7px 7px 0 rgba(0, 0, 0, 0.4);
    }
    
    .floating-logo {
        width: 90px;
    }
    
    .floating-logo:nth-child(1) { top: 15%; left: 5%; }
    .floating-logo:nth-child(2) { top: 20%; right: 8%; }
    .floating-logo:nth-child(3) { bottom: 15%; left: 12%; }
    .floating-logo:nth-child(4) { bottom: 25%; right: 5%; }
}

/* Écrans 15" (1601px à 1920px) */
@media (min-width: 1601px) and (max-width: 1920px) {
    .hero {
        min-height: 95vh;
        padding: clamp(80px, 9vh, 120px) clamp(5%, 7vw, 10%) clamp(60px, 7vh, 80px);
    }
    
    .hero-content {
        max-width: 1200px;
    }
    
    .hero-logo-container {
        margin-bottom: clamp(25px, 3vh, 40px);
    }
    
    .hero-logo-container img {
        max-width: min(300px, 38vw);
        animation: float 4s ease-in-out infinite;
    }
    
    .hero h1 {
        font-size: clamp(3.2em, 7.5vw, 5.2em);
        letter-spacing: clamp(3px, 0.9vw, 5px);
        margin-bottom: clamp(15px, 2vh, 20px);
        text-shadow: 
            clamp(2px, 0.7vw, 5px) clamp(2px, 0.7vw, 5px) 0 rgba(255, 140, 0, 0.3),
            clamp(4px, 1vw, 8px) clamp(4px, 1vw, 8px) 0 rgba(0, 0, 0, 0.2),
            0 0 clamp(25px, 5vw, 45px) rgba(255, 140, 0, 0.3);
    }
    
    .hero .tagline {
        font-size: clamp(1.5em, 3.5vw, 2em);
        margin-bottom: clamp(18px, 2.5vh, 25px);
        text-shadow: 
            3px 3px 0 rgba(255, 140, 0, 0.3),
            0 0 22px rgba(255, 140, 0, 0.3);
    }
    
    .hero .subtitle {
        font-size: clamp(1.2em, 2.5vw, 1.5em);
        margin-bottom: clamp(30px, 4vh, 45px);
        max-width: min(800px, 80vw);
        line-height: 1.7;
    }
    
    .cta-buttons {
        gap: clamp(20px, 3.5vw, 25px);
        margin-top: clamp(30px, 4vh, 45px);
    }
    
    .cta-btn {
        padding: clamp(18px, 2.5vw, 20px) clamp(40px, 6vw, 50px);
        font-size: clamp(1.2em, 2.5vw, 1.4em);
        border-width: clamp(4px, 0.7vw, 5px);
        box-shadow: 
            inset 0 4px 0 rgba(255, 255, 255, 0.6),
            8px 8px 0 rgba(0, 0, 0, 0.4);
    }
    
    .cta-btn:hover {
        transform: translateY(-8px);
        box-shadow: 
            inset 0 4px 0 rgba(255, 255, 255, 0.6),
            10px 10px 0 rgba(0, 0, 0, 0.4);
    }
    
    .floating-logo {
        width: 110px;
    }
    
    .floating-logo:nth-child(1) { top: 10%; left: 10%; }
    .floating-logo:nth-child(2) { top: 22%; right: 10%; }
    .floating-logo:nth-child(3) { bottom: 20%; left: 15%; }
    .floating-logo:nth-child(4) { bottom: 28%; right: 10%; }
}

/* Large écrans + (1921px et plus) */
@media (min-width: 1921px) {
    .hero {
        min-height: 100vh;
        padding: clamp(100px, 10vh, 140px) clamp(6%, 8vw, 12%) clamp(70px, 8vh, 100px);
    }
    
    .hero-content {
        max-width: 1400px;
    }
    
    .hero-logo-container {
        margin-bottom: clamp(30px, 3.5vh, 50px);
    }
    
    .hero-logo-container img {
        max-width: min(350px, 40vw);
        animation: float 4.5s ease-in-out infinite;
    }
    
    .hero h1 {
        font-size: clamp(4em, 8vw, 6.5em);
        letter-spacing: clamp(4px, 1vw, 6px);
        margin-bottom: clamp(20px, 2.5vh, 25px);
    }
    
    .hero .tagline {
        font-size: clamp(1.8em, 4vw, 2.3em);
        margin-bottom: clamp(22px, 3vh, 30px);
    }
    
    .hero .subtitle {
        font-size: clamp(1.4em, 3vw, 1.8em);
        margin-bottom: clamp(35px, 5vh, 50px);
        max-width: min(900px, 75vw);
        line-height: 1.8;
    }
    
    .cta-buttons {
        gap: clamp(25px, 4vw, 30px);
        margin-top: clamp(35px, 5vh, 50px);
    }
    
    .cta-btn {
        padding: clamp(20px, 3vw, 25px) clamp(45px, 7vw, 60px);
        font-size: clamp(1.4em, 3vw, 1.6em);
        border-width: clamp(5px, 0.8vw, 6px);
        box-shadow: 
            inset 0 5px 0 rgba(255, 255, 255, 0.6),
            10px 10px 0 rgba(0, 0, 0, 0.4);
    }
    
    .floating-logo {
        width: 130px;
    }
}

/* Optimisation pour les petits écrans desktop (13" surtout) */
@media (min-width: 1366px) and (max-width: 1440px) and (max-height: 768px) {
    .hero {
        min-height: 85vh;
        padding: 60px 5% 80px;
    }
    
    .hero-logo-container img {
        max-width: 220px;
    }
    
    .hero h1 {
        font-size: 3.2em;
        margin-bottom: 15px;
    }
    
    .hero .tagline {
        font-size: 1.4em;
        margin-bottom: 18px;
    }
    
    .hero .subtitle {
        font-size: 1.1em;
        margin-bottom: 30px;
        line-height: 1.5;
    }
    
    .cta-buttons {
        margin-top: 25px;
    }
    
    .cta-btn {
        padding: 15px 35px;
        font-size: 1.1em;
    }
}

/* Optimisation pour les écrans avec ratio 16:9 */
@media (min-width: 1366px) and (max-height: 800px) {
    .hero {
        min-height: 88vh;
    }
    
    .hero h1 {
        font-size: clamp(2.5em, 6.5vw, 3.8em);
    }
    
    .hero .tagline {
        font-size: clamp(1.2em, 2.8vw, 1.6em);
    }
    
    .hero .subtitle {
        font-size: clamp(1em, 2vw, 1.3em);
        margin-bottom: clamp(20px, 2.5vh, 30px);
    }
    
    .cta-buttons {
        margin-top: clamp(20px, 2.5vh, 30px);
    }
}

/* Ajustements pour les boutons CTA - optimisation visuelle */
@media (min-width: 1366px) {
    .cta-primary {
        background: linear-gradient(145deg, var(--gold), var(--orange));
    }
    
    .cta-secondary {
        background: linear-gradient(145deg, #00D084, #00a86b);
    }
    
    .cta-btn {
        position: relative;
        overflow: hidden;
        z-index: 1;
    }
    
    .cta-btn::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: left 0.5s ease;
        z-index: -1;
    }
    
    .cta-btn:hover::before {
        left: 100%;
    }
    
    .cta-btn:active {
        transform: translateY(6px);
        box-shadow: 
            inset 0 3px 0 rgba(255, 255, 255, 0.6),
            5px 5px 0 rgba(0, 0, 0, 0.4);
    }
}

/* Amélioration de l'animation float pour desktop */
@media (min-width: 1366px) {
    @keyframes float {
        0%, 100% { 
            transform: translateY(0px) rotate(0deg); 
        }
        33% { 
            transform: translateY(-20px) rotate(2deg); 
        }
        66% { 
            transform: translateY(-10px) rotate(-2deg); 
        }
    }
    
    .hero-logo-container img {
        animation: float 4s ease-in-out infinite;
    }
}

/* Amélioration du responsive de la navigation pour desktop 13-15" */
@media (min-width: 1366px) and (max-width: 1920px) {
    nav {
        padding: clamp(1rem, 2.2vw, 1.5rem) clamp(4%, 6vw, 8%);
    }
    
    .nav-links {
        gap: clamp(1rem, 2vw, 1.5rem);
    }
    
    .nav-links a {
        font-size: clamp(0.85em, 1.8vw, 1.1em);
        padding: clamp(0.35rem, 0.9vw, 0.5rem) clamp(0.65rem, 1.5vw, 1rem);
    }
}

/* Ajustement pour éviter le débordement sur petits écrans desktop */
@media (min-width: 1366px) and (max-width: 1600px) {
    .hero h1,
    .hero .tagline,
    .hero .subtitle {
        padding: 0 15px;
        word-break: keep-all;
        hyphens: auto;
    }
    
    .cta-buttons {
        flex-wrap: nowrap;
        padding: 0 3%;
    }
    
    .cta-btn {
        white-space: nowrap;
        min-width: 200px;
    }
}
@media (max-width: 360px) {
    .buy-modal-header h2 {
        font-size: 1em;
    }

    .buy-modal-close {
        width: 30px;
        height: 30px;
        min-width: 30px;
        min-height: 30px;
        font-size: 1.1em;
    }

    .buy-platform-logo {
        width: 45px;
        height: 45px;
        min-width: 45px;
        min-height: 45px;
    }

    .buy-platform-info h3 {
        font-size: 0.95em;
    }

    .buy-platform-info p {
        font-size: 0.8em;
    }
}

/* ==================== ORIGIN SECTION - DESIGN SIMPLE ET ÉLÉGANT ==================== */
.origin-section {
    background: linear-gradient(180deg, rgba(255, 140, 0, 0.08), rgba(255, 255, 255, 0.95)), var(--bg-light);
    position: relative;
    z-index: 1;
    overflow-x: hidden;
    overflow-y: visible;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
}

.origin-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(0, 0, 0, 0.06) 1.5px, transparent 1.5px);
    background-size: 14px 14px;
    opacity: 0.3;
    pointer-events: none;
}

.origin-section > * {
    position: relative;
    z-index: 1;
}

.origin-scroll-hint {
    text-align: center;
    margin-top: -40px;
    margin-bottom: 20px;
    font-size: clamp(0.95em, 2vw, 1.25em);
    font-weight: 900;
    color: var(--orange);
    text-shadow: 2px 2px 0 rgba(255, 255, 255, 0.7);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.origin-scroll-hint svg {
    width: 1.1em;
    height: 1.1em;
    vertical-align: -0.2em;
    margin-left: 8px;
}

/* Container scrollable */
.origin-stories-container {
    display: flex;
    overflow-x: scroll !important;
    overflow-y: hidden;
    gap: clamp(25px, 4vw, 40px);
    padding: clamp(30px, 5vw, 60px) clamp(5%, 8vw, 10%) clamp(80px, 10vh, 100px);
    scroll-behavior: smooth;
    scrollbar-width: auto;
    scrollbar-color: var(--orange) var(--white);
    scrollbar-gutter: stable both-edges;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    min-height: 70vh;
    align-items: stretch;
}

.origin-stories-container::-webkit-scrollbar {
    height: 20px;
    display: block !important;
    visibility: visible !important;
}

.origin-stories-container::-webkit-scrollbar-track {
    background: #f5f5f5;
    border: 3px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    margin: 0 clamp(5%, 8vw, 10%);
}

.origin-stories-container::-webkit-scrollbar-thumb {
    background: var(--orange);
    border: 3px solid rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    min-width: 80px;
}

.origin-stories-container::-webkit-scrollbar-thumb:hover {
    background: #ff7700;
}

/* Cards - Design simple et propre */
.origin-story {
    scroll-snap-align: start;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    width: min(420px, 85vw);
    height: min(550px, 75vh);
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.origin-story:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border-color: rgba(255, 140, 0, 0.3);
}

/* Flèche entre les cards */
.origin-story-arrow {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: clamp(40px, 6vw, 60px);
    font-size: clamp(2em, 4vw, 3em);
    font-weight: 900;
    color: var(--orange);
    text-shadow: 2px 2px 0 rgba(255, 255, 255, 0.8);
    pointer-events: none;
    scroll-snap-align: none;
    user-select: none;
}

/* En-tête avec titre en noir Arial */
.origin-story h3 {
    font-size: clamp(1.3em, 3vw, 1.8em);
    color: #000;
    margin: 0;
    text-align: center;
    font-weight: 700;
    font-family: Arial, Helvetica, sans-serif;
    word-wrap: break-word;
    padding: clamp(20px, 3.5vw, 30px) clamp(20px, 3.5vw, 30px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    position: relative;
    flex-shrink: 0;
    background: #fff;
    line-height: 1.3;
    text-shadow: none;
}

/* Zone de contenu scrollable */
.origin-story-content {
    flex: 1;
    overflow-y: auto;
    padding: clamp(25px, 4vw, 35px);
    scrollbar-width: thin;
    scrollbar-color: var(--orange) #f5f5f5;
}

.origin-story-content::-webkit-scrollbar {
    width: 10px;
}

.origin-story-content::-webkit-scrollbar-track {
    background: #f5f5f5;
    border-radius: 10px;
}

.origin-story-content::-webkit-scrollbar-thumb {
    background: var(--orange);
    border-radius: 10px;
}

.origin-story-content::-webkit-scrollbar-thumb:hover {
    background: #ff7700;
}

/* Paragraphes */
.origin-story-content p {
    font-size: clamp(0.95em, 2vw, 1.1em);
    line-height: 1.7;
    margin-bottom: clamp(16px, 2.5vw, 20px);
    color: #333;
}

.origin-story-content p:last-child {
    margin-bottom: 0;
}

.origin-story-content strong {
    color: var(--orange);
    font-weight: 700;
}

/* Images dans le contenu */
.origin-story-media {
    margin-top: clamp(15px, 2.5vw, 20px);
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.origin-story-media img {
    width: 100%;
    display: block;
    height: auto;
}

.origin-story-media figcaption {
    padding: 12px 15px;
    font-size: clamp(0.85em, 1.8vw, 0.95em);
    font-weight: 600;
    color: #555;
    background: #f9f9f9;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

/* ==================== RESPONSIVE - MOBILE ==================== */
@media (max-width: 768px) {
    .origin-story {
        width: min(360px, 85vw);
        height: min(500px, 70vh);
    }

    .origin-story-arrow {
        display: none;
    }

    .origin-stories-container {
        gap: clamp(20px, 3vw, 30px);
        padding: clamp(25px, 4vw, 40px) clamp(4%, 5vw, 8%) clamp(70px, 8vh, 90px);
    }

    .origin-story h3 {
        font-size: clamp(1.2em, 3.5vw, 1.6em);
        padding: clamp(18px, 3vw, 25px) clamp(18px, 3vw, 25px);
    }

    .origin-story-content {
        padding: clamp(20px, 3.5vw, 28px);
    }

    .origin-story-content p {
        font-size: clamp(0.92em, 2vw, 1.05em);
    }

    .origin-stories-container::-webkit-scrollbar {
        height: 18px;
    }
}

@media (max-width: 480px) {
    .origin-story {
        width: min(320px, 90vw);
        height: min(480px, 68vh);
    }

    .origin-story h3 {
        font-size: clamp(1.15em, 4vw, 1.4em);
        padding: clamp(16px, 3vw, 22px) clamp(16px, 3vw, 22px);
    }

    .origin-story-content {
        padding: clamp(18px, 3vw, 25px);
    }

    .origin-story-content p {
        font-size: clamp(0.9em, 2.2vw, 1em);
        line-height: 1.65;
    }

    .origin-stories-container::-webkit-scrollbar {
        height: 16px;
    }
}

@media (max-width: 360px) {
    .origin-story {
        width: min(300px, 92vw);
        height: min(460px, 65vh);
    }

    .origin-story h3 {
        font-size: 1.1em;
    }

    .origin-story-content p {
        font-size: 0.88em;
    }
}
/* ==================== ORIGIN SECTION - DESIGN SIMPLE ET ÉLÉGANT ==================== */
.origin-section {
    background: linear-gradient(180deg, rgba(255, 140, 0, 0.08), rgba(255, 255, 255, 0.95)), var(--bg-light);
    position: relative;
    z-index: 1;
    overflow-x: hidden;
    overflow-y: visible;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
}

.origin-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(0, 0, 0, 0.06) 1.5px, transparent 1.5px);
    background-size: 14px 14px;
    opacity: 0.3;
    pointer-events: none;
}

.origin-section > * {
    position: relative;
    z-index: 1;
}

.origin-scroll-hint {
    text-align: center;
    margin-top: -40px;
    margin-bottom: 20px;
    font-size: clamp(0.95em, 2vw, 1.25em);
    font-weight: 900;
    color: var(--orange);
    text-shadow: 2px 2px 0 rgba(255, 255, 255, 0.7);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.origin-scroll-hint svg {
    width: 1.1em;
    height: 1.1em;
    vertical-align: -0.2em;
    margin-left: 8px;
}

/* Container scrollable - HORIZONTAL sur desktop */
.origin-stories-container {
    display: flex;
    overflow-x: scroll !important;
    overflow-y: hidden;
    gap: clamp(25px, 4vw, 40px);
    padding: clamp(30px, 5vw, 60px) clamp(5%, 8vw, 10%) clamp(80px, 10vh, 100px);
    scroll-behavior: smooth;
    scrollbar-width: auto;
    scrollbar-color: var(--orange) var(--white);
    scrollbar-gutter: stable both-edges;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    min-height: 70vh;
    align-items: stretch;
}

.origin-stories-container::-webkit-scrollbar {
    height: 20px;
    display: block !important;
    visibility: visible !important;
}

.origin-stories-container::-webkit-scrollbar-track {
    background: #f5f5f5;
    border: 3px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    margin: 0 clamp(5%, 8vw, 10%);
}

.origin-stories-container::-webkit-scrollbar-thumb {
    background: var(--orange);
    border: 3px solid rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    min-width: 80px;
}

.origin-stories-container::-webkit-scrollbar-thumb:hover {
    background: #ff7700;
}

/* Cards - Design simple et propre */
.origin-story {
    scroll-snap-align: start;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    width: min(420px, 85vw);
    height: min(550px, 75vh);
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.origin-story:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border-color: rgba(255, 140, 0, 0.3);
}

/* Flèche entre les cards */
.origin-story-arrow {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: clamp(40px, 6vw, 60px);
    font-size: clamp(2em, 4vw, 3em);
    font-weight: 900;
    color: var(--orange);
    text-shadow: 2px 2px 0 rgba(255, 255, 255, 0.8);
    pointer-events: none;
    scroll-snap-align: none;
    user-select: none;
}

/* En-tête avec titre en noir Arial */
.origin-story h3 {
    font-size: clamp(1.3em, 3vw, 1.8em);
    color: #000;
    margin: 0;
    text-align: center;
    font-weight: 700;
    font-family: Arial, Helvetica, sans-serif;
    word-wrap: break-word;
    padding: clamp(20px, 3.5vw, 30px) clamp(20px, 3.5vw, 30px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    position: relative;
    flex-shrink: 0;
    background: #fff;
    line-height: 1.3;
    text-shadow: none;
}

/* Zone de contenu scrollable */
.origin-story-content {
    flex: 1;
    overflow-y: auto;
    padding: clamp(25px, 4vw, 35px);
    scrollbar-width: thin;
    scrollbar-color: var(--orange) #f5f5f5;
}

.origin-story-content::-webkit-scrollbar {
    width: 10px;
}

.origin-story-content::-webkit-scrollbar-track {
    background: #f5f5f5;
    border-radius: 10px;
}

.origin-story-content::-webkit-scrollbar-thumb {
    background: var(--orange);
    border-radius: 10px;
}

.origin-story-content::-webkit-scrollbar-thumb:hover {
    background: #ff7700;
}

/* Paragraphes */
.origin-story-content p {
    font-size: clamp(0.95em, 2vw, 1.1em);
    line-height: 1.7;
    margin-bottom: clamp(16px, 2.5vw, 20px);
    color: #333;
}

.origin-story-content p:last-child {
    margin-bottom: 0;
}

.origin-story-content strong {
    color: var(--orange);
    font-weight: 700;
}

/* Images dans le contenu */
.origin-story-media {
    margin-top: clamp(15px, 2.5vw, 20px);
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.origin-story-media img {
    width: 100%;
    display: block;
    height: auto;
}

.origin-story-media figcaption {
    padding: 12px 15px;
    font-size: clamp(0.85em, 1.8vw, 0.95em);
    font-weight: 600;
    color: #555;
    background: #f9f9f9;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

/* ==================== RESPONSIVE - MOBILE VERTICAL SCROLL ==================== */
@media (max-width: 768px) {
    .origin-scroll-hint {
        display: none; /* Masquer l'indication de scroll horizontal sur mobile */
    }

    /* Container VERTICAL sur mobile */
    .origin-stories-container {
        flex-direction: column;
        overflow-x: hidden;
        overflow-y: visible;
        gap: clamp(25px, 5vw, 35px);
        padding: clamp(25px, 4vw, 40px) clamp(4%, 5vw, 8%);
        scroll-snap-type: none;
        min-height: auto;
        align-items: center;
    }

    /* Masquer la scrollbar horizontale sur mobile */
    .origin-stories-container::-webkit-scrollbar {
        display: none;
    }

    .origin-stories-container {
        scrollbar-width: none;
    }

    .origin-story {
        width: 100%;
        max-width: 500px;
        height: auto;
        min-height: auto;
        scroll-snap-align: none;
    }

    .origin-story-arrow {
        display: none;
    }

    .origin-story h3 {
        font-size: clamp(1.2em, 3.5vw, 1.6em);
        padding: clamp(18px, 3vw, 25px) clamp(18px, 3vw, 25px);
    }

    .origin-story-content {
        padding: clamp(20px, 3.5vw, 28px);
        max-height: none; /* Pas de limite de hauteur sur mobile */
        overflow-y: visible; /* Contenu visible sans scroll interne */
    }

    .origin-story-content p {
        font-size: clamp(0.92em, 2vw, 1.05em);
    }
}

@media (max-width: 480px) {
    .origin-stories-container {
        gap: clamp(20px, 4vw, 30px);
        padding: clamp(20px, 3.5vw, 35px) clamp(4%, 5vw, 6%);
    }

    .origin-story {
        max-width: 100%;
    }

    .origin-story h3 {
        font-size: clamp(1.15em, 4vw, 1.4em);
        padding: clamp(16px, 3vw, 22px) clamp(16px, 3vw, 22px);
    }

    .origin-story-content {
        padding: clamp(18px, 3vw, 25px);
    }

    .origin-story-content p {
        font-size: clamp(0.9em, 2.2vw, 1em);
        line-height: 1.65;
    }
}

@media (max-width: 360px) {
    .origin-stories-container {
        gap: 18px;
        padding: 18px 4%;
    }

    .origin-story h3 {
        font-size: 1.1em;
        padding: 14px 16px;
    }

    .origin-story-content {
        padding: 16px;
    }

    .origin-story-content p {
        font-size: 0.88em;
    }
}
/* ==================== ORIGIN SECTION - DESIGN SIMPLE ET ÉLÉGANT ==================== */
.origin-section {
    background: linear-gradient(180deg, rgba(255, 140, 0, 0.08), rgba(255, 255, 255, 0.95)), var(--bg-light);
    position: relative;
    z-index: 1;
    overflow-x: hidden;
    overflow-y: visible;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
}

.origin-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(0, 0, 0, 0.06) 1.5px, transparent 1.5px);
    background-size: 14px 14px;
    opacity: 0.3;
    pointer-events: none;
}

.origin-section > * {
    position: relative;
    z-index: 1;
}

.origin-scroll-hint {
    text-align: center;
    margin-top: -40px;
    margin-bottom: 20px;
    font-size: clamp(0.95em, 2vw, 1.25em);
    font-weight: 900;
    color: var(--orange);
    text-shadow: 2px 2px 0 rgba(255, 255, 255, 0.7);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.origin-scroll-hint svg {
    width: 1.1em;
    height: 1.1em;
    vertical-align: -0.2em;
    margin-left: 8px;
}

/* Container scrollable - HORIZONTAL sur desktop */
.origin-stories-container {
    display: flex;
    overflow-x: scroll !important;
    overflow-y: hidden;
    gap: clamp(25px, 4vw, 40px);
    padding: clamp(30px, 5vw, 60px) clamp(5%, 8vw, 10%) clamp(80px, 10vh, 100px);
    scroll-behavior: smooth;
    scrollbar-width: auto;
    scrollbar-color: var(--orange) var(--white);
    scrollbar-gutter: stable both-edges;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    min-height: 70vh;
    align-items: stretch;
}

.origin-stories-container::-webkit-scrollbar {
    height: 20px;
    display: block !important;
    visibility: visible !important;
}

.origin-stories-container::-webkit-scrollbar-track {
    background: #f5f5f5;
    border: 3px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    margin: 0 clamp(5%, 8vw, 10%);
}

.origin-stories-container::-webkit-scrollbar-thumb {
    background: var(--orange);
    border: 3px solid rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    min-width: 80px;
}

.origin-stories-container::-webkit-scrollbar-thumb:hover {
    background: #ff7700;
}

/* Cards - Design simple et propre */
.origin-story {
    scroll-snap-align: start;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    width: min(420px, 85vw);
    height: min(550px, 75vh);
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.origin-story:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border-color: rgba(255, 140, 0, 0.3);
}

/* Flèche entre les cards - CLIQUABLE */
.origin-story-arrow {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: clamp(50px, 7vw, 70px);
    font-size: clamp(2em, 4vw, 3em);
    font-weight: 900;
    color: var(--orange);
    text-shadow: 2px 2px 0 rgba(255, 255, 255, 0.8);
    scroll-snap-align: none;
    user-select: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    background: transparent;
    border-radius: 50%;
    padding: 10px;
}

.origin-story-arrow:hover {
    color: #ff7700;
    transform: scale(1.2);
    text-shadow: 
        3px 3px 0 rgba(255, 255, 255, 0.9),
        0 0 20px rgba(255, 140, 0, 0.6);
}

.origin-story-arrow:active {
    transform: scale(1.1);
}

/* En-tête avec titre en noir Arial */
.origin-story h3 {
    font-size: clamp(1.3em, 3vw, 1.8em);
    color: #000;
    margin: 0;
    text-align: center;
    font-weight: 700;
    font-family: Arial, Helvetica, sans-serif;
    word-wrap: break-word;
    padding: clamp(20px, 3.5vw, 30px) clamp(20px, 3.5vw, 30px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    position: relative;
    flex-shrink: 0;
    background: #fff;
    line-height: 1.3;
    text-shadow: none;
}

/* Zone de contenu scrollable */
.origin-story-content {
    flex: 1;
    overflow-y: auto;
    padding: clamp(25px, 4vw, 35px);
    scrollbar-width: thin;
    scrollbar-color: var(--orange) #f5f5f5;
}

.origin-story-content::-webkit-scrollbar {
    width: 10px;
}

.origin-story-content::-webkit-scrollbar-track {
    background: #f5f5f5;
    border-radius: 10px;
}

.origin-story-content::-webkit-scrollbar-thumb {
    background: var(--orange);
    border-radius: 10px;
}

.origin-story-content::-webkit-scrollbar-thumb:hover {
    background: #ff7700;
}

/* Paragraphes */
.origin-story-content p {
    font-size: clamp(0.95em, 2vw, 1.1em);
    line-height: 1.7;
    margin-bottom: clamp(16px, 2.5vw, 20px);
    color: #333;
}

.origin-story-content p:last-child {
    margin-bottom: 0;
}

.origin-story-content strong {
    color: var(--orange);
    font-weight: 700;
}

/* Images dans le contenu */
.origin-story-media {
    margin-top: clamp(15px, 2.5vw, 20px);
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.origin-story-media img {
    width: 100%;
    display: block;
    height: auto;
}

.origin-story-media figcaption {
    padding: 12px 15px;
    font-size: clamp(0.85em, 1.8vw, 0.95em);
    font-weight: 600;
    color: #555;
    background: #f9f9f9;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

/* ==================== RESPONSIVE - MOBILE VERTICAL SCROLL ==================== */
@media (max-width: 768px) {
    .origin-scroll-hint {
        display: none;
    }

    /* Container VERTICAL sur mobile */
    .origin-stories-container {
        flex-direction: column;
        overflow-x: hidden;
        overflow-y: visible;
        gap: clamp(25px, 5vw, 35px);
        padding: clamp(25px, 4vw, 40px) clamp(4%, 5vw, 8%);
        scroll-snap-type: none;
        min-height: auto;
        align-items: center;
    }

    /* Masquer la scrollbar horizontale sur mobile */
    .origin-stories-container::-webkit-scrollbar {
        display: none;
    }

    .origin-stories-container {
        scrollbar-width: none;
    }

    .origin-story {
        width: 100%;
        max-width: 500px;
        height: auto;
        min-height: auto;
        scroll-snap-align: none;
    }

    .origin-story-arrow {
        display: none;
    }

    .origin-story h3 {
        font-size: clamp(1.2em, 3.5vw, 1.6em);
        padding: clamp(18px, 3vw, 25px) clamp(18px, 3vw, 25px);
    }

    .origin-story-content {
        padding: clamp(20px, 3.5vw, 28px);
        max-height: none;
        overflow-y: visible;
    }

    .origin-story-content p {
        font-size: clamp(0.92em, 2vw, 1.05em);
    }
}

@media (max-width: 480px) {
    .origin-stories-container {
        gap: clamp(20px, 4vw, 30px);
        padding: clamp(20px, 3.5vw, 35px) clamp(4%, 5vw, 6%);
    }

    .origin-story {
        max-width: 100%;
    }

    .origin-story h3 {
        font-size: clamp(1.15em, 4vw, 1.4em);
        padding: clamp(16px, 3vw, 22px) clamp(16px, 3vw, 22px);
    }

    .origin-story-content {
        padding: clamp(18px, 3vw, 25px);
    }

    .origin-story-content p {
        font-size: clamp(0.9em, 2.2vw, 1em);
        line-height: 1.65;
    }
}

@media (max-width: 360px) {
    .origin-stories-container {
        gap: 18px;
        padding: 18px 4%;
    }

    .origin-story h3 {
        font-size: 1.1em;
        padding: 14px 16px;
    }

    .origin-story-content {
        padding: 16px;
    }

    .origin-story-content p {
        font-size: 0.88em;
    }
}

