/* ==========================================================================
   ARCADE RELICS - STYLESHEET 2.0 (MODERN NEO-ARCADE & GLASSMORPHISM)
   ========================================================================== */

:root {
    /* Color Palette */
    --background: #06060d;
    --background-subtle: #0a0a16;
    --background-card: rgba(15, 15, 30, 0.72);
    --surface: rgba(22, 22, 44, 0.55);
    --surface-hover: rgba(32, 32, 64, 0.8);
    --surface-active: rgba(40, 40, 80, 0.9);
    
    /* Neon Accents */
    --pink: #ff2da4;
    --pink-glow: rgba(255, 45, 164, 0.4);
    --pink-subtle: rgba(255, 45, 164, 0.12);
    
    --cyan: #26e6ff;
    --cyan-glow: rgba(38, 230, 255, 0.4);
    --cyan-subtle: rgba(38, 230, 255, 0.12);

    --gradient-blue: #2997ff;
    --gradient-blue-glow: rgba(41, 151, 255, 0.35);
    
    --purple: #8f45ff;
    --purple-glow: rgba(143, 69, 255, 0.4);
    --purple-subtle: rgba(143, 69, 255, 0.12);
    
    --green: #5dffab;
    --green-glow: rgba(93, 255, 171, 0.35);
    
    --yellow: #ffc837;

    /* Typography Colors */
    --text-primary: #ffffff;
    --text-secondary: #c2c2de;
    --text-muted: #8282a6;
    --text-dim: #5a5a78;

    /* Borders & Outlines */
    --border: rgba(255, 255, 255, 0.08);
    --border-light: rgba(255, 255, 255, 0.14);
    --border-focus: rgba(38, 230, 255, 0.6);
    --border-glow-cyan: 0 0 20px rgba(38, 230, 255, 0.3);
    --border-glow-pink: 0 0 20px rgba(255, 45, 164, 0.3);

    /* Typography */
    --font-display: 'Space Grotesk', system-ui, -apple-system, sans-serif;
    --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;

    /* Spacing & Radii */
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-pill: 9999px;
    --container: 1180px;

    /* Transitions */
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-normal: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   RESET & GLOBAL BASE
   ========================================================================== */

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

html {
    scroll-behavior: smooth;
    color-scheme: dark;
}

body {
    min-height: 100vh;
    overflow-x: hidden;
    color: var(--text-secondary);
    background-color: var(--background);
    font-family: var(--font-body);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Retro Grid Background Pattern */
body::before {
    position: fixed;
    z-index: -2;
    inset: 0;
    content: "";
    pointer-events: none;
    opacity: 0.25;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse at center, black 40%, transparent 85%);
}

/* Ambient Floating Glows */
.ambient-glow {
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
    filter: blur(120px);
    opacity: 0.35;
    will-change: transform;
}

.glow-cyan {
    width: 450px;
    height: 450px;
    top: -100px;
    right: 5%;
    background: radial-gradient(circle, var(--cyan) 0%, transparent 70%);
}

.glow-pink {
    width: 500px;
    height: 500px;
    top: 25%;
    left: -150px;
    background: radial-gradient(circle, var(--pink) 0%, transparent 70%);
}

.glow-purple {
    width: 600px;
    height: 600px;
    bottom: 5%;
    right: -150px;
    background: radial-gradient(circle, var(--purple) 0%, transparent 70%);
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
    -webkit-tap-highlight-color: transparent;
}

img, svg {
    display: block;
    max-width: 100%;
}

.icon {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
    flex-shrink: 0;
}

.container {
    width: min(calc(100% - 40px), var(--container));
    margin: 0 auto;
}

.section {
    position: relative;
    padding: 100px 0;
}

/* ==========================================================================
   TYPOGRAPHY & GRADIENTS
   ========================================================================== */

h1, h2, h3, h4 {
    color: var(--text-primary);
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.025em;
}

h1 {
    font-size: clamp(2.4rem, 5.2vw, 3.8rem);
    margin-bottom: 24px;
}

h2 {
    font-size: clamp(2rem, 4vw, 2.9rem);
    margin-bottom: 18px;
}

h3 {
    font-size: 1.28rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.gradient-text,
.gradient-text-animated,
.gradient-animated {
    background: linear-gradient(
        90deg,
        var(--gradient-blue) 0%,
        var(--pink) 16.66%,
        var(--purple) 33.33%,
        var(--gradient-blue) 50%,
        var(--pink) 66.66%,
        var(--purple) 83.33%,
        var(--gradient-blue) 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
    animation: gradient-flow-rtl 6s linear infinite;
    display: inline;
}

@keyframes gradient-flow-rtl {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 100% 50%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .gradient-text,
    .gradient-text-animated,
    .gradient-animated {
        animation: none;
    }
}

.neon-text {
    filter: drop-shadow(0 0 20px rgba(143, 69, 255, 0.28));
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--cyan);
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 16px;
}

.eyebrow-icon {
    color: var(--pink);
    font-size: 0.95rem;
}

.text-nowrap {
    white-space: nowrap;
}

.section-header {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 56px auto;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 680px;
    margin: 0 auto;
}

/* ==========================================================================
   BUTTONS & MICRO-INTERACTIONS
   ========================================================================== */

.button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 13px 24px;
    border-radius: var(--radius-pill);
    overflow: hidden;
    transition: all var(--transition-fast);
    white-space: nowrap;
    text-align: center;
}

.button-primary {
    background: linear-gradient(135deg, var(--pink) 0%, #d41e82 100%);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 20px rgba(255, 45, 164, 0.35);
}

.button-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(255, 45, 164, 0.55), 0 0 15px rgba(38, 230, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.4);
}

.button-primary:active {
    transform: translateY(0);
}

.button-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    border: 1px solid var(--border-light);
    backdrop-filter: blur(12px);
}

