/* ???????????????????????????????????????????
   FindFyre Discover — Netflix-Style Dark Theme
   ??????????????????????????????????????????? */

/* Ensure the sticky navbar always sits above all hero layers on this page */
.primary-header {
    z-index: 100 !important;
}

/* Navbar height offset — update this if the nav ever changes */
:root {
    --ff-navbar-h: 58px;
}

.disc-page {
    background: #0a0a0a;
    min-height: 100vh;
    overflow-x: hidden;
    padding-bottom: 40px;
}

/* ?? HERO SPOTLIGHT ?? */
.disc-hero {
    position: relative;
    width: 100%;
    height: 70vh;
    min-height: 400px;
    max-height: 680px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}

.disc-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    /* Deep branded background — no image file needed */
    background:
        /* Pink vignette bloom, top-left */
        radial-gradient(ellipse 80% 60% at 15% 20%, rgba(224, 84, 141, 0.38) 0%, transparent 65%),
        /* Teal accent bloom, bottom-right */
        radial-gradient(ellipse 60% 50% at 85% 80%, rgba(80, 30, 120, 0.45) 0%, transparent 60%),
        /* Subtle fine diagonal lines for texture */
        repeating-linear-gradient(
            55deg,
            transparent,
            transparent 44px,
            rgba(255, 255, 255, 0.018) 44px,
            rgba(255, 255, 255, 0.018) 46px
        ),
        repeating-linear-gradient(
            -55deg,
            transparent,
            transparent 70px,
            rgba(224, 84, 141, 0.06) 70px,
            rgba(224, 84, 141, 0.06) 72px
        ),
        /* Deep base */
        linear-gradient(160deg, #110020 0%, #1c0035 35%, #0d0018 65%, #0a0a0a 100%);
    background-size: 100% 100%, 100% 100%, 160px 160px, 160px 160px, 100% 100%;
    /* Very subtle slow drift animation */
    animation: heroBgDrift 20s ease-in-out infinite alternate;
}

@keyframes heroBgDrift {
    0%   { background-position: 0% 0%, 100% 100%, 0 0, 0 0, 0 0; }
    100% { background-position: 5% 8%, 95% 92%, 40px 40px, -30px -30px, 0 0; }
}

.disc-hero-gradient {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(
        to top,
        #0a0a0a 0%,
        rgba(10,10,10,0.85) 25%,
        rgba(10,10,10,0.4) 50%,
        rgba(10,10,10,0.15) 75%,
        rgba(10,10,10,0.3) 100%
    );
}

.disc-hero-content {
    position: relative;
    z-index: 3;
    padding: 0 5% 48px;
    max-width: 700px;
}

.disc-hero-badge {
    display: inline-block;
    background: #e0548d;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 6px 16px;
    border-radius: 3px;
    margin-bottom: 16px;
}

.disc-hero-badge i {
    margin-right: 4px;
}

.disc-hero-name {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(28px, 5vw, 48px);
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 12px;
    line-height: 1.1;
    text-shadow: 0 2px 20px rgba(0,0,0,0.6);
}

.disc-hero-bio {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    color: rgba(255,255,255,0.75);
    margin: 0 0 16px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.disc-hero-meta {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.disc-hero-meta span {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: rgba(255,255,255,0.6);
}

.disc-hero-meta i {
    margin-right: 5px;
    color: #e0548d;
}

.disc-hero-actions {
    display: flex;
    gap: 12px;
}

.disc-btn {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.25s ease;
}

.disc-btn-primary {
    background: #e0548d;
    color: #fff;
}

.disc-btn-primary:hover {
    background: #c4447a;
    color: #fff;
    transform: scale(1.03);
}

.disc-btn-secondary {
    background: rgba(255,255,255,0.15);
    color: #fff;
    backdrop-filter: blur(4px);
}

.disc-btn-secondary:hover {
    background: rgba(255,255,255,0.25);
    color: #fff;
}

/* Hero Navigation */
.disc-hero-nav {
    position: absolute;
    bottom: 24px;
    right: 5%;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 10px;
}

.disc-hero-prev,
.disc-hero-next {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,0.3);
    background: rgba(0,0,0,0.4);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 14px;
}

.disc-hero-prev:hover,
.disc-hero-next:hover {
    border-color: #e0548d;
    background: rgba(224,84,141,0.3);
}

.disc-hero-dots {
    display: flex;
    gap: 6px;
}

.disc-hero-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: all 0.25s;
}

