:root {
    --bg-dark: #0f0f0f;
    --text-light: #ffffff;
    --primary-yellow: #eaff00; /* Ultra bright modern yellow */
    --text-dark: #0a0a0a;
    --font-heading: 'Unbounded', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none; /* Hide default mouse globally */
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-light);
    overflow-x: hidden;
    cursor: none; 
}

/* Global Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2.5rem; /* Reduced from 4rem for a tighter feel */
    width: 100%;
    position: relative;
}

/* Custom Cursor */
.cursor {
    width: 24px;
    height: 24px;
    border: 2px solid var(--primary-yellow);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, background-color 0.3s, border 0.3s;
    mix-blend-mode: difference;
    backdrop-filter: blur(2px);
}
.cursor.hovered {
    width: 6rem;
    height: 6rem;
    background-color: var(--primary-yellow);
    mix-blend-mode: difference;
}

.cursor.cursor-link {
    width: 8rem;
    height: 8rem;
    background-color: var(--primary-yellow);
    mix-blend-mode: normal;
    border: none;
}

.cursor.cursor-link::after {
    content: var(--cursor-text, 'Ouvrir \A le site \2197'); /* Driven by CSS Variable */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--text-dark);
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 0.7rem;
    text-align: center;
    white-space: pre-wrap;
    text-transform: uppercase;
    line-height: 1.2;
    letter-spacing: 0.05em;
}

.cursor.cursor-help {
    width: 6rem;
    height: 6rem;
    background-color: var(--primary-yellow);
    mix-blend-mode: normal; /* Better visibility for the ? */
}

.cursor.cursor-help::after {
    content: '?';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--text-dark);
    font-size: 2.5rem;
    font-family: var(--font-heading);
    font-weight: 900;
}

/* Typography styles */
h1, h2, h3, .nav-logo-container, .marquee-content {
    font-family: var(--font-heading);
    text-transform: uppercase;
}

.project-slide {
    text-decoration: none !important; /* Remove link underlines */
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2.5rem 4rem;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    z-index: 9999;
    mix-blend-mode: difference;
    color: var(--text-light);
    /* Ultra-smooth transition for entry and exit */
    transition: 
        opacity 0.8s cubic-bezier(0.23, 1, 0.32, 1), 
        transform 0.8s cubic-bezier(0.23, 1, 0.32, 1),
        visibility 0.8s;
}

.navbar.nav-hidden {
    opacity: 0 !important;
    pointer-events: none !important;
    transform: translateY(-40px) scale(0.98) !important; /* Slide up + subtle shrink */
    visibility: hidden !important;
    transition: 
        opacity 0.5s cubic-bezier(0.77, 0, 0.175, 1), 
        transform 0.5s cubic-bezier(0.77, 0, 0.175, 1),
        visibility 0.5s;
}

.nav-logo-container {
    height: 28px;
}

.nav-logo {
    height: 100%;
    width: auto;
    display: block;
}

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

.nav-contact {
    text-decoration: none;
    color: var(--text-dark);
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 0.8rem; /* Slightly smaller */
    letter-spacing: 0.05em;
    padding: 0.7rem 1.5rem; /* Tightened padding */
    background-color: var(--primary-yellow);
    border: 3px solid var(--text-dark);
    box-shadow: 4px 4px 0px var(--text-dark);
    transition: all 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
    mix-blend-mode: normal;
    display: inline-flex; /* Use inline-flex to prevent horizontal stretching */
    align-items: center;
    gap: 0.8rem;
    width: fit-content; /* Force fit to content */
}

.nav-contact:hover {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0px var(--text-dark);
    background-color: var(--primary-yellow);
}

.nav-contact:active {
    transform: translate(2px, 2px);
    box-shadow: 0px 0px 0px var(--text-dark);
}

.nav-links {
    display: flex;
    gap: 3rem;
}
.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 1rem;
    position: relative;
    cursor: none; /* Inherits custom cursor */
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0%;
    height: 2px;
    background: currentColor;
    transition: width 0.3s ease;
}
.nav-links a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    width: 100vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(15,15,15,0.6) 0%, rgba(15,15,15,0.95) 100%);
    z-index: -1;
}

.hero-content {
    text-align: center;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.hero-title {
    font-size: clamp(3rem, 12vw, 15rem); /* Slightly smaller to prevent extreme overflow */
    line-height: 0.8;
    letter-spacing: -0.06em;
    color: var(--primary-yellow);
    margin-bottom: 2rem;
    text-shadow: 0 10px 50px rgba(0,0,0,0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
}

.letter {
    display: inline-block;
    opacity: 0;
    transform: translateY(0.5em) scale(0.9);
    filter: blur(10px);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1), transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    z-index: 1;
    will-change: transform, opacity;
}

.letter.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0px);
}