.button-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--cyan);
    color: var(--cyan);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(38, 230, 255, 0.2);
}

.button-secondary:hover .icon {
    transform: translateX(3px);
}

.button-secondary .icon {
    transition: transform var(--transition-fast);
}

/* Shimmer Light Sweeping Animation */
.button-shimmer::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -60%;
    width: 40%;
    height: 200%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.35),
        transparent
    );
    transform: rotate(25deg);
    animation: button-shimmer 4s infinite cubic-bezier(0.19, 1, 0.22, 1);
}

@keyframes button-shimmer {
    0% { left: -60%; }
    25%, 100% { left: 140%; }
}

/* ==========================================================================
   NAVBAR
   ========================================================================== */

.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(6, 6, 13, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: background-color var(--transition-fast), border-color var(--transition-fast);
}

.navbar.scrolled {
    background: rgba(6, 6, 13, 0.92);
    border-bottom-color: rgba(38, 230, 255, 0.18);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
}

.header-logo-image {
    height: 38px;
    width: auto;
    object-fit: contain;
    transition: transform var(--transition-fast);
}

.brand-header-logo:hover .header-logo-image {
    transform: scale(1.04);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    color: var(--text-secondary);
    font-size: 0.93rem;
    font-weight: 500;
    position: relative;
    padding: 6px 0;
}

.nav-links a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--cyan), var(--pink));
    border-radius: 2px;
    transition: width var(--transition-normal);
}

.nav-links a:hover {
    color: var(--text-primary);
}

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

.menu-button {
    display: none;
    color: var(--text-primary);
    padding: 8px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.05);
}

/* Nav Actions & Login Button */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-login-btn {
    padding: 11px 20px;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-light);
    backdrop-filter: blur(12px);
    transition: all var(--transition-fast);
}

.nav-login-btn:hover {
    background: rgba(38, 230, 255, 0.08);
    border-color: var(--cyan);
    color: var(--cyan);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(38, 230, 255, 0.25);
}

.nav-login-btn .icon {
    width: 18px;
    height: 18px;
    transition: transform var(--transition-fast);
}

.nav-login-btn:hover .icon {
    transform: scale(1.1);
}

.nav-login-btn.logged-in {
    border-color: rgba(93, 255, 171, 0.4);
    background: rgba(93, 255, 171, 0.08);
    color: var(--green);
}

.nav-login-btn.logged-in:hover {
    border-color: var(--green);
    box-shadow: 0 4px 20px rgba(93, 255, 171, 0.3);
    color: #ffffff;
}

.nav-login-user-avatar {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    object-fit: cover;
    border: 1.5px solid var(--green);
}