.disc-hero-dot.active {
    background: #e0548d;
    width: 24px;
    border-radius: 4px;
}

/* ?? SHELF ROWS ?? */
.disc-shelf {
    padding: 0 5%;
    margin-top: 36px;
}

.disc-shelf {
    scroll-margin-top: calc(var(--ff-navbar-h) + 16px);
}

.disc-shelf-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.disc-shelf-title {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.disc-shelf-title i {
    color: #e0548d;
    font-size: 0.9em;
}

.disc-shelf-see-all {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    color: #e0548d;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.2s;
}

.disc-shelf-see-all:hover {
    opacity: 0.7;
    color: #e0548d;
}

/* ?? CREATOR CARDS ?? */
.disc-card {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex-shrink: 0;
    background: #1a1a1a;
}

.disc-card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(224,84,141,0.25);
    z-index: 5;
}

.disc-card a {
    text-decoration: none;
    display: block;
}

.disc-card-img {
    width: 100%;
    aspect-ratio: 2/3;
    object-fit: cover;
    display: block;
    background: #222;
}

.disc-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 50px 14px 14px;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
}

.disc-card-name {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.disc-card-age {
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    color: rgba(255,255,255,0.6);
    font-weight: 400;
}

.disc-card-location {
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    color: rgba(255,255,255,0.45);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Online dot */
.disc-card-online {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #44b700;
    border: 2px solid #0a0a0a;
    z-index: 3;
}

/* ?? TOP 10 NUMBERING ?? */
.disc-shelf-top10 .disc-card {
    position: relative;
    margin-left: 30px;
}

.disc-card-rank {
    position: absolute;
    left: -28px;
    bottom: 0;
    font-family: 'Poppins', sans-serif;
    font-size: 80px;
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 2px rgba(255,255,255,0.2);
    line-height: 0.85;
    z-index: 1;
    user-select: none;
    pointer-events: none;
}

/* ?? SLICK OVERRIDES FOR DISCOVER ?? */
.disc-shelf-row.slick-initialized .slick-slide {
    padding: 0 7px;
}

.disc-shelf-row .slick-list {
    overflow: visible;
}

.disc-shelf-row .slick-track {
    display: flex;
}

.disc-shelf-row .slick-prev,
.disc-shelf-row .slick-next {
    width: 36px;
    height: 70px;
    background: rgba(0,0,0,0.7);
    border-radius: 3px;
    z-index: 10;
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.disc-shelf-row .slick-prev:hover,
.disc-shelf-row .slick-next:hover {
    background: rgba(224,84,141,0.6);
}

.disc-shelf-row .slick-prev {
    left: -18px;
}

.disc-shelf-row .slick-next {
    right: -18px;
}

.disc-shelf-row .slick-prev:before,
.disc-shelf-row .slick-next:before {
    font-size: 18px;
    color: #fff;
    opacity: 1;
}

.disc-shelf-row .slick-dots {
    bottom: -22px;
}

.disc-shelf-row .slick-dots li button:before {
    color: rgba(255,255,255,0.4);
}

.disc-shelf-row .slick-dots li.slick-active button:before {
    color: #e0548d;
}

/* ?? EMPTY STATE ?? */
.disc-empty {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: rgba(255,255,255,0.3);
    padding: 30px 0;
    text-align: center;
}

/* ?? LOADING SKELETON ?? */
.disc-skeleton {
    display: flex;
    gap: 14px;
    overflow: hidden;
}

.disc-skeleton-card {
    flex-shrink: 0;
    width: 200px;
    border-radius: 6px;
    overflow: hidden;
    background: #1a1a1a;
}

.disc-skeleton-img {
    width: 100%;
    aspect-ratio: 2/3;
    background: linear-gradient(110deg, #1a1a1a 8%, #252525 18%, #1a1a1a 33%);
    background-size: 200% 100%;
    animation: discShimmer 1.5s linear infinite;
}

@keyframes discShimmer {
    to { background-position-x: -200%; }
}

/* ?? RESPONSIVE ?? */
@media (max-width: 768px) {
    .disc-hero {
        height: 55vh;
        min-height: 340px;
    }

    .disc-hero-content {
        padding: 0 4% 40px;
    }

    .disc-hero-name {
        font-size: 24px;
    }

    .disc-hero-bio {
        font-size: 13px;
        -webkit-line-clamp: 2;
    }

    .disc-hero-nav {
        right: 4%;
        bottom: 12px;
    }

    .disc-shelf {
        padding: 0 4%;
        margin-top: 24px;
    }

    .disc-shelf-title {
        font-size: 18px;
    }

    .disc-btn {
        font-size: 12px;
        padding: 8px 16px;
    }

    .disc-shelf-top10 .disc-card {
        margin-left: 24px;
    }

    .disc-card-rank {
        font-size: 56px;
        left: -22px;
    }
}

@media (min-width: 769px) and (max-width: 1199px) {
    .disc-hero {
        height: 65vh;
        max-height: 620px;
    }
}

/* ?? LARGE DESKTOP ?? */
@media (min-width: 1200px) {
    .disc-hero {
        height: 75vh;
        max-height: 720px;
    }

    .disc-hero-content {
        padding: 0 5% 60px;
        max-width: 750px;
    }

    .disc-hero-name {
        font-size: 48px;
    }

    .disc-hero-bio {
        font-size: 16px;
    }

    .disc-hero-meta span {
        font-size: 15px;
    }

    .disc-shelf-title {
        font-size: 24px;
    }

    .disc-card-name {
        font-size: 15px;
    }

    .disc-card-location {
        font-size: 12px;
    }
}

/* ???????????????????????????????????????????
   FindFyre Cinematic Hero Banner (ffhero-)
   ??????????????????????????????????????????? */

.ffhero {
    position: relative;
    width: 100%;
    height: calc(100vh - var(--ff-navbar-h));
    overflow: hidden;
    background: #080006;
}

/* Deep layered background */
.ffhero-bg-base {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 80% at 70% 50%, #1a0020 0%, #0d0010 40%, #050008 100%);
}

/* Animated aurora glow layers */
.ffhero-glow-1 {
    position: absolute;
    width: 900px; height: 900px;
    left: 30%; top: -30%;
    background: radial-gradient(circle, rgba(200,30,100,0.18) 0%, transparent 70%);
    animation: ffhero-drift1 12s ease-in-out infinite alternate;
    filter: blur(60px);
}
.ffhero-glow-2 {
    position: absolute;
    width: 700px; height: 700px;
    right: -10%; bottom: -20%;
    background: radial-gradient(circle, rgba(120,0,180,0.22) 0%, transparent 70%);
    animation: ffhero-drift2 15s ease-in-out infinite alternate;
    filter: blur(80px);
}
.ffhero-glow-3 {
    position: absolute;
    width: 500px; height: 500px;
    left: 5%; top: 20%;
    background: radial-gradient(circle, rgba(220,20,120,0.12) 0%, transparent 70%);
    animation: ffhero-drift3 10s ease-in-out infinite alternate;
    filter: blur(50px);
}
.ffhero-glow-4 {
    position: absolute;
    width: 600px; height: 300px;
    left: 20%; bottom: 0%;
    background: radial-gradient(ellipse, rgba(160,0,80,0.2) 0%, transparent 70%);
    filter: blur(60px);
    animation: ffhero-drift1 18s ease-in-out infinite alternate-reverse;
}

@keyframes ffhero-drift1 {
    from { transform: translate(0,0) scale(1); }
    to   { transform: translate(40px,30px) scale(1.1); }
}
@keyframes ffhero-drift2 {
    from { transform: translate(0,0) scale(1); }
    to   { transform: translate(-30px,-40px) scale(1.08); }
}
@keyframes ffhero-drift3 {
    from { transform: translate(0,0); }
    to   { transform: translate(20px,-20px) scale(1.05); }
}

/* Geometric mesh overlay */
.ffhero-mesh-svg {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    opacity: 0.08;
}

/* Banner image panel — covers full hero area */
.ffhero-silhouette-panel {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
}
/* Top fade: background bleeds down over the image edge */
.ffhero-silhouette-panel::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 35%;
    background: linear-gradient(to bottom, rgba(8,0,6,0.85) 0%, transparent 100%);
    z-index: 2;
    pointer-events: none;
}
/* Bottom fade: image fades into page */
.ffhero-silhouette-panel::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 35%;
    background: linear-gradient(to top, rgba(8,0,6,0.85) 0%, transparent 100%);
    z-index: 2;
    pointer-events: none;
}
.ffhero-banner-img {
    width: 100%;
    height: 100% !important;
    display: block;
    object-fit: cover;
    object-position: center top;
    opacity: 0.78;
}
/* Left-side text area overlay — keep text readable */
.ffhero-banner-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(8,0,6,0.82) 0%,
        rgba(8,0,6,0.55) 28%,
        rgba(8,0,6,0.15) 52%,
        transparent 68%
    );
    z-index: 3;
    pointer-events: none;
}