.letter-space {
    width: 0.3em;
}

.letter.is-breathing {
    animation: letterBreathing 1.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    z-index: 10;
}

@keyframes letterBreathing {
    0% { transform: scale(1); }
    30% { transform: scale(1.12); } /* Reach peak quickly */
    100% { transform: scale(1); } /* Return slowly and smoothly */
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 2rem);
    font-weight: 300;
    letter-spacing: 0.3em;
    color: var(--text-light);
    text-transform: uppercase;
}
.dot {
    color: var(--primary-yellow);
    font-weight: bold;
    margin: 0 0.5rem;
}

/* Marquee */
.marquee-container {
    background: var(--primary-yellow);
    color: var(--text-dark);
    padding: 2.5rem 0; /* Slightly more padding */
    overflow: hidden;
    white-space: nowrap;
    border-top: 4px solid var(--text-dark);
    border-bottom: 4px solid var(--text-dark);
    transform: rotate(-3deg) scale(1.1); /* Increased width */
    width: 120%; /* Increased width */
    left: -10%;
    position: relative;
    z-index: 10;
    box-shadow: 0 15px 50px rgba(0,0,0,0.6);
}

.marquee-content {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 25s linear infinite;
    font-size: 3.5rem;
    font-weight: 900;
}

.marquee-content span {
    padding-right: 3rem;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/* Horizontal Scroll Section */
.scroll-section {
    position: relative;
    height: 800vh; /* 7 slides total now (intro + 4 projects + buffer) */
    background-color: var(--primary-yellow); /* Keep this solid to hide gaps */
    margin-top: -7rem; /* Reduced overlap to prevent crushing the title */
    width: 100%;
    z-index: 1;
}

.sticky-wrapper {
    position: sticky;
    top: 0;
    height: 100vh;
    width: 100vw;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.horizontal-track {
    display: flex;
    height: 100%;
    will-change: transform;
    background-color: var(--text-dark); /* Match project backgrounds to hide gaps */
    gap: 0;
}

.intro-slide {
    background-color: var(--primary-yellow);
    color: var(--text-dark);
    user-select: none;
    min-width: 100vw;
    width: 100vw;
}

.section-title-huge {
    font-size: clamp(4rem, 15vw, 18rem);
    line-height: 0.8;
    letter-spacing: -0.03em; /* Relaxed from -0.06em to fix 'weird' R overlap */
    font-family: var(--font-heading);
    text-transform: uppercase;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.section-desc-huge {
    max-width: 600px;
    font-size: 1.8rem;
    font-weight: 600;
    padding-left: 15px;
    line-height: 1.3;
    color: var(--text-dark);
    margin: 0;
}

.intro-slide .slide-content {
    mix-blend-mode: normal;
    color: var(--text-dark);
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-left: 4rem;
    padding-top: 12rem; /* Ensure text starts below the marquee slant */
}

.project-slide {
    width: 100vw;
    min-width: 100vw;
    height: 100vh;
    flex-shrink: 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4rem;
}

.slide-img {
    position: absolute;
    inset: 4rem;
    border: 5px solid var(--text-dark);
    border-radius: 20px;
    overflow: hidden;
    z-index: 1;
    background-color: var(--text-dark);
}

.slide-img img,
.slide-img video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    transition: transform 0.5s ease;
}

.project-slide:hover .slide-img img,
.project-slide:hover .slide-img video {
    transform: scale(1.05);
}

.slide-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--text-light);
    mix-blend-mode: difference;
}