.nav-link-mobile-login {
    display: none;
    align-items: center;
    gap: 10px;
    padding: 12px 18px !important;
    background: rgba(38, 230, 255, 0.06);
    border: 1px solid rgba(38, 230, 255, 0.2);
    border-radius: var(--radius-pill);
    color: var(--cyan) !important;
    font-weight: 600;
    width: 100%;
    justify-content: center;
    margin-top: 6px;
    transition: all var(--transition-fast);
}

.nav-link-mobile-login:hover {
    background: rgba(38, 230, 255, 0.12);
    border-color: var(--cyan);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.hero {
    position: relative;
    padding: 70px 0 80px 0;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 7px 16px;
    border-radius: var(--radius-pill);
    background: rgba(38, 230, 255, 0.08);
    border: 1px solid rgba(38, 230, 255, 0.25);
    color: var(--cyan);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
    backdrop-filter: blur(8px);
}

.hero-badge-pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--cyan);
    box-shadow: 0 0 10px var(--cyan);
    animation: badge-pulse 2s infinite;
}

@keyframes badge-pulse {
    0% { transform: scale(0.95); opacity: 0.7; }
    50% { transform: scale(1.3); opacity: 1; box-shadow: 0 0 16px var(--cyan); }
    100% { transform: scale(0.95); opacity: 0.7; }
}

.hero-description {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 540px;
    margin-bottom: 36px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 42px;
}

.hero-info {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.hero-info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.info-icon-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(93, 255, 171, 0.15);
    color: var(--green);
}

.info-icon-badge .icon {
    width: 14px;
    height: 14px;
}

/* ==========================================================================
   3D HERO PHONE STAGE & FLOATING BADGES
   ========================================================================== */

.phone-stage-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 55px;
}

.phone-glow-effect {
    position: absolute;
    width: 320px;
    height: 480px;
    background: radial-gradient(circle, rgba(255, 45, 164, 0.28) 0%, rgba(38, 230, 255, 0.22) 50%, transparent 80%);
    filter: blur(60px);
    z-index: 0;
    pointer-events: none;
}

.phone-stage {
    position: relative;
    z-index: 1;
}

/* Smartphone Device Mockup */
.smartphone-device {
    position: relative;
    width: 310px;
    margin: 0 auto;
}

.smartphone-frame {
    position: relative;
    padding: 10px;
    border-radius: 46px;
    background: linear-gradient(145deg, #2c2c42 0%, #151528 50%, #0a0a18 100%);
    border: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow:
        0 25px 65px rgba(0, 0, 0, 0.85),
        0 0 45px rgba(38, 230, 255, 0.25),
        0 0 65px rgba(255, 45, 164, 0.2),
        inset 0 0 0 2px rgba(255, 255, 255, 0.08),
        inset 0 0 12px rgba(0, 0, 0, 0.9);
}

/* Side Buttons */
.smartphone-frame::before {
    content: '';
    position: absolute;
    left: -4px;
    top: 110px;
    width: 4px;
    height: 48px;
    background: linear-gradient(to bottom, #3a3a55, #1e1e30);
    border-radius: 3px 0 0 3px;
    box-shadow: -1px 0 2px rgba(0, 0, 0, 0.5);
}

.smartphone-frame::after {
    content: '';
    position: absolute;
    right: -4px;
    top: 95px;
    width: 4px;
    height: 72px;
    background: linear-gradient(to bottom, #3a3a55, #1e1e30);
    border-radius: 0 3px 3px 0;
    box-shadow: 1px 0 2px rgba(0, 0, 0, 0.5);
}

/* Top Island / Camera Punch */
.smartphone-island {
    position: absolute;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: 82px;
    height: 18px;
    background: #000000;
    border-radius: 12px;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 12px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.8);
}

.camera-lens {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #0d1224;
    box-shadow: inset 0 0 3px #26e6ff, 0 0 2px rgba(38, 230, 255, 0.6);
}

/* Screen Display */
.smartphone-screen {
    position: relative;
    border-radius: 36px;
    overflow: hidden;
    background: #080816;
    line-height: 0;
}

.smartphone-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Screen Glass Glare */
.smartphone-glare {
    position: absolute;
    inset: 0;
    border-radius: 36px;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.15) 0%,
        rgba(255, 255, 255, 0.02) 38%,
        transparent 65%
    );
    pointer-events: none;
    z-index: 9;
}

/* Bottom Gesture Bar */
.smartphone-home-bar {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: rgba(255, 255, 255, 0.55);
    border-radius: 4px;
    z-index: 10;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.7);
}