/* Floating particles */
.ffhero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 3;
}
.ffhero-particle {
    position: absolute;
    animation: ffhero-floatUp linear infinite;
}
/* Bubble variant */
.ffhero-particle-bubble {
    border-radius: 50%;
}
/* Heart variant */
.ffhero-particle-heart {
    background: none !important;
    box-shadow: none !important;
    color: rgba(220,30,110,0.75);
    line-height: 1;
    user-select: none;
}
@keyframes ffhero-floatUp {
    0%   { transform: translateY(0) translateX(0); opacity: 0; }
    10%  { opacity: 1; }
    90%  { opacity: 0.5; }
    100% { transform: translateY(-100vh) translateX(var(--ffhero-drift)); opacity: 0; }
}

/* Main content */
.ffhero-content {
    position: absolute;
    left: 0; top: 0;
    width: 56%; height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 40px 4% 70px 11%;
    z-index: 10;
}

.ffhero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(220,30,110,0.15);
    border: 1px solid rgba(220,30,110,0.4);
    border-radius: 4px;
    padding: 6px 16px;
    margin-bottom: 28px;
    width: fit-content;
    animation: ffhero-fadeUp 0.8s ease forwards;
    opacity: 0;
}
.ffhero-badge-dot {
    width: 6px; height: 6px;
    background: #e01d76;
    border-radius: 50%;
    box-shadow: 0 0 8px #e01d76;
    animation: ffhero-pulse 2s ease-in-out infinite;
}
@keyframes ffhero-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}
.ffhero-badge span {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.25em;
    color: #e01d76;
    text-transform: uppercase;
}