.slide-num {
    font-family: var(--font-heading);
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.slide-title {
    font-size: clamp(3rem, 10vw, 12rem);
    line-height: 0.8;
    letter-spacing: -0.05em;
    margin-bottom: 1.5rem;
}

.slide-category {
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: 0.3em;
}

/* --- Scroll-Synced Project Reveal (The Scrub Engine) --- */
.project-slide:not(.intro-slide) {
    --slide-progress: 0; /* Driven by JS (0 at edge, 1 at center) */
    opacity: var(--slide-progress);
    transform: scale(calc(0.93 + 0.07 * var(--slide-progress))) 
               translateY(calc(15px * (1 - var(--slide-progress))));
    filter: blur(calc(8px * (1 - var(--slide-progress))));
    transition: transform 0.1s ease-out, opacity 0.1s ease-out;
    will-change: transform, opacity, filter;
}

.intro-slide {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
}

.slide-img {
    clip-path: inset(0 calc(10% * (1 - var(--slide-progress))) 0 calc(10% * (1 - var(--slide-progress))));
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
    transition: clip-path 0.1s ease-out;
}

.slide-title {
    transform: translateY(calc(10px * (1 - var(--slide-progress))));
    letter-spacing: calc(-0.03em + 0.02em * var(--slide-progress));
    opacity: var(--slide-progress);
    transition: all 0.1s ease-out;
}

.intro-slide .slide-title {
    opacity: 1 !important;
    transform: none !important;
}

.slide-category {
    opacity: calc(var(--slide-progress)* 2 - 1); /* Fades in much later */
    transform: translateX(calc(-10px * (1 - var(--slide-progress))));
    transition: all 0.1s ease-out;
}

/* Responsive adjustment for horizontal scroll */
@media (max-width: 768px) {
    .works-intro { left: 1.5rem; top: 2rem; }
    .slide-img { inset: 2rem; }
    .slide-title { font-size: 4rem; }
    .scroll-section { height: 1000vh; } /* More scroll depth for mobile? or same. */
}

/* Spectacular Text Reveal System */
.reveal-text-wrapper {
    overflow: hidden;
    position: relative;
    display: block;
}

.reveal-text-line {
    display: block;
    transform: translateY(110%);
    opacity: 0;
    transition: transform 1.2s cubic-bezier(0.19, 1, 0.22, 1), 
                opacity 1.2s cubic-bezier(0.19, 1, 0.22, 1);
}

.reveal-text-wrapper.is-revealed .reveal-text-line {
    transform: translateY(0);
    opacity: 1;
}

/* Fluid Reveal (Continuous scroll highlighting) */
.reveal-fluid {
    --progress: 0%;
    display: block; /* Ensure it takes full width for the gradient */
    /* Gradient: Highlight color from 0 to --progress, Base color from --progress to 100% */
    background: linear-gradient(90deg, 
        var(--text-light) 0%, 
        var(--text-light) var(--progress), 
        rgba(255, 255, 255, 0.15) var(--progress), 
        rgba(255, 255, 255, 0.15) 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: background-position 0.1s ease;
}

.typo-row:hover .reveal-fluid {
    /* Subtle neon tint on hover for active parts */
    background: linear-gradient(90deg, 
        var(--primary-yellow) 0%, 
        var(--primary-yellow) var(--progress), 
        rgba(255, 255, 255, 0.15) var(--progress), 
        rgba(255, 255, 255, 0.15) 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    text-shadow: 0 5px 25px rgba(234, 255, 0, 0.1);
}

.reveal-fluid-line {
    display: block;
}

/* Staggering utility */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }

/* Existing Typographic Why Me / DEVOXIS Section */
.section-why {
    background-color: var(--bg-dark);
    padding: 12rem 4rem;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.section-why .container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 8rem;
}

.typo-row {
    display: flex;
    width: 100%;
    /* Exit Animation - Magnetic Glide Out */
    /* Optimized: removed skew and reduced blur for extreme smoothness */
    opacity: calc(1 - var(--exit-progress, 0));
    transform: translateY(calc(-30px * var(--exit-progress, 0)));
    filter: blur(calc(3px * var(--exit-progress, 0))); 
    position: relative;
    z-index: 1;
    will-change: transform, opacity;
}

.typo-row:hover {
    z-index: 10; /* Ensures hovered row shadow stays on top */
}

.typo-content {
    max-width: 900px;
    position: relative;
}

.row-num {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--primary-yellow);
    margin-bottom: 2rem;
    display: block;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    /* Smooth Reveal */
    opacity: calc(var(--row-progress, 0) * 0.8);
    transform: translateY(calc(15px * (1 - var(--row-progress, 0))));
    transition: transform 0.1s ease-out, opacity 0.1s ease-out;
}

.typo-title {
    font-size: clamp(1.5rem, 6vw, 8rem); /* Drastically reduced to prevent any overflow */
    line-height: 1.0;
    letter-spacing: -0.05em;
    font-family: var(--font-heading);
    color: var(--text-light);
    margin-bottom: 2.5rem;
    transition: color 0.4s ease, text-shadow 0.6s ease; /* Smoother shadow activation */
    word-break: break-word; /* Force break if still too wide */
    hyphens: auto;
}

.typo-row:hover .typo-title {
    color: var(--primary-yellow);
    text-shadow: 0 10px 30px rgba(234, 255, 0, 0.1); 
}

.typo-desc {
    font-size: 1.3rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.5);
    font-family: var(--font-body);
    max-width: 700px;
    /* Smooth Reveal */
    opacity: calc(var(--row-progress, 0) * 1);
    transform: translateY(calc(10px * (1 - var(--row-progress, 0))));
    transition: transform 0.1s ease-out, opacity 0.1s ease-out;
}

[style*="text-align: right"] .typo-desc {
    margin-left: auto;
}

@media (max-width: 768px) {
    .section-why { padding: 6rem 1.5rem; }
    .section-why .container { gap: 6rem; }
    .typo-title { font-size: 2.8rem; }
    .typo-desc { font-size: 1.1rem; }
}