/* Floating Glass Badges */
.floating-card {
    position: absolute;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 18px;
    border-radius: var(--radius-md);
    background: rgba(16, 16, 32, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-light);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.6), 0 0 20px rgba(255, 255, 255, 0.05);
    animation: float 6s ease-in-out infinite;
    pointer-events: none;
}

.floating-one {
    top: 25px;
    left: -175px;
    animation-delay: 0s;
}

.floating-two {
    bottom: 140px;
    left: -175px;
    animation-delay: 1.5s;
}

.floating-three {
    top: 135px;
    right: -175px;
    animation-delay: 3s;
}

.floating-four {
    bottom: 25px;
    right: -180px;
    animation-delay: 4.5s;
}

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

.floating-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    flex-shrink: 0;
}

.floating-icon .icon {
    width: 22px;
    height: 22px;
    stroke-width: 1.5;
}

.floating-pink {
    background: var(--pink-subtle);
    color: var(--pink);
    border: 1px solid rgba(255, 45, 164, 0.3);
}

.floating-cyan {
    background: var(--cyan-subtle);
    color: var(--cyan);
    border: 1px solid rgba(38, 230, 255, 0.3);
}

.floating-purple {
    background: var(--purple-subtle);
    color: var(--purple);
    border: 1px solid rgba(143, 69, 255, 0.3);
}

.floating-green {
    background: var(--green-subtle);
    color: var(--green);
    border: 1px solid rgba(93, 255, 171, 0.3);
}

.badge-title {
    display: block;
    font-size: 0.86rem;
    color: var(--text-primary);
}

.badge-subtitle {
    display: block;
    font-size: 0.78rem;
    color: var(--text-muted);
}

.highlight-cyan {
    color: var(--cyan);
    font-weight: 700;
}

.highlight-pink {
    color: var(--pink);
    font-weight: 700;
}

.highlight-purple {
    color: var(--purple);
    font-weight: 700;
}

/* ==========================================================================
   PLATFORMS MARQUEE SECTION
   ========================================================================== */

.platforms-marquee-section {
    position: relative;
    padding: 30px 0 50px 0;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    background: rgba(10, 10, 20, 0.4);
}

.marquee-label {
    text-align: center;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--text-muted);
    margin-bottom: 18px;
    font-family: var(--font-display);
    font-weight: 600;
}

.marquee-track-wrapper {
    display: flex;
    overflow: hidden;
    user-select: none;
    mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
}

.marquee-track {
    display: flex;
    gap: 16px;
    white-space: nowrap;
    animation: marquee 30s linear infinite;
    will-change: transform;
}


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

.platform-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: var(--radius-pill);
    background: rgba(22, 22, 44, 0.6);
    border: 1px solid var(--border);
    color: var(--text-secondary);
    font-size: 0.86rem;
    font-weight: 600;
    font-family: var(--font-display);
    transition: all var(--transition-fast);
}

.platform-tag:hover {
    background: rgba(35, 35, 70, 0.85);
    border-color: var(--cyan);
    color: #ffffff;
    transform: none;
    box-shadow: 0 0 16px rgba(38, 230, 255, 0.35);
}

.tag-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.tag-dot.cyan { background: var(--cyan); box-shadow: 0 0 8px var(--cyan); }
.tag-dot.pink { background: var(--pink); box-shadow: 0 0 8px var(--pink); }
.tag-dot.purple { background: var(--purple); box-shadow: 0 0 8px var(--purple); }
.tag-dot.green { background: var(--green); box-shadow: 0 0 8px var(--green); }

/* ==========================================================================
   COLLECTOR VHS BOX ART CAROUSEL SHOWCASE
   ========================================================================== */

.showcase-carousel {
    position: relative;
}

.collector-carousel-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 880px;
    width: 100%;
    margin: 0 auto;
}

/* Premium Collector Showcase Stage */
.collector-stage {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 840px;
}

.collector-glow {
    position: absolute;
    top: 15%;
    left: 50%;
    transform: translateX(-50%);
    width: 500px;
    max-width: 95%;
    height: 420px;
    background: radial-gradient(circle, rgba(143, 69, 255, 0.35) 0%, rgba(38, 230, 255, 0.22) 45%, rgba(255, 45, 164, 0.18) 70%, transparent 80%);
    filter: blur(50px);
    z-index: 0;
    pointer-events: none;
}

