@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500&family=Outfit:wght@300;400;600;700&display=swap');

:root {
    --bg-main: #0a0a0a;
    --bg-light: #111111;
    --bg-glass: rgba(255, 255, 255, 0.03);

    --text-primary: #f0f0f0;
    --text-secondary: #a0a0a0;
    --gold: #D4AF37;
    --gold-dim: rgba(212, 175, 55, 0.6);

    --font-display: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    --ease: cubic-bezier(0.23, 1, 0.32, 1);
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background: var(--bg-main);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.container-sm {
    max-width: 800px;
    margin: 0 auto;
}

.section-pad {
    padding: 6rem 0;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-gold {
    color: var(--gold);
}

.text-muted {
    color: var(--text-secondary);
}

.text-xs {
    font-size: 0.8rem;
}

.margin-top-sm {
    margin-top: 1rem;
}

.margin-top-md {
    margin-top: 2rem;
}

.margin-top-lg {
    margin-top: 4rem;
}

.margin-top-xl {
    margin-top: 6rem;
}

/* Typography */
h1,
h2,
h3,
h4,
h5 {
    font-family: var(--font-display);
    line-height: 1.1;
    font-weight: 400;
}

.hero-display {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    letter-spacing: -0.03em;
}

.section-title {
    font-size: clamp(2rem, 3vw, 3rem);
    letter-spacing: -0.02em;
}

.hero-tag {
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
    padding-left: 2px;
}

.authority-badges {
    display: flex;
    flex-wrap: nowrap;
    /* Force single line on desktop */
    justify-content: flex-start;
    gap: 1rem;
    font-size: 0.9rem;
    color: var(--text-primary);
    font-weight: 500;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .authority-badges {
        justify-content: center;
        gap: 0.5rem;
    }

    .badge-item {
        font-size: 0.75rem;
        padding: 0.3rem 0.6rem;
    }
}

/* Utilities */
.mobile-break {
    display: none;
}

.desktop-break {
    display: block;
}

@media (max-width: 768px) {
    .mobile-break {
        display: block;
    }

    .desktop-break {
        display: none;
    }

    .mobile-only {
        display: block;
    }

    .desktop-only {
        display: none !important;
    }
}

.mobile-only {
    display: none;
}

.hero-timer-mobile {
    display: none;
}

.desktop-only {
    display: block;
}

/* For flex containers that need desktop-only */
.desktop-only-flex {
    display: flex;
}

@media (max-width: 768px) {
    .desktop-only-flex {
        display: none !important;
    }
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    padding: 1.5rem 0;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    transition: transform 0.3s;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 32px;
    width: auto;
    opacity: 0.9;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 100px;
    font-family: var(--font-display);
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.btn-sm {
    padding: 0.6rem 1.5rem;
    font-size: 0.8rem;
    border: 1px solid var(--gold);
    color: var(--gold);
}

.btn-sm:hover {
    background: var(--gold);
    color: #000;
}

.btn-primary {
    background: var(--gold);
    color: #000;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.15);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.25);
    background: #e5c55d;
}

.btn-lg {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
}

/* Hero Grid System */
/* Hero Grid System */
.hero {
    min-height: 100vh;
    position: relative;
    padding-top: 6rem;
    /* Lift everything up (reduced from 8rem) */
    display: flex;
    align-items: center;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
        "title image"
        "content image";
    gap: 3rem;
    /* Tighter gap */
    align-items: center;
    width: 100%;
}

.hero-display {
    font-family: var(--font-display);
    font-size: 2.5rem;
    /* Slightly larger to balance */
    line-height: 1.1;
    margin-bottom: 2rem;
    color: var(--light);
}

.hero-lead.desktop-only {
    margin-bottom: 3rem;
    /* Further increased space between H2 and Button */
}

.hero-title-area {
    grid-area: title;
    margin-top: 5rem;
    /* Pushed H1 down significantly */
}

.hero-image-area {
    grid-area: image;
    position: relative;
}

.hero-content-area {
    grid-area: content;
    align-self: start;
    margin-top: -6rem;
    /* Lifted content up closer to H1 */
}

/* Hero Subtitle Area - for mobile H2 positioning */
.hero-subtitle-area {
    grid-area: subtitle;
    text-align: center;
    display: none;
}

@media (max-width: 768px) {
    .hero-subtitle-area {
        display: block;
    }
}

.hero-img-container {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    /* Desktop: Restored full height */
    height: auto;
    min-height: 75vh;
    max-height: 850px;
    width: 90%;
    margin: 0 auto;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 1.5s var(--ease);
}

.hero-img-container:hover .hero-img {
    transform: scale(1.03);
}

/* Progress */
.progress-wrap {
    margin-top: 3rem;
    max-width: 300px;
}

.progress-bar-bg {
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    width: 100%;
    border-radius: 4px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    background: var(--gold);
    width: 31%;
}

.progress-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 0.8rem;
}

/* Mobile Flow */
@media (max-width: 768px) {
    .hero {
        padding-top: 5rem;
        align-items: flex-start;
        height: auto;
        min-height: auto;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        grid-template-areas:
            "title"
            "subtitle"
            "image"
            "stickycta"
            "content";
        gap: 0.5rem; /* Minimal spacing on mobile */
    }

    .mobile-sticky-cta {
        grid-area: stickycta;
    }

    .hero-img-container {
        /* Mobile: Show only top 85% of image (cut bottom 15%) */
        height: 340px;
        width: 100%;
        margin-left: -1.5rem;
        width: calc(100% + 3rem);
        border-radius: 0;
        overflow: hidden;
    }

    .hero-img {
        /* Focus on faces - image is taller than container, bottom gets cut */
        object-position: top center;
        height: 400px;
        min-height: 400px;
    }

    .hero-image-area {
        margin-bottom: -2.5rem; /* Pull elements up much closer to image */
    }

    .hero-content-area {
        margin-top: -1rem !important; /* Pull content up */
        padding-top: 0;
    }

    .mobile-sticky-cta {
        margin-top: -1rem;
        margin-bottom: -0.5rem;
    }

    .hero-content-area .authority-badges {
        margin-bottom: 0;
        padding-bottom: 0.5rem;
    }

    .hero-content-area .progress-wrap {
        margin-top: 0.75rem !important;
        margin-bottom: 0.5rem !important;
    }

    .hero-timer-mobile {
        display: block !important;
        margin-bottom: 0.75rem;
    }

    .hero-display {
        font-size: 1.75rem;
        /* Reduced from 2.5rem+ */
        text-align: center;
        line-height: 1.2;
    }

    .hero-tag {
        text-align: center;
        display: block;
        margin-bottom: 0.5rem;
    }

    .hero-content-area {
        text-align: center;
        margin-top: -1rem;
        /* Pull content up */
    }

    .progress-wrap {
        margin: 1.5rem auto;
    }
}

/* Pain Cards */
/* Testimonial Images */
.carousel-frame {
    overflow: hidden;
    margin-top: 4rem;
    position: relative;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.carousel-track {
    display: flex;
    gap: 2rem;
    width: max-content;
    animation: scroll 40s linear infinite;
}

.carousel-item {
    flex: 0 0 300px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.carousel-img {
    width: 100%;
    height: auto;
    display: block;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.pain-card {
    padding: 2rem;
    background: var(--bg-light);
    border: 1px solid rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    transition: transform 0.3s;
}

.pain-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.05);
}

.icon-x {
    font-size: 1.5rem;
    color: #cc4444;
    display: block;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.pain-highlight {
    background: linear-gradient(to right, rgba(212, 175, 55, 0.05), transparent);
    border-left: 2px solid var(--gold);
    padding: 2rem;
    margin-top: 4rem;
}

/* Solution */
.bg-subtle {
    background: linear-gradient(to bottom, var(--bg-main), #0e0e0e);
}

.comparison-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding: 3rem;
    background: var(--bg-light);
    border-radius: 24px;
}

.compare-title {
    margin-bottom: 2rem;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
}

.text-red {
    color: #cc4444;
}

.text-green {
    color: #44cc88;
}

.compare-col ul li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    color: var(--text-secondary);
}

.compare-col.good ul li {
    color: var(--text-primary);
    font-weight: 500;
}

.icon-list {
    margin-right: 1rem;
    filter: grayscale(1);
    opacity: 0.7;
}

@media (max-width: 768px) {
    .comparison-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 1.5rem;
    }
}

/* Offer Cards */
.offer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.offer-card {
    background: var(--bg-light);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--bg-glass);
}

.card-header {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.1em;
}

.card-body {
    padding: 2rem;
}

.clean-list li {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--bg-glass);
    line-height: 1.4;
}