.ffhero-headline {
    font-family: 'Playfair Display', serif;
    font-size: clamp(60px, 8vw, 108px);
    font-weight: 900;
    line-height: 0.95;
    color: #fff;
    margin-bottom: 14px;
    animation: ffhero-fadeUp 0.8s ease 0.15s forwards;
    opacity: 0;
}
.ffhero-headline em {
    font-style: italic;
    background: linear-gradient(135deg, #f03080 0%, #c010c0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ffhero-tagline {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(14px, 1.8vw, 21px);
    font-weight: 300;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 36px;
    animation: ffhero-fadeUp 0.8s ease 0.3s forwards;
    opacity: 0;
}

.ffhero-description {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(14px, 1.55vw, 18px);
    font-weight: 400;
    color: rgba(255,255,255,0.65);
    line-height: 1.75;
    max-width: 500px;
    margin-bottom: 20px;
    animation: ffhero-fadeUp 0.8s ease 0.45s forwards;
    opacity: 0;
}

.ffhero-find-line {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    font-weight: 700;
    color: rgba(255,255,255,0.9);
    margin: 0 0 16px 0;
    letter-spacing: 0.02em;
    animation: ffhero-fadeUp 0.8s ease 0.55s forwards;
    opacity: 0;
}

.ffhero-find-word {
    display: inline-block;
    background: linear-gradient(90deg, #e8186d, #ff6eb4, #c020c0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: opacity 0.3s ease, transform 0.3s ease;
    min-width: 2ch;
}

.ffhero-find-word.ffhero-find-out {
    opacity: 0;
    transform: translateY(-8px);
}

.ffhero-find-word.ffhero-find-in {
    opacity: 1;
    transform: translateY(0);
}

.ffhero-cta-group {
    display: flex;
    gap: 16px;
    align-items: center;
    animation: ffhero-fadeUp 0.8s ease 0.6s forwards;
    opacity: 0;
}

.ffhero-btn-primary {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #fff;
    background: linear-gradient(135deg, #e01d76 0%, #a010a0 100%);
    border: none;
    padding: 18px 42px;
    border-radius: 3px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.ffhero-btn-primary::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, #f03090 0%, #b020c0 100%);
    opacity: 0;
    transition: opacity 0.2s ease;
}
.ffhero-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(220,30,110,0.4);
    color: #fff;
}
.ffhero-btn-primary:hover::before { opacity: 1; }
.ffhero-btn-primary span { position: relative; z-index: 1; }

.ffhero-btn-secondary {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    padding: 17px 38px;
    border-radius: 3px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s ease;
}
.ffhero-btn-secondary:hover {
    border-color: rgba(255,255,255,0.5);
    color: #fff;
}

/* Stats row */
.ffhero-stats {
    display: flex;
    gap: 24px;
    margin-top: 24px;
    align-self: flex-start;
    animation: ffhero-fadeUp 0.8s ease 0.75s forwards;
    opacity: 0;
}
.ffhero-stat-num {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    display: block;
    line-height: 1.2;
}
.ffhero-stat-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
}
.ffhero-stat-divider {
    width: 1px;
    background: rgba(255,255,255,0.1);
    align-self: stretch;
}

/* Bottom gradient fade into page */
.ffhero-bottom-fade {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 160px;
    background: linear-gradient(to top, #0a0a0a 0%, transparent 100%);
    z-index: 5;
}

/* Corner decorative lines */
.ffhero-corner-deco {
    position: absolute;
    top: 36px; right: 44px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
    animation: ffhero-fadeIn 1.2s ease 1s forwards;
    opacity: 0;
}
.ffhero-corner-line {
    background: rgba(220,30,110,0.5);
    height: 1px;
}

/* Slide dots */
.ffhero-slide-dots {
    position: absolute;
    bottom: 36px; right: 44px;
    display: flex;
    gap: 8px;
    align-items: center;
    z-index: 20;
}
.ffhero-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
}
.ffhero-dot-active {
    width: 24px;
    border-radius: 3px;
    background: #e01d76;
}

@keyframes ffhero-fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes ffhero-fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Scroll hint */
.ffhero-scroll-hint {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    cursor: pointer;
    transition: opacity 0.4s ease, transform 0.4s ease;
}
.ffhero-scroll-hint.ffhero-scroll-faded {
    opacity: 0;
    transform: translateX(-50%) translateY(-8px);
    pointer-events: none;
}
.ffhero-scroll-hint .ffhero-scroll-label {
    font-size: clamp(0.6rem, 1.6vw, 0.7rem);
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
}
.ffhero-scroll-hint .ffhero-scroll-chevrons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    animation: ffhero-scroll-bounce 2s ease-in-out infinite;
}
.ffhero-scroll-hint .ffhero-scroll-chevrons svg {
    width: clamp(20px, 4vw, 28px);
    height: clamp(12px, 2.4vw, 16px);
    fill: none;
    stroke: rgba(220,30,110,0.9);
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    filter: drop-shadow(0 0 6px rgba(220,30,110,0.5));
}
.ffhero-scroll-hint .ffhero-scroll-chevrons svg:last-child {
    opacity: 0.45;
    margin-top: -4px;
}
@keyframes ffhero-scroll-bounce {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(6px); }
}

/* Responsive */
@media (max-width: 768px) {
    .ffhero-content {
        width: 90%;
        padding: 0 0 0 5%;
    }
    .ffhero-silhouette-panel {
        opacity: 0.35;
    }
    .ffhero-stats {
        gap: 20px;
    }
    .ffhero-cta-group {
        flex-direction: column;
        align-items: flex-start;
    }
    .ffhero-corner-deco,
    .ffhero-slide-dots {
        display: none;
    }
}