/* Carousel Track & Slides */
.app-carousel {
    width: 100%;
    position: relative;
    z-index: 1;
}

.carousel-viewport {
    width: 100%;
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.carousel-track {
    display: flex;
    transition: transform var(--transition-normal);
    will-change: transform;
}

.carousel-slide {
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    min-height: 480px;
}

.carousel-img {
    max-width: 100%;
    max-height: 520px;
    width: auto;
    height: auto;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.6));
    transition: transform var(--transition-normal);
}

.carousel-img.carousel-img-landscape {
    max-width: 100%;
    max-height: 480px;
    width: auto;
}

.carousel-img:hover {
    transform: scale(1.02);
}

/* Controls Bar */
.carousel-controls-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 32px;
}

.carousel-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(22, 22, 44, 0.8);
    border: 1px solid var(--border-light);
    color: var(--text-primary);
    backdrop-filter: blur(12px);
    transition: all var(--transition-fast);
}

.carousel-arrow:hover {
    background: var(--pink);
    border-color: var(--pink);
    color: #ffffff;
    transform: scale(1.08);
    box-shadow: 0 0 20px var(--pink-glow);
}

.carousel-dots {
    display: flex;
    align-items: center;
    gap: 10px;
}

.carousel-dot {
    width: 32px;
    height: 6px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.15);
    transition: all var(--transition-fast);
    padding: 0;
    overflow: hidden;
}

.carousel-dot.active {
    width: 48px;
    background: linear-gradient(90deg, var(--cyan), var(--pink));
    box-shadow: 0 0 12px var(--cyan-glow);
}

/* Carousel Dynamic Caption */
.carousel-caption {
    margin-top: 20px;
    text-align: center;
}

.caption-badge {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--cyan);
    font-family: var(--font-display);
    font-weight: 600;
}

.caption-title {
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-top: 4px;
}

/* ==========================================================================
   FEATURES SECTION & MOUSE SPOTLIGHT CARDS
   ========================================================================== */

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.spotlight-card {
    position: relative;
    background: var(--background-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    overflow: hidden;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: transform var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
}

/* Dynamic Cursor Glow Layer */
.spotlight-layer {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-fast);
    background: radial-gradient(
        500px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
        rgba(38, 230, 255, 0.12),
        transparent 50%
    );
}

.spotlight-card:hover .spotlight-layer {
    opacity: 1;
}

.spotlight-card:hover {
    transform: translateY(-5px);
    border-color: rgba(38, 230, 255, 0.35);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.5), 0 0 25px rgba(38, 230, 255, 0.15);
}

.feature-pink:hover {
    border-color: rgba(255, 45, 164, 0.4);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.5), 0 0 25px rgba(255, 45, 164, 0.15);
}

.feature-purple:hover {
    border-color: rgba(143, 69, 255, 0.4);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.5), 0 0 25px rgba(143, 69, 255, 0.15);
}

.feature-icon-wrapper {
    margin-bottom: 22px;
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    transition: transform var(--transition-fast);
}

.spotlight-card:hover .feature-icon {
    transform: scale(1.08);
}

.feature-pink .feature-icon {
    background: var(--pink-subtle);
    color: var(--pink);
    border: 1px solid rgba(255, 45, 164, 0.3);
    box-shadow: 0 0 20px rgba(255, 45, 164, 0.2);
}

.feature-cyan .feature-icon {
    background: var(--cyan-subtle);
    color: var(--cyan);
    border: 1px solid rgba(38, 230, 255, 0.3);
    box-shadow: 0 0 20px rgba(38, 230, 255, 0.2);
}

.feature-purple .feature-icon {
    background: var(--purple-subtle);
    color: var(--purple);
    border: 1px solid rgba(143, 69, 255, 0.3);
    box-shadow: 0 0 20px rgba(143, 69, 255, 0.2);
}

.feature-card h3 {
    color: var(--text-primary);
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.94rem;
    line-height: 1.6;
}

.card-glow-line {
    position: absolute;
    bottom: 0;
    left: 20%;
    right: 20%;
    height: 2px;
    border-radius: 2px;
    opacity: 0;
    transition: opacity var(--transition-fast), transform var(--transition-fast);
    transform: scaleX(0.5);
}