.clean-list li:last-child {
    border: none;
    margin: 0;
    padding: 0;
}

.clean-list strong {
    color: var(--text-primary);
    display: block;
    margin-bottom: 0.25rem;
    font-family: var(--font-display);
}

@media (max-width: 768px) {
    .offer-grid {
        grid-template-columns: 1fr;
    }
}

/* Bonuses */
.bonus-wrapper {
    border: 1px solid var(--gold-dim);
    padding: 3rem;
    border-radius: 24px;
    position: relative;
}

.bonus-title {
    text-align: center;
    margin-bottom: 3rem;
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.bonus-item h5 {
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.bonus-item p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

@media (max-width: 768px) {
    .bonus-grid {
        grid-template-columns: 1fr;
    }
}

/* Price */
.bg-highlight {
    background: radial-gradient(circle at center, #151515 0%, var(--bg-main) 70%);
}

.price-box {
    padding: 4rem 2rem;
}

.price-old {
    text-decoration: line-through;
    opacity: 0.5;
    font-size: 1.25rem;
}

.price-big {
    font-size: clamp(4rem, 10vw, 8rem);
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin: 1rem 0;
}

/* --- Timer Box Styles --- */
.timer-box-container {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    /* CRITICAL: Prevent wrapping */
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    /* Reduce gap for mobile */
    width: 100%;
}

.timer-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.timer-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--gold);
    color: var(--gold);
    font-family: monospace;
    font-size: 1.5rem;
    font-weight: bold;
    padding: 0.5rem;
    border-radius: 8px;
    min-width: 50px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Mobile Tweaks for Timer */
@media (max-width: 480px) {
    .timer-box {
        font-size: 1.1rem;
        padding: 0.25rem;
        min-width: 40px;
    }
}

.timer-label {
    font-size: 0.5rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.timer-sep {
    font-size: 1.5rem;
    color: var(--gold);
    font-weight: bold;
    margin-bottom: 0.8rem;
    /* Align with box center */
}

.header-left {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.header-date {
    margin-left: 10px;
    /* Nudge right for visual balance */
}

/* Bio */
.bio-layout {
    display: grid;
    grid-template-columns: 4fr 5fr;
    gap: 5rem;
    align-items: center;
}

.bio-img {
    border-radius: 20px;
    filter: grayscale(100%);
    transition: filter 0.5s ease;
}

/* Scroll-based color transition - controlled by JS */
.bio-img.colorized {
    filter: grayscale(0%);
}

.bio-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.bio-mission {
    border-left: 2px solid var(--gold);
    padding-left: 1rem;
    color: var(--text-primary);
}

@media (max-width: 768px) {
    .bio-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* FAQ */
.faq-stack details {
    margin-bottom: 1rem;
    background: var(--bg-light);
    border-radius: 12px;
}

.faq-stack summary {
    padding: 1.5rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
}

.faq-body {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Footer */
.footer {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 4rem 0;
    margin-top: 4rem;
    opacity: 0.5;
}

/* Animation Classes */
.reveal {
    opacity: 0;
    transition: all 1s var(--ease);
}

.reveal.active {
    opacity: 1;
    transform: translate(0, 0) scale(1);
}

.fade-up {
    transform: translateY(30px);
}

.fade-up.active {
    transform: translateY(0);
}

.fade-right {
    transform: translateX(-30px);
}

.fade-right.active {
    transform: translateX(0);
}

.fade-left {
    transform: translateX(30px);
}

.fade-left.active {
    transform: translateX(0);
}

.zoom-in {
    transform: scale(0.95);
}

.zoom-in.active {
    transform: scale(1);
}

.zoom-in-slow {
    transform: scale(0.95);
    transition-duration: 1.5s;
}

.zoom-in-slow.active {
    transform: scale(1);
}

.delay-1 {
    transition-delay: 0.1s;
}

.interval-1.active {
    transition-delay: 0.1s;
}

.interval-2.active {
    transition-delay: 0.2s;
}

.interval-3.active {
    transition-delay: 0.3s;
}

/* Hero Image Fade/Vignette */
.hero-image-wrapper {
    position: relative;
    mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
}

/* Video Carousel */
.video-carousel-container {
    position: relative;
    max-width: 400px;
    /* Mobile: Width of a single short card */
    margin: 3rem auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-carousel-track-container {
    overflow: hidden;
    width: 100%;
    position: relative;
    border-radius: 16px;
}

.video-carousel-track {
    display: flex;
    gap: 1.5rem;
    padding: 0;
    margin: 0;
    list-style: none;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    flex: 0 0 100%;
    /* Mobile: Show one slide at a time */
    box-sizing: border-box;
}

.video-card {
    position: relative;
    width: 100%;
    padding-bottom: 177.77%;
    /* 9:16 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: #000;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px -5px rgba(212, 175, 55, 0.3);
}

.video-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.3s, opacity 0.3s;
    opacity: 0.9;
}

.video-card:hover .play-overlay {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 1;
}

.carousel-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--gold);
    color: var(--gold);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 10;
    flex-shrink: 0;
}

.carousel-btn:hover {
    background: var(--gold);
    color: #000;
}

.carousel-btn.prev {
    margin-right: 1rem;
}

.carousel-btn.next {
    margin-left: 1rem;
}

@media (min-width: 768px) {

    /* Desktop: Show 3 videos at a time */
    .video-carousel-container {
        max-width: 1200px;
    }

    .carousel-slide {
        flex: 0 0 calc(33.333% - 1rem);
        /* Show 3 slides, accounting for gap */
    }
}

/* Video Modal */
.video-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, .92);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
}

.video-modal.active {
    opacity: 1;
    visibility: visible;
}

.video-modal-content {
    position: relative;
    width: min(420px, 92vw);
    aspect-ratio: 9/16;
    border-radius: 16px;
    overflow: hidden;
    background: #000;
}

.video-frame,
.video-frame iframe {
    width: 100%;
    height: 100%;
    display: block;
}

.video-modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 2;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    font-size: 28px;
    line-height: 44px;
    background: rgba(255, 255, 255, .12);
    color: #fff;
}

.video-modal-close:hover {
    background: rgba(255, 255, 255, .2);
}

.unmute-btn {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    padding: 12px 24px;
    border-radius: 999px;
    border: none;
    background: var(--gold);
    color: #000;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
}

.unmute-btn:hover {
    transform: translateX(-50%) scale(1.05);
    box-shadow: 0 6px 16px rgba(212, 175, 55, 0.6);
}

.unmute-btn.hidden {
    display: none;
}

/* Modal - Fallback à prova de conflitos */
.video-modal {
    position: fixed !important;
    inset: 0 !important;
    z-index: 999999 !important;
    background: rgba(0, 0, 0, .92) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    opacity: 0 !important;
    visibility: hidden !important;
}

.video-modal.active {
    opacity: 1 !important;
    visibility: visible !important;
}

.video-modal-content {
    position: relative !important;
    z-index: 1000000 !important;
    width: min(420px, 92vw) !important;
    aspect-ratio: 9/16 !important;
    border-radius: 16px !important;
    overflow: hidden !important;
    background: #000 !important;
}

#modalIframe {
    width: 100% !important;
    height: 100% !important;
    display: block !important;
    border: 0 !important;
}

/* Shorts Strip - Premium Thumbnails */
.shorts-carousel {
    position: relative;
    width: 100%;
}

.shorts-viewport {
    overflow: hidden;
    width: 100%;
    padding: 14px 6px;
}

.shorts-track {
    display: flex;
    gap: 18px;
    will-change: transform;
}

/* Mobile: scroll horizontal nativo */
@media (max-width: 899px) {
    .shorts-viewport {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .shorts-track {
        scroll-snap-type: x mandatory;
    }
}

.short-card {
    position: relative;
    flex: 0 0 auto;
    width: min(240px, 70vw);
    aspect-ratio: 9 / 16;
    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: 18px;
    overflow: hidden;
    background: #0b0b0b;
    cursor: pointer;
    scroll-snap-align: center;
    box-shadow: 0 14px 40px rgba(0, 0, 0, .45);
    transform: translateZ(0);
}

/* DESKTOP: 3 cards por vez */
@media (min-width: 900px) {
    .short-card {
        width: calc((100% - (18px * 2)) / 3);
    }
}

.shorts-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .18);
    background: rgba(0, 0, 0, .55);
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
}

.shorts-nav:hover {
    background: rgba(0, 0, 0, .75);
    border-color: rgba(255, 255, 255, .3);
}

.shorts-nav.prev {
    left: 6px;
}

.shorts-nav.next {
    right: 6px;
}

@media (max-width: 899px) {
    .shorts-nav {
        width: 40px;
        height: 40px;
        font-size: 24px;
    }
}

.short-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(1.05) contrast(1.02);
    transform: scale(1.02);
    transition: transform .2s ease, filter .2s ease;
}

.short-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, .08) 20%, rgba(0, 0, 0, .45) 100%);
    pointer-events: none;
}

.short-play {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 54px;
    height: 54px;
    border-radius: 999px;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, .55);
    border: 1px solid rgba(255, 255, 255, .18);
    box-shadow: 0 10px 28px rgba(0, 0, 0, .45);
}

.short-play::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-40%, -50%);
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 16px solid rgba(255, 255, 255, .92);
}

.short-card:hover .short-thumb {
    transform: scale(1.06);
    filter: saturate(1.15) contrast(1.06);
}

.short-card:hover .short-play {
    background: rgba(0, 0, 0, .68);
    border-color: rgba(255, 255, 255, .25);
}

/* Mobile Sticky CTA - Reverse Sticky Behavior */
/* Starts fixed at bottom, then "parks" when reaching its natural position */
.mobile-sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.98), rgba(10, 10, 10, 0.85));
    z-index: 99;
    transition: opacity 0.3s ease;
}

/* When parked, button becomes part of the normal flow */
.mobile-sticky-cta.parked {
    position: relative;
    background: transparent;
    padding: 0;
}

@media (min-width: 769px) {
    .mobile-sticky-cta {
        display: none !important;
    }
}