/* Laptop Scroll Section */
.laptop-scroll-section {
    position: relative;
    height: 400vh; /* Determines scroll duration */
    background-color: var(--bg-dark);
    margin-top: -1px; /* Avoid sub-pixel gaps */
}

.laptop-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    width: 100vw;
    overflow: hidden;
    background-color: var(--bg-dark);
}

/* Smooth transition from the previous section */
.laptop-sticky::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 20vh;
    background: linear-gradient(to bottom, var(--bg-dark), transparent);
    z-index: 3;
    pointer-events: none;
    opacity: var(--shadow-opacity, 1);
    transition: opacity 0.3s ease;
}

.laptop-canvas {
    width: 100%;
    height: 100%;
    display: block;
    opacity: 0; /* Animated in via JS when images are loaded */
    transition: opacity 1s ease;
}

.laptop-canvas.is-ready {
    opacity: 1;
}

.laptop-yellow-overlay {
    position: absolute;
    inset: 0;
    background-color: var(--primary-yellow);
    opacity: 0;
    pointer-events: none;
    z-index: 2;
}

/* Contact Section */
.section-contact {
    background-color: var(--bg-dark);
    color: var(--text-light);
    padding: 12rem 4rem;
    text-align: center;
}
.contact-title {
    font-size: 1.5rem;
    margin-bottom: 3rem;
    color: var(--text-light);
    letter-spacing: 0.2rem;
}
.mega-email {
    font-size: clamp(1rem, 4.4vw, 12rem); /* Adjusted scaling to ensure single line */
    font-family: var(--font-heading);
    font-weight: 900;
    color: var(--text-light);
    text-decoration: none;
    transition: -webkit-text-stroke 0.4s, color 0.4s;
    position: relative;
    display: inline-block;
    cursor: none;
    white-space: nowrap; /* Force single line */
    max-width: 100%;
}
.mega-email:hover {
    color: transparent;
    -webkit-text-stroke: 2px var(--primary-yellow);
}

/* Footer */
.footer {
    background-color: var(--bg-dark);
    padding: 10rem 0 4rem; /* Padding only top/bottom */
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-bg-text {
    position: absolute;
    bottom: -5%;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-heading);
    font-size: 25vw;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.02);
    white-space: nowrap;
    pointer-events: none;
    z-index: 0;
}

.footer .container {
    position: relative;
    z-index: 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1.2fr 1.2fr 1.5fr; /* Slightly wider columns for text */
    gap: 4rem; /* Reduced from 6rem */
    margin-bottom: 6rem;
}

.brand-col .footer-logo {
    height: 32px;
    margin-bottom: 2rem;
}

.brand-phrase {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
    max-width: 320px;
}

.footer-label {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    color: var(--primary-yellow);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 2rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

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

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s ease;
    cursor: none;
}

.footer-links a:hover {
    color: var(--primary-yellow);
}

.social-icons {
    display: flex;
    gap: 1.5rem;
}

.social-link {
    width: 3.5rem;
    height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: none;
    padding: 0.8rem; /* Space for the logo */
}

.social-link img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: filter 0.3s ease;
}

.social-link:hover {
    background-color: var(--primary-yellow);
    border-color: var(--primary-yellow);
    transform: translateY(-5px);
}

.social-link:hover img {
    filter: invert(1); /* Flip white SVG to black on yellow background */
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 3rem;
    padding-left: 2rem;
    padding-right: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
}

.back-to-top {
    color: var(--primary-yellow);
    text-decoration: none;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    cursor: none;
}

/* Extas & Utilities */
::selection {
    background-color: var(--primary-yellow);
    color: var(--text-dark);
}

.hidden-onload {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1.2s ease, transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.reveal {
    opacity: 0;
    transform: translateY(80px);
    transition: opacity 1s ease, transform 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .navbar { padding: 1.5rem; }
    .hero-title { font-size: 4rem; br { display: none; } }
    .hero-subtitle { letter-spacing: 0.1em; font-size: 0.9rem; }
    .section-works { padding: 6rem 1.5rem; }
    .works-header { flex-direction: column; align-items: flex-start; gap: 2rem; margin-bottom: 4rem; }
    .section-desc { text-align: left; }
    .works-grid { grid-template-columns: 1fr; }
    .img-wrapper { aspect-ratio: auto; height: 400px; }
    .section-contact { padding: 8rem 1.5rem; }
    .footer { padding: 4rem 1.5rem; text-align: left; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .brand-col { grid-column: span 2; }
    .footer-bg-text { font-size: 40vw; }
    .footer-bottom { flex-direction: column; gap: 2rem; align-items: flex-start; }
    .marquee-content { font-size: 2.5rem; }
}