.card-glow-line.pink { background: linear-gradient(90deg, transparent, var(--pink), transparent); }
.card-glow-line.cyan { background: linear-gradient(90deg, transparent, var(--cyan), transparent); }
.card-glow-line.purple { background: linear-gradient(90deg, transparent, var(--purple), transparent); }
.card-glow-line.green { background: linear-gradient(90deg, transparent, var(--green), transparent); }

.spotlight-card:hover .card-glow-line {
    opacity: 1;
    transform: scaleX(1);
}

/* ==========================================================================
   ROADMAP SECTION
   ========================================================================== */

.roadmap-section {
    position: relative;
}

.roadmap-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.roadmap-card {
    position: relative;
    background: rgba(14, 14, 28, 0.85);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: transform var(--transition-normal), border-color var(--transition-normal), box-shadow var(--transition-normal);
}

.roadmap-card:hover {
    transform: translateY(-6px);
}

/* Header & Status Badges */
.roadmap-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 20px;
}

.roadmap-phase-label {
    font-family: var(--font-display);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    text-transform: uppercase;
}

.roadmap-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    font-family: var(--font-display);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.04em;
}

/* Badge variants */
.badge-deployed {
    background: rgba(93, 255, 171, 0.12);
    color: var(--green);
    border: 1px solid rgba(93, 255, 171, 0.35);
    box-shadow: 0 0 15px rgba(93, 255, 171, 0.15);
}

.badge-deployed .badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 8px var(--green);
}

.badge-current {
    background: rgba(255, 45, 164, 0.15);
    color: var(--pink);
    border: 1px solid rgba(255, 45, 164, 0.4);
    box-shadow: 0 0 18px rgba(255, 45, 164, 0.25);
}

.badge-pulse-glow {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--pink);
    box-shadow: 0 0 10px var(--pink);
    animation: badge-pulse 1.8s infinite;
}

.badge-upcoming {
    background: rgba(143, 69, 255, 0.15);
    color: var(--purple);
    border: 1px solid rgba(143, 69, 255, 0.4);
    box-shadow: 0 0 16px rgba(143, 69, 255, 0.2);
}

.badge-upcoming .badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--purple);
    box-shadow: 0 0 8px var(--purple);
}

.badge-future {
    background: rgba(38, 230, 255, 0.12);
    color: var(--cyan);
    border: 1px solid rgba(38, 230, 255, 0.35);
    box-shadow: 0 0 15px rgba(38, 230, 255, 0.15);
}

.badge-future .badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--cyan);
    box-shadow: 0 0 8px var(--cyan);
}

/* Card Content */
.roadmap-title {
    font-size: 1.35rem;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.roadmap-desc {
    font-size: 0.94rem;
    color: var(--text-secondary);
    line-height: 1.55;
    margin-bottom: 24px;
}

/* Roadmap feature list */
.roadmap-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.roadmap-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.93rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.roadmap-item span:last-child {
    flex: 1;
}

.roadmap-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
}

.roadmap-item.done .roadmap-icon {
    background: rgba(93, 255, 171, 0.18);
    color: var(--green);
    border: 1px solid rgba(93, 255, 171, 0.4);
}

.roadmap-item.in-progress .roadmap-icon {
    background: rgba(255, 45, 164, 0.18);
    color: var(--pink);
    border: 1px solid rgba(255, 45, 164, 0.4);
}

.roadmap-item.planned .roadmap-icon {
    background: rgba(143, 69, 255, 0.18);
    color: var(--purple);
    border: 1px solid rgba(143, 69, 255, 0.4);
}

.roadmap-item.future .roadmap-icon {
    background: rgba(38, 230, 255, 0.18);
    color: var(--cyan);
    border: 1px solid rgba(38, 230, 255, 0.4);
}

/* Active Highlight on Roadmap Cards */
.phase-deployed {
    border-color: rgba(93, 255, 171, 0.35);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 0 25px rgba(93, 255, 171, 0.12);
}

.phase-current {
    border-color: rgba(255, 45, 164, 0.35);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 0 25px rgba(255, 45, 164, 0.12);
}

.phase-deployed:hover {
    border-color: rgba(93, 255, 171, 0.55);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.6), 0 0 30px rgba(93, 255, 171, 0.25);
}

.phase-current:hover {
    border-color: rgba(255, 45, 164, 0.5);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.6), 0 0 30px rgba(255, 45, 164, 0.25);
}

.phase-upcoming:hover {
    border-color: rgba(143, 69, 255, 0.4);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.6), 0 0 25px rgba(143, 69, 255, 0.2);
}

.phase-future:hover {
    border-color: rgba(38, 230, 255, 0.4);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.6), 0 0 25px rgba(38, 230, 255, 0.2);
}

/* ==========================================================================
   HOW IT WORKS (STEPS)
   ========================================================================== */

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 56px;
    position: relative;
}

.step-card {
    position: relative;
    background: var(--background-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    backdrop-filter: blur(16px);
    transition: transform var(--transition-fast), border-color var(--transition-fast);
}

.step-card:hover {
    transform: translateY(-4px);
    border-color: rgba(38, 230, 255, 0.4);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(38, 230, 255, 0.15);
}

.step-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--cyan-subtle), var(--pink-subtle));
    border: 1px solid var(--border-light);
    color: var(--cyan);
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.step-card h3 {
    color: var(--text-primary);
    margin-bottom: 12px;
}

.step-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.step-arrow {
    position: absolute;
    top: 50%;
    right: -28px;
    transform: translate(50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    color: var(--cyan);
    font-size: 2rem;
    z-index: 5;
    pointer-events: none;
    filter: drop-shadow(0 0 10px rgba(38, 230, 255, 0.6));
}

.step-arrow svg {
    width: 32px;
    height: 32px;
    stroke: var(--cyan);
}

/* ==========================================================================
   FAQ ACCORDION SECTION
   ========================================================================== */

.faq-section {
    position: relative;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--background-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    backdrop-filter: blur(16px);
    transition: transform var(--transition-normal), border-color var(--transition-normal), box-shadow var(--transition-normal), background var(--transition-normal);
    will-change: transform, box-shadow;
}

.faq-item:hover {
    transform: scale(1.02);
    border-color: rgba(41, 151, 255, 0.45);
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.55), 0 0 24px rgba(41, 151, 255, 0.22);
    position: relative;
    z-index: 2;
}

.faq-item.active {
    border-color: rgba(41, 151, 255, 0.4);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4), 0 0 15px rgba(41, 151, 255, 0.15);
}

.faq-item.active:hover {
    transform: scale(1.02);
    border-color: rgba(41, 151, 255, 0.6);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.6), 0 0 25px rgba(41, 151, 255, 0.28);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 28px;
    text-align: left;
    color: var(--text-primary);
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    gap: 16px;
    cursor: pointer;
    transition: color var(--transition-fast), text-shadow var(--transition-fast);
}

.faq-item:hover .faq-question {
    color: #ffffff;
    text-shadow: 0 0 12px rgba(41, 151, 255, 0.55), 0 0 22px rgba(41, 151, 255, 0.25);
}

.faq-icon {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    stroke-width: 2.5;
    fill: none;
    transition: transform var(--transition-normal), color var(--transition-fast), filter var(--transition-fast);
    flex-shrink: 0;
    color: var(--text-muted);
}

.faq-item:hover .faq-icon {
    color: var(--gradient-blue);
    filter: drop-shadow(0 0 8px rgba(41, 151, 255, 0.6));
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: var(--gradient-blue);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
    opacity: 0;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    opacity: 1;
}

.faq-answer p {
    padding: 0 28px 24px 28px;
    color: var(--text-secondary);
    font-size: 0.96rem;
    line-height: 1.65;
}

/* ==========================================================================
   CTA DOWNLOAD SECTION
   ========================================================================== */

.cta-section {
    position: relative;
    padding: 90px 0 120px 0;
}

.cta-card {
    position: relative;
    border-radius: var(--radius-xl);
    padding: 70px 40px;
    text-align: center;
    background: linear-gradient(135deg, rgba(20, 20, 42, 0.9) 0%, rgba(10, 10, 25, 0.95) 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
}

.cta-glow-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 30%, rgba(255, 45, 164, 0.22) 0%, rgba(38, 230, 255, 0.15) 45%, transparent 75%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 640px;
    margin: 0 auto;
}

.cta-content p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 36px;
}

.cta-content .hero-actions {
    justify-content: center;
    margin-bottom: 0;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

footer {
    border-top: 1px solid var(--border);
    background: rgba(6, 6, 12, 0.95);
    padding: 60px 0 40px 0;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-brand-block {
    max-width: 360px;
}

.header-brand-image {
    height: 36px;
    width: auto;
    margin-bottom: 16px;
}

.footer-tagline {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 16px;
    line-height: 1.5;
}

.footer-text {
    font-size: 0.82rem;
    color: var(--text-dim);
}

.footer-links-block {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-end;
}

.footer-nav {
    display: flex;
    gap: 28px;
}

.footer-nav a {
    font-size: 0.88rem;
    color: var(--text-muted);
}

.footer-nav a:hover {
    color: var(--cyan);
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.social-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    transition: all var(--transition-fast);
}

.social-button img {
    width: 20px;
    height: 20px;
    filter: brightness(0.85);
    transition: filter var(--transition-fast);
}

.social-button img[src*="x-logo"] {
    width: 24px;
    height: 24px;
}

.social-button:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--cyan);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(38, 230, 255, 0.25);
}

.social-button:hover img {
    filter: brightness(1.2);
}

/* ==========================================================================
   SCROLL REVEAL ANIMATIONS
   ========================================================================== */

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   RESPONSIVE DESIGN (TABLET & MOBILE)
   ========================================================================== */

@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .phone-stage-wrapper {
        margin-left: 0;
        margin-top: 20px;
    }

    .phone-stage {
        transform: scale(0.92);
        transform-origin: center center;
    }

    .floating-one {
        left: -140px;
    }

    .floating-two {
        left: -140px;
    }

    .floating-three {
        right: -140px;
    }

    .floating-four {
        right: -140px;
    }

    .hero-copy {
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-info {
        justify-content: center;
    }

    .showcase-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .step-arrow {
        display: none;
    }

    /* Carousel adjustments for tablet */
    .carousel-slide {
        min-height: 420px;
        padding: 10px 14px;
    }

    .carousel-img {
        max-height: 420px;
    }

    .carousel-img.carousel-img-landscape {
        max-height: 320px;
    }
}

@media (max-width: 768px) {
    .navbar {
        height: 68px;
    }

    .nav-links {
        position: fixed;
        top: 68px;
        left: 0;
        right: 0;
        background: rgba(6, 6, 13, 0.98);
        backdrop-filter: blur(24px);
        border-bottom: 1px solid var(--border);
        flex-direction: column;
        padding: 30px 20px;
        gap: 20px;
        transform: translateY(-120%);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
    }

    .nav-links.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .menu-button {
        display: block;
    }

    .nav-actions {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .nav-login-btn {
        padding: 8px 14px;
        font-size: 0.85rem;
    }

    .nav-cta {
        display: none;
    }

    .nav-link-mobile-login {
        display: inline-flex;
    }

    .features-grid,
    .roadmap-grid,
    .steps-grid {
        grid-template-columns: 1fr;
    }

    /* Hero Phone on mobile: Masquer le smartphone en haut de page uniquement sur mobile */
    .phone-stage-wrapper {
        display: none !important;
    }

    /* Masquer les 4 encadrés uniquement sur smartphone */
    .floating-card {
        display: none !important;
    }

    .floating-icon svg {
        width: 16px;
        height: 16px;
    }

    /* Carousel adjustments for mobile */
    .collector-stage {
        padding: 0 4px;
    }

    .carousel-slide {
        min-height: 340px;
        padding: 8px;
    }

    .carousel-img {
        max-height: 350px;
    }

    .carousel-img.carousel-img-landscape {
        max-height: 220px;
    }

    .collector-glow {
        width: 100%;
        height: 260px;
    }

    .cta-card {
        padding: 45px 20px;
    }

    .footer-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-links-block {
        align-items: center;
    }

    .footer-nav {
        flex-direction: column;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .text-nowrap {
        white-space: normal;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .hero-actions .button {
        width: 100%;
        justify-content: center;
    }

    .hero-info {
        flex-wrap: wrap;
        gap: 10px;
    }

    .carousel-slide {
        min-height: 280px;
        padding: 6px;
    }

    .carousel-img {
        max-height: 300px;
    }

    .carousel-img.carousel-img-landscape {
        max-height: 180px;
    }

    .carousel-controls-bar {
        gap: 12px;
    }

    .carousel-arrow {
        width: 40px;
        height: 40px;
    }
}
