:root {
        --primary-red: #df2029;
        --primary-red-dark: #b91c24;
        --text-dark: #111827;
        --text-medium: #334155;
        --text-gray: #64748b;
        --bg-light: #f4f6fb;
        --bg-panel: #ffffff;
        --border-light: rgba(15, 23, 42, 0.08);
        --gold: #f5c518;
        --radius-md: 14px;
        --radius-lg: 24px;
        --shadow-soft: 0 20px 45px rgba(15, 23, 42, 0.08);
        --shadow-card: 0 12px 28px rgba(15, 23, 42, 0.08);
        --transition: 0.28s ease;
    }

    body {
        background:
            radial-gradient(circle at top left, rgba(223, 32, 41, 0.12), transparent 18%),
            radial-gradient(circle at top right, rgba(59, 130, 246, 0.08), transparent 22%),
            linear-gradient(180deg, #f7f8fc 0%, #f2f5fa 44%, #edf2f8 100%);
        min-height: 100vh;
        display: flex;
        flex-direction: column;
    }

    .df-home-seo-details {
        width: min(100%, 760px);
        max-width: 78ch;
        margin: 18px auto 48px;
        text-align: left;
        border: 1px solid rgba(15, 23, 42, 0.08);
        border-radius: 14px;
        background: rgba(255, 255, 255, 0.86);
        box-shadow: 0 14px 30px rgba(15, 23, 42, 0.06);
        overflow: hidden;
    }

    .df-home-seo-details summary {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        min-height: 54px;
        padding: 10px 13px;
        cursor: pointer;
        list-style: none;
        font-size: 0.95rem;
        font-weight: 800;
        color: #111827;
        background:
            linear-gradient(90deg, rgba(223, 32, 41, 0.08), rgba(37, 99, 235, 0.05)),
            rgba(255, 255, 255, 0.92);
    }

    .df-home-seo-details summary::-webkit-details-marker {
        display: none;
    }

    .df-home-seo-details summary::after {
        content: "+";
        flex: 0 0 auto;
        width: 28px;
        height: 28px;
        border-radius: 999px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: rgba(223, 32, 41, 0.08);
        color: #df2029;
        font-size: 1.05rem;
        line-height: 1;
    }

    .df-home-seo-details[open] summary::after {
        content: "-";
    }

    .df-home-seo-summary__main {
        display: flex;
        align-items: center;
        gap: 10px;
        min-width: 0;
    }

    .df-home-seo-summary__icon {
        width: 30px;
        height: 30px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex: 0 0 auto;
        border-radius: 8px;
        background: #df2029;
        color: #fff;
        font-size: 0.78rem;
        box-shadow: 0 8px 16px rgba(223, 32, 41, 0.2);
    }

    .df-home-seo-summary__title {
        flex: 0 0 auto;
        white-space: nowrap;
    }

    .df-home-seo-summary__hint {
        min-width: 0;
        color: #64748b;
        font-size: 0.86rem;
        font-weight: 700;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .df-home-seo-details__body {
        padding: 0 16px 16px;
    }

    .df-home-seo-copy {
        color: #334155;
        line-height: 1.75;
        font-size: 0.95rem;
    }

    .df-home-seo-copy p {
        margin: 0 0 0.8rem;
    }

    .df-home-topic-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
        margin-top: 14px;
    }

    .df-home-topic-card {
        position: relative;
        display: block;
        padding: 12px 13px;
        border: 1px solid rgba(15, 23, 42, 0.08);
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.82);
        color: #111827;
        text-decoration: none;
        transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
    }

    .df-home-topic-card:hover {
        color: #111827;
        border-color: rgba(223, 32, 41, 0.22);
        box-shadow: 0 10px 22px rgba(15, 23, 42, 0.08);
        transform: translateY(-1px);
    }

    .df-home-topic-card::after {
        content: "\f061";
        position: absolute;
        top: 12px;
        right: 12px;
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        font-size: 0.72rem;
        color: rgba(223, 32, 41, 0.78);
    }

    .df-home-topic-card h2 {
        margin: 0 0 4px;
        padding-right: 18px;
        font-size: 0.95rem;
        font-weight: 800;
        color: #111827;
    }

    .df-home-topic-card p {
        margin: 0;
        color: #64748b;
        font-size: 0.86rem;
        line-height: 1.5;
    }

    .df-no-auto-ads ins.adsbygoogle,
    .df-no-auto-ads iframe[src*="googleads"],
    .df-no-auto-ads iframe[src*="doubleclick"],
    .df-no-auto-ads iframe[src*="googlesyndication"],
    .df-no-auto-ads [id*="google_ads_iframe"],
    .df-no-auto-ads .google-auto-placed {
        display: none !important;
        visibility: hidden !important;
        height: 0 !important;
        min-height: 0 !important;
        margin: 0 !important;
    }

    @media (max-width: 991.98px) {
        .df-home-seo-details {
            width: 100%;
        }

        .df-home-seo-details__body {
            padding: 0 12px 12px;
        }

        .df-home-topic-grid {
            grid-template-columns: 1fr;
            gap: 8px;
    }
}

/* Hub mobile visibility fix: keep quick-access cards visible below tablet width. */
@media (max-width: 991.98px) {
    .df-hub {
        display: block !important;
    }

    .df-hub__grid {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 10px !important;
    }

    .df-hub__card {
        display: flex !important;
        min-height: 74px !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .df-hub__card-title {
        -webkit-line-clamp: 2;
        padding-right: 48px;
    }
}

@media (max-width: 575.98px) {
    .df-hub__grid {
        grid-template-columns: 1fr !important;
        gap: 8px !important;
    }

    .df-hub__card {
        min-height: 62px !important;
        padding: 10px 11px !important;
    }
}

/* 2026 homepage showcase refresh: newest trailers lead, older items follow. */
.df-latest-showcase {
    margin-bottom: 12px !important;
}

.df-latest-showcase .df-home-hero__media-head {
    margin-bottom: 8px;
}

.df-latest-showcase .df-home-hero__media {
    display: grid !important;
    grid-template-columns: minmax(0, 1.55fr) minmax(220px, 0.72fr) !important;
    grid-template-rows: repeat(2, minmax(0, 1fr)) !important;
    gap: 8px !important;
    align-items: stretch !important;
}

.df-latest-showcase .df-home-hero-shot {
    min-height: 0 !important;
    aspect-ratio: auto !important;
    border-radius: 8px;
}

.df-latest-showcase .df-home-hero-shot:first-child {
    grid-column: 1 / 2 !important;
    grid-row: 1 / 3 !important;
    min-height: 316px !important;
}

.df-latest-showcase .df-home-hero-shot:not(:first-child) {
    grid-column: 2 / 3 !important;
    min-height: 154px !important;
}

.df-latest-showcase .df-home-hero-shot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.df-latest-showcase .df-home-hero-shot:first-child .df-home-hero-shot__title {
    font-size: 1.08rem !important;
    line-height: 1.2 !important;
}

.df-home-hub-panel {
    margin-bottom: 14px !important;
}

.df-fragman-section {
    margin-top: 0 !important;
}

.df-fragman-section .section-header,
.df-bottom-featured__head {
    margin-bottom: 12px;
    padding-bottom: 10px;
}

@media (min-width: 992px) {
    [data-fragman-grid] > .col-md-4,
    [data-fragman-grid] > .col-md-4:first-child,
    [data-fragman-grid] > .col-md-4:nth-child(2),
    [data-fragman-grid] > .col-md-4:nth-child(3) {
        flex: 0 0 33.333333% !important;
        max-width: 33.333333% !important;
    }

    [data-fragman-grid] .clean-card,
    [data-fragman-grid] > .col-md-4:first-child .clean-card,
    [data-fragman-grid] > .col-md-4:nth-child(2) .clean-card,
    [data-fragman-grid] > .col-md-4:nth-child(3) .clean-card {
        height: 100%;
        min-height: 0;
        display: flex;
        flex-direction: column;
    }

    [data-fragman-grid] .card-img-wrap,
    [data-fragman-grid] > .col-md-4:first-child .card-img-wrap,
    [data-fragman-grid] > .col-md-4:nth-child(2) .card-img-wrap,
    [data-fragman-grid] > .col-md-4:nth-child(3) .card-img-wrap {
        aspect-ratio: 16 / 9 !important;
        flex: 0 0 auto;
    }

    [data-fragman-grid] .card-body-outside,
    [data-fragman-grid] > .col-md-4:first-child .card-body-outside,
    [data-fragman-grid] > .col-md-4:nth-child(2) .card-body-outside,
    [data-fragman-grid] > .col-md-4:nth-child(3) .card-body-outside {
        position: static !important;
        right: auto !important;
        bottom: auto !important;
        z-index: auto !important;
        min-height: 76px;
        padding: 12px 13px 14px !important;
        background: #fff !important;
    }

    [data-fragman-grid] .card-meta-clean,
    [data-fragman-grid] .card-title-clean {
        color: inherit !important;
        text-shadow: none !important;
    }

    [data-fragman-grid] .card-title-clean,
    [data-fragman-grid] > .col-md-4:first-child .card-title-clean,
    [data-fragman-grid] > .col-md-4:nth-child(2) .card-title-clean,
    [data-fragman-grid] > .col-md-4:nth-child(3) .card-title-clean {
        font-size: 15px !important;
        line-height: 1.32 !important;
        -webkit-line-clamp: 2;
    }
}

.df-bottom-featured {
    margin-top: 18px !important;
}

.df-bottom-featured__rail {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 12px !important;
}

.df-bottom-featured__card {
    min-width: 0;
}

.df-bottom-featured__media {
    aspect-ratio: 16 / 9 !important;
}

.df-bottom-featured__name {
    font-size: 14px;
}

.df-context-digest {
    display: grid;
    gap: 10px;
    margin-top: 16px;
}

.df-context-digest__top {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.df-context-panel,
.df-context-news,
.df-context-about {
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(15, 23, 42, 0.09);
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.045);
}

.df-context-panel {
    padding: 12px 14px;
}

.df-context-panel__head,
.df-context-news__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 8px;
}

.df-context-panel__head h2,
.df-context-news__head h2 {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin: 0;
    color: #111827;
    font-size: 14px;
    font-weight: 900;
    line-height: 1.2;
}

.df-context-panel__head h2 i {
    color: #ef4444;
    font-size: 8px;
}

.df-context-panel__head a,
.df-context-news__head a {
    color: #334155;
    text-decoration: none;
    font-size: 11px;
    font-weight: 800;
    white-space: nowrap;
}

.df-context-list {
    display: grid;
}

.df-context-row {
    display: grid;
    grid-template-columns: 68px minmax(0, 1fr) auto;
    align-items: center;
    gap: 8px;
    min-height: 27px;
    color: #111827;
    text-decoration: none;
    border-bottom: 1px solid rgba(15, 23, 42, 0.09);
    font-size: 12px;
}

.df-context-row:last-child {
    border-bottom: 0;
}

.df-context-row__channel,
.df-context-row__rank {
    color: #334155;
    font-weight: 850;
    white-space: nowrap;
}

.df-context-row__rank {
    width: 20px;
}

.df-context-row__title {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-weight: 750;
}

.df-context-row__time {
    color: #0f172a;
    font-size: 11px;
    font-weight: 800;
}

.df-context-row--rating {
    grid-template-columns: 20px minmax(0, 1fr) 72px;
}

.df-context-row__bar {
    display: block;
    height: 4px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.08);
    overflow: hidden;
}

.df-context-row__bar span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: #ef6b75;
}

.df-context-news {
    padding: 12px;
}

.df-context-news__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.df-context-news-card {
    display: block;
    min-width: 0;
    overflow: hidden;
    border-radius: 8px;
    color: inherit;
    text-decoration: none;
    border: 1px solid rgba(15, 23, 42, 0.09);
    background: #fff;
}

.df-context-news-card__media {
    position: relative;
    display: block;
    aspect-ratio: 16 / 7.2;
    overflow: hidden;
    background: #f0eee8;
}

.df-context-news-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.df-context-news-card__placeholder {
    position: absolute;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    color: #111827;
    font-size: 20px;
}

.df-context-news-card__media img[src$="placeholder.jpg"] + .df-context-news-card__placeholder {
    display: flex;
}

.df-context-news-card__body {
    display: grid;
    gap: 4px;
    padding: 10px;
}

.df-context-news-card__title {
    display: -webkit-box;
    min-height: 34px;
    color: #111827;
    font-size: 12px;
    font-weight: 850;
    line-height: 1.32;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.df-context-news-card__date {
    color: #64748b;
    font-size: 11px;
    font-weight: 750;
}

.df-context-about {
    overflow: hidden;
}

.df-context-about summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 38px;
    padding: 9px 12px;
    cursor: pointer;
    color: #334155;
    font-size: 12px;
    font-weight: 750;
    list-style: none;
}

.df-context-about summary::-webkit-details-marker {
    display: none;
}

.df-context-about__body {
    padding: 0 12px 12px;
    color: #64748b;
    font-size: 12px;
    line-height: 1.5;
}

@media (max-width: 991.98px) {
    .df-latest-showcase .df-home-hero__media {
        grid-template-columns: 1fr !important;
        grid-template-rows: none !important;
    }

    .df-latest-showcase .df-home-hero-shot:first-child,
    .df-latest-showcase .df-home-hero-shot:not(:first-child) {
        grid-column: auto !important;
        grid-row: auto !important;
        min-height: 0 !important;
        aspect-ratio: 16 / 9 !important;
    }

    .df-bottom-featured__rail {
        grid-template-columns: 1fr !important;
    }

    .df-bottom-featured__card {
        flex: none !important;
    }

    .df-context-digest__top,
    .df-context-news__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575.98px) {
    main > .df-latest-showcase {
        order: 1 !important;
    }

    main > .df-home-hub-panel {
        order: 2 !important;
    }

    main > .df-fragman-section {
        order: 3 !important;
    }

    main > .df-bottom-featured {
        order: 4 !important;
    }

    main > .df-context-digest {
        order: 5 !important;
    }

    main > .df-load-more {
        order: 6 !important;
    }

    .df-latest-showcase {
        margin-bottom: 10px !important;
    }

    .df-latest-showcase .df-home-hero__media {
        display: flex !important;
        gap: 8px !important;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding: 0 12px 6px 0 !important;
        margin-right: -12px !important;
    }

    .df-latest-showcase .df-home-hero-shot:first-child,
    .df-latest-showcase .df-home-hero-shot:not(:first-child) {
        flex: 0 0 min(82vw, 340px);
        scroll-snap-align: start;
        aspect-ratio: 16 / 9 !important;
    }

    .df-fragman-section .section-header {
        align-items: flex-start;
    }

    .df-context-panel,
    .df-context-news,
    .df-context-about {
        border-radius: 8px;
    }

    .df-context-row {
        grid-template-columns: 58px minmax(0, 1fr) auto;
    }

    .df-context-row--rating {
        grid-template-columns: 20px minmax(0, 1fr) 58px;
    }
}

    body > * {
        width: 100%;
    }

    /* --- BÖLÜM AYIRICI (TEMİZ VE NET) --- */
    .section-divider {
        margin-bottom: 56px !important;
        padding-top: 8px;
        clear: both;
    }

    .home-main-shell {
        flex: 1 0 auto;
    }

    .df-hub-strip {
        display: flex;
        align-items: center;
        gap: 12px;
        margin: 10px auto 0;
        padding: 12px 14px;
        border: 1px solid rgba(15, 23, 42, 0.08);
        border-radius: 22px;
        background:
            linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(247, 249, 252, 0.94) 44%, rgba(252, 244, 245, 0.98)),
            linear-gradient(180deg, rgba(223, 32, 41, 0.03), rgba(223, 32, 41, 0));
        box-shadow:
            0 16px 34px rgba(15, 23, 42, 0.05),
            inset 0 1px 0 rgba(255, 255, 255, 0.75);
        overflow-x: auto;
        scrollbar-width: none;
    }

    .df-hub-strip::-webkit-scrollbar {
        display: none;
    }

    .df-hub-strip__label {
        flex: 0 0 auto;
        font-size: 11px;
        font-weight: 800;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: #6b7280;
    }

    .df-hub-strip__links {
        display: flex;
        align-items: center;
        gap: 8px;
        flex-wrap: nowrap;
        min-width: max-content;
    }

    .df-hub-strip__link {
        display: inline-flex;
        align-items: center;
        gap: 7px;
        min-height: 36px;
        padding: 8px 12px;
        border-radius: 999px;
        border: 1px solid rgba(15, 23, 42, 0.08);
        background: rgba(255, 255, 255, 0.92);
        color: #223246;
        font-size: 12px;
        font-weight: 800;
        text-decoration: none;
        white-space: nowrap;
        box-shadow: 0 10px 22px rgba(15, 23, 42, 0.04);
        transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    }

    .df-hub-strip__link:hover,
    .df-hub-strip__link:focus-visible {
        background: rgba(229, 9, 20, 0.06);
        border-color: rgba(229, 9, 20, 0.22);
        color: #b91c24;
        transform: translateY(-1px);
        box-shadow: 0 16px 28px rgba(15, 23, 42, 0.07);
        outline: none;
    }

    .df-hub-strip__link i {
        color: #df2029;
        font-size: 11px;
    }

    .df-hub-mobile-cta {
        display: none;
    }

    .df-hub-mobile-cta {
        padding: 0 2px;
    }

    .df-hub-mobile-cta__grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .df-hub-mobile-cta__link {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        min-height: 44px;
        padding: 11px 12px;
        border-radius: 16px;
        text-decoration: none;
        font-size: 13px;
        font-weight: 800;
        color: #223246;
        background:
            linear-gradient(135deg, rgba(255, 255, 255, 0.97), rgba(248, 250, 252, 0.94)),
            linear-gradient(180deg, rgba(223, 32, 41, 0.03), rgba(223, 32, 41, 0));
        border: 1px solid rgba(15, 23, 42, 0.08);
        box-shadow:
            0 12px 24px rgba(15, 23, 42, 0.05),
            inset 0 1px 0 rgba(255, 255, 255, 0.8);
    }

    .df-hub-mobile-cta__link i {
        color: #df2029;
        font-size: 13px;
    }

    @media (max-width: 991px) {
        .df-hub-strip {
            display: none;
        }

        .df-hub-mobile-cta {
            display: none;
        }

        .home-main-shell {
            margin-top: 4px !important;
        }

        .section-divider {
            padding-top: 0;
            margin-bottom: 40px !important;
        }

        .df-home-hero {
            padding: 10px 14px 16px;
            text-align: left;
            border-radius: 24px;
        }
        .df-home-hero::before,
        .df-home-hero::after {
            width: 180px;
            height: 140px;
            opacity: 0.58;
            filter: blur(20px);
        }
        .df-home-hero::before {
            left: -110px;
        }
        .df-home-hero::after {
            right: -110px;
        }
        .df-home-hero__eyebrow {
            font-size: 11px;
            padding: 4px 10px;
            margin-bottom: 10px;
        }
        .df-home-hero__title {
            font-size: clamp(1.2rem, 5.2vw, 1.55rem);
            line-height: 1.1;
            margin-bottom: 8px;
        }
        .df-home-hero .section-header__lead {
            font-size: 12px;
            margin-bottom: 8px;
        }
        .df-home-hero__lead {
            font-size: 12px;
            line-height: 1.45;
            margin-bottom: 14px;
        }
        .df-home-hero__tags {
            justify-content: flex-start;
            gap: 6px;
        }
        .df-home-hero__tag {
            font-size: 11px;
            padding: 6px 10px;
        }
    }

    @media (max-width: 575px) {
        .df-home-hero {
            padding: 8px 10px 14px;
            border-radius: 20px;
            background: rgba(255, 255, 255, 0.78);
        }
        .df-home-hero::before,
        .df-home-hero::after {
            width: 84px;
            height: 84px;
            opacity: 0.22;
            filter: blur(12px);
        }
        .df-home-hero::before {
            left: -54px;
        }
        .df-home-hero::after {
            right: -54px;
        }
        .df-home-hero__title {
            font-size: 1.1rem;
        }
        .df-home-hero .section-header__lead {
            font-size: 11px;
        }
        .df-home-hero__lead {
            font-size: 11px;
        }
    }

    .df-hub {
        position: relative;
        isolation: isolate;
        border-radius: 18px;
        padding: 14px 16px;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(249, 250, 252, 0.9));
        border: 1px solid rgba(15, 23, 42, 0.07);
        box-shadow: 0 14px 32px rgba(15, 23, 42, 0.06);
        overflow: hidden;
    }

    .df-hub::before {
        content: "";
        position: absolute;
        top: -100px;
        left: -80px;
        width: 180px;
        height: 180px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(223, 32, 41, 0.08) 0%, rgba(223, 32, 41, 0) 72%);
        pointer-events: none;
        z-index: -1;
    }

    @supports ((-webkit-backdrop-filter: blur(8px)) or (backdrop-filter: blur(8px))) {
        .df-hub {
            background: linear-gradient(160deg, rgba(255, 255, 255, 0.82), rgba(248, 249, 250, 0.75));
            -webkit-backdrop-filter: blur(8px);
            backdrop-filter: blur(8px);
        }
    }

    .df-hub__header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 14px;
        margin-bottom: 10px;
    }

    .df-hub__title {
        color: var(--text-dark);
        font-size: clamp(1rem, 1.2vw, 1.15rem);
        letter-spacing: -0.03em;
        margin: 0 !important;
    }

    .df-hub__desc {
        font-size: 12px;
        line-height: 1.35;
        color: #607082;
        margin: 0;
    }

    .df-hub__grid {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .df-hub__item {
        min-width: 0;
    }

    .df-hub__card {
        position: relative;
        display: flex;
        flex-direction: column;
        min-height: 82px;
        padding: 11px 12px;
        border-radius: 14px;
        text-decoration: none;
        color: #1d2125;
        border: 1px solid rgba(15, 23, 42, 0.07);
        background: rgba(255, 255, 255, 0.86);
        box-shadow: 0 10px 20px rgba(15, 23, 42, 0.045);
        transition: transform 0.28s cubic-bezier(0.2, 0.7, 0.2, 1), box-shadow 0.28s ease, border-color 0.28s ease, opacity 0.3s ease;
        will-change: transform, opacity;
    }

    @supports ((-webkit-backdrop-filter: blur(6px)) or (backdrop-filter: blur(6px))) {
        .df-hub__card {
            background: linear-gradient(155deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.66));
            -webkit-backdrop-filter: blur(6px);
            backdrop-filter: blur(6px);
        }
    }

    .df-hub__card:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 22px rgba(15, 23, 42, 0.08);
        border-color: rgba(223, 32, 41, 0.18);
    }

    .df-hub__card:focus-visible {
        outline: 3px solid rgba(229, 9, 20, 0.34);
        outline-offset: 2px;
        transform: translateY(-4px);
        border-color: rgba(229, 9, 20, 0.6);
    }

    .df-hub__badge {
        position: absolute;
        top: 10px;
        right: 10px;
        font-size: 9px;
        font-weight: 800;
        letter-spacing: 0.06em;
        line-height: 1;
        padding: 5px 7px;
        border-radius: 999px;
        border: 1px solid transparent;
    }

    .df-hub__badge--trend {
        background: rgba(255, 116, 82, 0.16);
        color: #8c1d05;
        border-color: rgba(255, 116, 82, 0.35);
    }

    .df-hub__badge--live {
        background: rgba(229, 9, 20, 0.14);
        color: #9f0913;
        border-color: rgba(229, 9, 20, 0.3);
    }

    .df-hub__badge--new {
        background: rgba(34, 197, 94, 0.14);
        color: #106b34;
        border-color: rgba(34, 197, 94, 0.3);
    }

    .df-hub__badge--rating {
        background: rgba(59, 130, 246, 0.14);
        color: #124eac;
        border-color: rgba(59, 130, 246, 0.3);
    }

    .df-hub__badge--popular {
        background: rgba(245, 197, 24, 0.16);
        color: #7b5e02;
        border-color: rgba(245, 197, 24, 0.35);
    }

    .df-hub__icon {
        width: 32px;
        height: 32px;
        border-radius: 10px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, rgba(223, 32, 41, 0.12), rgba(223, 32, 41, 0.04));
        color: var(--primary-red);
        border: 1px solid rgba(223, 32, 41, 0.12);
        flex: 0 0 32px;
    }

    .df-hub__icon svg {
        width: 14px;
        height: 14px;
    }

    .df-hub__card-title {
        font-size: 13px;
        font-weight: 800;
        line-height: 1.28;
        margin: 8px 0 8px;
        padding-right: 64px;
        color: #161b22;
        display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .df-hub__metric {
        margin-top: auto;
        align-self: flex-start;
        display: inline-flex;
        align-items: center;
        max-width: 100%;
        min-height: 20px;
        padding: 4px 8px;
        border-radius: 999px;
        background: rgba(15, 23, 42, 0.06);
        color: #334155;
        font-size: 10px;
        font-weight: 700;
        white-space: normal;
        overflow: hidden;
        text-overflow: clip;
        line-height: 1.3;
        text-align: left;
    }

    .df-mini-shell {
        position: relative;
        padding: 12px 14px;
        border-radius: 18px;
        background: linear-gradient(135deg, rgba(248, 250, 252, 0.98) 0%, rgba(255, 247, 247, 0.96) 100%);
        border: 1px solid rgba(15, 23, 42, 0.06);
        box-shadow: 0 12px 24px rgba(15, 23, 42, 0.04);
        overflow: hidden;
    }

    .df-mini-shell::before {
        content: "";
        position: absolute;
        inset: 0;
        background:
            radial-gradient(circle at top left, rgba(223, 32, 41, 0.10), transparent 34%),
            radial-gradient(circle at bottom right, rgba(59, 130, 246, 0.08), transparent 26%);
        pointer-events: none;
    }

    .df-mini-shell > * {
        position: relative;
        z-index: 1;
    }

    .df-mini-eyebrow {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        min-height: 24px;
        padding: 5px 9px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.76);
        border: 1px solid rgba(223, 32, 41, 0.10);
        color: #b91c1c;
        font-size: 9px;
        font-weight: 800;
        letter-spacing: 0.06em;
        text-transform: uppercase;
        margin-bottom: 8px;
        box-shadow: 0 6px 12px rgba(15, 23, 42, 0.03);
    }

    .df-mini-eyebrow i {
        font-size: 8px;
    }

    .df-mini-lead {
        margin: 4px 0 0;
        max-width: 62ch;
        color: #5f6b7b;
        font-size: 11px;
        line-height: 1.4;
    }

    .df-mini-grid {
        display: grid;
        grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
        gap: 10px;
        margin-top: 10px;
        align-items: start;
    }

    .df-mini-panel {
        min-width: 0;
    }

    .df-mini-panel__head {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 8px;
        margin-bottom: 8px;
    }

    .df-mini-panel__head .section-title {
        margin-bottom: 0;
        font-size: 16px;
        line-height: 1.15;
    }

    .df-mini-compact-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .df-mini-card {
        display: flex;
        flex-direction: column;
        gap: 6px;
        height: 100%;
        padding: 10px;
        border-radius: 14px;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(248, 250, 252, 0.88));
        border: 1px solid rgba(15, 23, 42, 0.07);
        box-shadow: 0 8px 16px rgba(15, 23, 42, 0.035);
    }

    .df-mini-card--tv {
        background: linear-gradient(180deg, rgba(246, 250, 255, 0.96), rgba(255, 255, 255, 0.90));
    }

    .df-mini-card--ratings {
        background: linear-gradient(180deg, rgba(255, 250, 241, 0.96), rgba(255, 255, 255, 0.90));
    }

    .df-mini-card--discover {
        background: linear-gradient(180deg, rgba(255, 244, 245, 0.96), rgba(255, 255, 255, 0.90));
    }

    .df-mini-card__head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 8px;
    }

    .df-mini-card__title-wrap {
        display: flex;
        align-items: center;
        gap: 8px;
        min-width: 0;
    }

    .df-mini-card__icon {
        width: 30px;
        height: 30px;
        border-radius: 10px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex: 0 0 30px;
        font-size: 12px;
        color: #0f172a;
        box-shadow: inset 0 1px 0 rgba(255,255,255,.55);
    }

    .df-mini-card--tv .df-mini-card__icon {
        background: linear-gradient(135deg, rgba(59, 130, 246, 0.18), rgba(14, 165, 233, 0.10));
        color: #1d4ed8;
    }

    .df-mini-card--ratings .df-mini-card__icon {
        background: linear-gradient(135deg, rgba(245, 158, 11, 0.22), rgba(251, 191, 36, 0.10));
        color: #b45309;
    }

    .df-mini-card--discover .df-mini-card__icon {
        background: linear-gradient(135deg, rgba(223, 32, 41, 0.18), rgba(249, 115, 22, 0.12));
        color: #be123c;
    }

    .df-mini-card__title {
        margin: 0;
        font-size: 12px;
        font-weight: 800;
        color: var(--text-dark);
    }

    .df-mini-card__meta {
        margin: 2px 0 0;
        color: #6b7280;
        font-size: 10px;
        line-height: 1.25;
    }

    .df-link-strip {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin-top: 18px;
    }

    .df-link-pill {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        min-height: 34px;
        padding: 8px 12px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.84);
        border: 1px solid rgba(15, 23, 42, 0.07);
        color: #405063;
        text-decoration: none;
        font-size: 12px;
        font-weight: 800;
        letter-spacing: 0.03em;
        box-shadow: 0 10px 18px rgba(15, 23, 42, 0.04);
        transition: transform 0.2s ease, border-color 0.2s ease, color 0.2s ease;
    }

    .df-link-pill:hover {
        transform: translateY(-1px);
        border-color: rgba(223, 32, 41, 0.18);
        color: var(--primary-red);
    }

    .df-smart-route {
        margin: 0 0 22px;
        padding: 16px;
        border-radius: 20px;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(247, 250, 252, 0.9));
        border: 1px solid rgba(15, 23, 42, 0.07);
        box-shadow: 0 18px 34px rgba(15, 23, 42, 0.055);
    }

    .df-smart-route__head {
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
        gap: 14px;
        margin-bottom: 14px;
    }

    .df-smart-route__eyebrow {
        display: inline-flex;
        align-items: center;
        gap: 7px;
        color: #b91c1c;
        font-size: 11px;
        font-weight: 900;
        letter-spacing: 0.08em;
        text-transform: uppercase;
    }

    .df-smart-route__title {
        margin: 4px 0 0;
        color: #111827;
        font-size: 18px;
        font-weight: 900;
        line-height: 1.2;
    }

    .df-smart-route__lead {
        margin: 5px 0 0;
        max-width: 58ch;
        color: #64748b;
        font-size: 13px;
        line-height: 1.45;
    }

    .df-smart-route__tabs {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 5px;
        border-radius: 999px;
        background: rgba(15, 23, 42, 0.05);
        border: 1px solid rgba(15, 23, 42, 0.06);
    }

    .df-smart-route__tab {
        min-height: 32px;
        padding: 7px 12px;
        border: 0;
        border-radius: 999px;
        background: transparent;
        color: #475569;
        font-size: 12px;
        font-weight: 850;
        line-height: 1;
        white-space: nowrap;
    }

    .df-smart-route__tab.is-active {
        background: #fff;
        color: #b91c1c;
        box-shadow: 0 8px 16px rgba(15, 23, 42, 0.08);
    }

    .df-smart-route__panel {
        display: none;
    }

    .df-smart-route__panel.is-active {
        display: block;
    }

    .df-smart-route__grid {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 10px;
    }

    .df-smart-route__card {
        display: grid;
        grid-template-columns: 104px minmax(0, 1fr);
        gap: 10px;
        min-width: 0;
        min-height: 96px;
        padding: 9px;
        border-radius: 14px;
        background: rgba(255, 255, 255, 0.82);
        border: 1px solid rgba(15, 23, 42, 0.07);
        color: inherit;
        text-decoration: none;
        transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
    }

    .df-smart-route__card:hover {
        transform: translateY(-2px);
        border-color: rgba(223, 32, 41, 0.18);
        box-shadow: 0 14px 24px rgba(15, 23, 42, 0.07);
    }

    .df-smart-route__media {
        position: relative;
        display: block;
        aspect-ratio: 16 / 9;
        align-self: center;
        overflow: hidden;
        border-radius: 10px;
        background: #0f172a;
    }

    .df-smart-route__media img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .df-smart-route__step {
        position: absolute;
        left: 6px;
        top: 6px;
        width: 24px;
        height: 24px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.92);
        color: #b91c1c;
        font-size: 11px;
        font-weight: 900;
    }

    .df-smart-route__body {
        min-width: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 5px;
    }

    .df-smart-route__meta {
        color: #64748b;
        font-size: 10px;
        font-weight: 900;
        letter-spacing: 0.05em;
        text-transform: uppercase;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .df-smart-route__name {
        display: -webkit-box;
        color: #111827;
        font-size: 13px;
        font-weight: 850;
        line-height: 1.28;
        overflow: hidden;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }

    .df-smart-route__reason {
        color: #64748b;
        font-size: 11px;
        line-height: 1.3;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .df-bottom-featured {
        margin-top: 28px;
        padding: 18px;
        border-radius: 20px;
        background: rgba(255, 255, 255, 0.74);
        border: 1px solid rgba(15, 23, 42, 0.07);
        box-shadow: 0 18px 38px rgba(15, 23, 42, 0.055);
    }

    .df-bottom-featured__head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 14px;
        margin-bottom: 14px;
    }

    .df-bottom-featured__eyebrow {
        display: inline-flex;
        align-items: center;
        gap: 7px;
        color: var(--primary-red);
        font-size: 11px;
        font-weight: 900;
        letter-spacing: 0.08em;
        text-transform: uppercase;
    }

    .df-bottom-featured__title {
        margin: 3px 0 0;
        color: var(--text-dark);
        font-size: 18px;
        font-weight: 900;
        line-height: 1.2;
    }

    .df-bottom-featured__rail {
        display: grid;
        grid-template-columns: repeat(6, minmax(0, 1fr));
        gap: 10px;
    }

    .df-bottom-featured__card {
        display: block;
        min-width: 0;
        color: inherit;
        text-decoration: none;
    }

    .df-bottom-featured__media {
        position: relative;
        display: block;
        aspect-ratio: 16 / 9;
        overflow: hidden;
        border-radius: 10px;
        background: #0f172a;
    }

    .df-bottom-featured__media img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.35s ease, filter 0.35s ease;
    }

    .df-bottom-featured__card:hover img {
        transform: scale(1.04);
        filter: saturate(1.08);
    }

    .df-bottom-featured__play {
        position: absolute;
        right: 7px;
        bottom: 7px;
        width: 26px;
        height: 26px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 999px;
        color: #fff;
        background: rgba(223, 32, 41, 0.92);
        box-shadow: 0 8px 16px rgba(15, 23, 42, 0.18);
        font-size: 10px;
    }

    .df-bottom-featured__meta {
        display: block;
        margin-top: 7px;
        color: #64748b;
        font-size: 10px;
        font-weight: 900;
        letter-spacing: 0.05em;
        text-transform: uppercase;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .df-bottom-featured__name {
        display: -webkit-box;
        margin-top: 2px;
        color: #111827;
        font-size: 12px;
        font-weight: 850;
        line-height: 1.28;
        overflow: hidden;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }

    .df-bottom-featured__news {
        margin-top: 18px;
        padding-top: 16px;
        border-top: 1px solid rgba(15, 23, 42, 0.08);
    }

    .df-bottom-featured__news-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        margin-bottom: 12px;
    }

    .df-bottom-featured__news-title {
        margin: 0;
        color: #111827;
        font-size: 16px;
        font-weight: 900;
        line-height: 1.2;
    }

    .df-bottom-news-grid {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 12px;
    }

    .df-bottom-news-card {
        display: grid;
        grid-template-columns: 108px minmax(0, 1fr);
        gap: 10px;
        min-width: 0;
        color: inherit;
        text-decoration: none;
    }

    .df-bottom-news-card__media {
        position: relative;
        display: block;
        aspect-ratio: 16 / 10;
        overflow: hidden;
        border-radius: 9px;
        background: #e5e7eb;
    }

    .df-bottom-news-card__media img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.25s ease;
    }

    .df-bottom-news-card:hover img {
        transform: scale(1.04);
    }

    .df-bottom-news-card__body {
        min-width: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 5px;
    }

    .df-bottom-news-card__title {
        display: -webkit-box;
        color: #111827;
        font-size: 13px;
        font-weight: 850;
        line-height: 1.25;
        overflow: hidden;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }

    .df-bottom-news-card__meta {
        color: #64748b;
        font-size: 11px;
        font-weight: 750;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .df-home-hero {
        position: relative;
        isolation: isolate;
        overflow: visible;
        padding: 22px 18px 18px;
        margin-bottom: 18px;
        text-align: center;
        max-width: 720px;
        margin-left: auto;
        margin-right: auto;
        border-radius: 30px;
        background: radial-gradient(circle at top center, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.78) 58%, rgba(255, 255, 255, 0.58) 100%);
    }

    .df-home-hero::before,
    .df-home-hero::after {
        content: "";
        position: absolute;
        top: 50%;
        width: 320px;
        height: 240px;
        border-radius: 999px;
        pointer-events: none;
        filter: blur(26px);
        opacity: 0.92;
        z-index: -1;
        transform: translateY(-50%);
    }

    .df-home-hero::before {
        left: -220px;
        background: radial-gradient(ellipse at center, rgba(223, 32, 41, 0.18) 0%, rgba(249, 115, 22, 0.12) 38%, rgba(255, 255, 255, 0) 74%);
    }

    .df-home-hero::after {
        right: -220px;
        background: radial-gradient(ellipse at center, rgba(59, 130, 246, 0.18) 0%, rgba(14, 165, 233, 0.11) 40%, rgba(255, 255, 255, 0) 74%);
    }
    
    .df-home-hero__eyebrow {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 5px 13px;
        border-radius: 999px;
        background: rgba(223, 32, 41, 0.08);
        color: #df2029;
        font-size: 11px;
        font-weight: 800;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        margin-bottom: 12px;
        border: 1px solid rgba(223, 32, 41, 0.15);
    }

    .df-home-hero__title {
        font-size: clamp(1.55rem, 3vw, 2.35rem);
        font-weight: 800;
        color: var(--text-dark);
        letter-spacing: -0.04em;
        line-height: 1.08;
        margin-bottom: 10px;
    }
    
    .df-home-hero__title span {
        background: linear-gradient(135deg, #df2029, #f97316);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .df-home-hero__lead {
        font-size: clamp(0.9rem, 1vw, 1rem);
        color: #556371;
        max-width: 620px;
        margin: 0 auto 18px;
        line-height: 1.5;
    }

    .df-home-hero .section-header__lead {
        max-width: none;
        margin: 0 0 10px;
        font-size: 0.95rem;
        line-height: 1.4;
    }
    
    .df-home-hero__tags {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
    
    .df-home-hero__tag {
        display: inline-flex;
        align-items: center;
        gap: 7px;
        font-size: 12px;
        font-weight: 700;
        color: #334155;
        padding: 8px 14px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.8);
        border: 1px solid rgba(15, 23, 42, 0.08);
        box-shadow: 0 4px 12px rgba(15, 23, 42, 0.02);
        text-decoration: none;
        transition: all 0.25s ease;
    }
    
    .df-home-hero__tag:hover {
        background: #fff;
        transform: translateY(-2px);
        box-shadow: 0 8px 18px rgba(15, 23, 42, 0.06);
        border-color: rgba(223, 32, 41, 0.2);
        color: #111827;
    }

    .df-mini-list,
    .df-mini-links {
        list-style: none;
        margin: 0;
        padding: 0;
        display: grid;
        gap: 6px;
    }

    .df-mini-list li,
    .df-mini-links li {
        margin: 0;
    }

    .df-mini-list a,
    .df-mini-links a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 8px;
        padding: 7px 8px;
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.78);
        text-decoration: none;
        color: #1e293b;
        border: 1px solid rgba(15, 23, 42, 0.06);
        box-shadow: 0 4px 10px rgba(15, 23, 42, 0.025);
        transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    }

    .df-mini-list a:hover,
    .df-mini-links a:hover {
        transform: translateY(-2px);
        border-color: rgba(223, 32, 41, 0.18);
        background: #fff;
        box-shadow: 0 14px 26px rgba(15, 23, 42, 0.06);
    }

    .df-mini-item__lead {
        display: flex;
        align-items: center;
        gap: 8px;
        min-width: 0;
        flex: 1 1 auto;
    }

    .df-mini-item__badge {
        width: 24px;
        height: 24px;
        border-radius: 8px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex: 0 0 24px;
        font-size: 10px;
        background: rgba(15, 23, 42, 0.05);
        color: #334155;
    }

    .df-mini-item__body {
        min-width: 0;
    }

    .df-mini-arrow {
        width: 22px;
        height: 22px;
        border-radius: 999px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex: 0 0 22px;
        background: rgba(255, 255, 255, 0.84);
        border: 1px solid rgba(15, 23, 42, 0.08);
        color: #0f172a;
        box-shadow: 0 4px 10px rgba(15, 23, 42, 0.04);
        font-size: 10px;
    }

    .df-mini-list strong,
    .df-mini-links strong {
        display: block;
        font-size: 11px;
        font-weight: 800;
        line-height: 1.25;
    }

    .df-mini-list span,
    .df-mini-links span {
        font-size: 9px;
        color: #64748b;
        line-height: 1.2;
    }

    .df-mini-rank {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 24px;
        height: 24px;
        border-radius: 999px;
        background: linear-gradient(135deg, rgba(223, 32, 41, 0.12), rgba(249, 115, 22, 0.10));
        color: #b91c1c;
        font-size: 10px;
        font-weight: 800;
        flex: 0 0 24px;
    }

    .df-mini-strip {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 8px;
    }

    .df-mini-strip__label {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 6px 10px;
        border-radius: 999px;
        background: rgba(15, 23, 42, 0.06);
        color: #334155;
        font-size: 10px;
        font-weight: 800;
        letter-spacing: 0.04em;
        text-transform: uppercase;
        white-space: nowrap;
    }

    .df-mini-pill {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        min-height: 30px;
        padding: 6px 10px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.86);
        border: 1px solid rgba(15, 23, 42, 0.08);
        color: #334155;
        text-decoration: none;
        font-size: 11px;
        font-weight: 700;
        line-height: 1.2;
        box-shadow: 0 4px 12px rgba(15, 23, 42, 0.03);
        transition: transform 0.2s ease, border-color 0.2s ease, color 0.2s ease, background-color 0.2s ease;
    }

    .df-mini-pill:hover {
        transform: translateY(-1px);
        border-color: rgba(223, 32, 41, 0.18);
        color: #b91c1c;
        background: #fff;
    }

    /* --- KARTLAR --- */
    .clean-card {
        display: block;
        text-decoration: none;
        height: 100%;
        color: inherit;
        padding: 10px;
        border-radius: 24px;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 252, 0.88));
        border: 1px solid rgba(15, 23, 42, 0.07);
        box-shadow: 0 18px 34px rgba(15, 23, 42, 0.06);
        transition: transform 0.26s ease, box-shadow 0.26s ease, border-color 0.26s ease;
    }

    .clean-card--featured {
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 247, 248, 0.92));
        border-color: rgba(223, 32, 41, 0.16);
        box-shadow: 0 24px 44px rgba(15, 23, 42, 0.08);
    }

    .clean-card--spotlight {
        box-shadow: 0 22px 38px rgba(15, 23, 42, 0.08);
    }

    .card-img-wrap {
        position: relative;
        width: 100%;
        aspect-ratio: 16/9;
        border-radius: 18px;
        overflow: hidden;
        background: #000;
        box-shadow: 0 18px 28px rgba(15, 23, 42, 0.16);
    }

    .card-img-wrap::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(15, 23, 42, 0.02) 0%, rgba(15, 23, 42, 0.08) 50%, rgba(15, 23, 42, 0.36) 100%);
        pointer-events: none;
    }

    .card-img-wrap img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.4s ease, opacity 0.3s ease;
    }

    .clean-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 26px 44px rgba(15, 23, 42, 0.1);
        border-color: rgba(223, 32, 41, 0.16);
    }

    .clean-card--featured .card-img-wrap {
        box-shadow: 0 22px 34px rgba(15, 23, 42, 0.2);
    }

    .card-feature-label {
        position: absolute;
        top: 14px;
        left: 14px;
        z-index: 2;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        min-height: 30px;
        padding: 7px 12px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.18);
        border: 1px solid rgba(255, 255, 255, 0.22);
        color: #fff;
        font-size: 11px;
        font-weight: 800;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        backdrop-filter: blur(8px);
    }

    .clean-card:hover img {
        transform: scale(1.06);
        opacity: 0.95;
    }

    .play-overlay {
        position: absolute;
        inset: auto 14px 14px 14px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        z-index: 2;
    }

    .play-overlay::after {
        content: "Fragmanı İzle";
        margin-left: auto;
        padding: 7px 12px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.16);
        border: 1px solid rgba(255, 255, 255, 0.24);
        color: #fff;
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 0.04em;
        backdrop-filter: blur(8px);
    }

    .play-btn-sm {
        width: 44px;
        height: 44px;
        font-size: 16px;
        background: linear-gradient(135deg, #f03640, #bf1e27);
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 10px 18px rgba(223, 32, 41, 0.32);
    }

    .card-body-outside {
        padding: 14px 4px 4px;
    }

    .card-title-clean {
        font-size: 17px;
        font-weight: 800;
        color: var(--text-dark);
        line-height: 1.4;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        transition: color 0.2s;
    }

    .clean-card:hover .card-title-clean {
        color: var(--primary-red);
    }

    .clean-card--featured .card-title-clean {
        font-size: 19px;
        line-height: 1.32;
    }

    .clean-card--spotlight .card-title-clean {
        font-size: 18px;
    }

    .card-meta-clean {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        font-size: 11px;
        color: #5f6f81;
        font-weight: 800;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        margin-bottom: 8px;
    }

    .card-meta-clean::before {
        content: "";
        width: 7px;
        height: 7px;
        border-radius: 999px;
        background: linear-gradient(135deg, #df2029, #f97316);
        box-shadow: 0 0 0 4px rgba(223, 32, 41, 0.08);
        flex: 0 0 7px;
    }

    /* --- BAŞLIKLAR --- */
    .section-header {
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
        gap: 18px;
        margin-bottom: 22px;
        padding-bottom: 14px;
        border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    }

    .section-header__eyebrow {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        margin-bottom: 8px;
        font-size: 11px;
        font-weight: 800;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        color: #b4232c;
    }

    .section-header__eyebrow::before {
        content: "";
        width: 26px;
        height: 1px;
        background: linear-gradient(90deg, rgba(223, 32, 41, 0.85), rgba(223, 32, 41, 0.12));
    }

    .section-header__lead {
        max-width: 520px;
        margin: 8px 0 0;
        color: #607082;
        font-size: 14px;
        line-height: 1.55;
    }

    .section-title {
        font-size: clamp(1.2rem, 1.4vw, 1.55rem);
        font-weight: 800;
        color: var(--text-dark);
        letter-spacing: -0.03em;
        border-left: none;
        padding-left: 0;
        margin: 0;
    }

    .section-link {
        font-size: 13px;
        font-weight: 700;
        color: #64748b;
        text-decoration: none;
        white-space: nowrap;
    }

    .section-link:hover {
        color: var(--primary-red);
    }

    .df-load-more {
        margin-top: 8px;
        margin-bottom: 24px !important;
    }

    .df-load-more.is-hidden {
        display: none;
    }

    .df-auto-load-sentinel {
        width: 100%;
        height: 1px;
    }

    .pagination {
        gap: 8px;
        flex-wrap: wrap;
    }

    .page-item .page-link {
        min-width: 42px;
        height: 42px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 14px;
        border: 1px solid rgba(15, 23, 42, 0.08);
        background: rgba(255, 255, 255, 0.9);
        color: #344256;
        font-weight: 800;
        box-shadow: 0 10px 20px rgba(15, 23, 42, 0.05);
    }

    .page-item.active .page-link {
        background: linear-gradient(135deg, #df2029, #b91c24);
        border-color: rgba(223, 32, 41, 0.32);
        color: #fff;
        box-shadow: 0 16px 26px rgba(223, 32, 41, 0.24);
    }

    .page-item.disabled .page-link {
        opacity: 0.45;
        box-shadow: none;
        background: rgba(255, 255, 255, 0.7);
    }

    .home-sidebar {
        position: sticky;
        top: 118px;
        z-index: 20;
    }

    .df-home-faq {
        margin-top: 6px;
        padding: 20px 22px;
        border-radius: 18px;
        background: rgba(255, 255, 255, 0.72);
        border: 1px solid rgba(15, 23, 42, 0.07);
        box-shadow: 0 12px 24px rgba(15, 23, 42, 0.04);
    }

    .df-home-faq__list {
        display: grid;
        gap: 12px;
    }

    .df-home-faq__item {
        padding: 14px 16px;
        border-radius: 14px;
        background: rgba(248, 250, 252, 0.9);
        border: 1px solid rgba(15, 23, 42, 0.05);
    }

    .df-home-faq__item h3 {
        margin: 0 0 6px;
        font-size: 15px;
        font-weight: 800;
        color: #16202c;
    }

    .df-home-faq__item p {
        margin: 0;
        font-size: 13px;
        line-height: 1.55;
        color: #607082;
    }

    .df-home-faq--compact {
        margin-top: 0;
        padding: 10px;
        border-radius: 14px;
        background: rgba(255, 255, 255, 0.76);
        box-shadow: 0 8px 16px rgba(15, 23, 42, 0.035);
    }

    .df-home-faq--compact .df-home-faq__list {
        gap: 6px;
    }

    .df-home-faq--compact .df-home-faq__item {
        padding: 7px 8px;
        border-radius: 10px;
    }

    .df-home-faq--compact .df-home-faq__item h3 {
        margin-bottom: 3px;
        font-size: 11px;
    }

    .df-home-faq--compact .df-home-faq__item p {
        font-size: 10px;
        line-height: 1.3;
    }

    /* --- EDİTÖR & GALERİ --- */
    .editor-item {
        display: flex;
        gap: 14px;
        margin-bottom: 16px;
        text-decoration: none;
        align-items: center;
        padding: 10px;
        border-radius: 16px;
        transition: background-color var(--transition), transform var(--transition);
    }

    .editor-item img {
        width: 80px;
        height: 55px;
        border-radius: 10px;
        object-fit: cover;
        flex-shrink: 0;
    }

    .editor-item div {
        font-size: 14px;
        font-weight: 600;
        color: #333;
        line-height: 1.45;
    }

    .editor-item:hover {
        background: rgba(255, 255, 255, 0.72);
        transform: translateX(4px);
    }

    .editor-item:hover div {
        color: var(--primary-red);
    }

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

    .gallery-item {
        position: relative;
        border-radius: 18px;
        overflow: hidden;
        aspect-ratio: 16/10;
        display: block;
        box-shadow: var(--shadow-card);
    }

    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: 0.3s;
    }

    .gallery-item:hover img {
        transform: scale(1.1);
    }

    .gallery-caption {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
        color: white;
        font-size: 13px;
        font-weight: 600;
        padding: 28px 12px 10px 12px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .gallery-icon {
        position: absolute;
        bottom: 6px;
        right: 6px;
        background: rgba(0, 0, 0, 0.6);
        color: white;
        padding: 2px 6px;
        border-radius: 4px;
        font-size: 10px;
    }

    /* --- YARDIMCI --- */
    .empty-state {
        text-align: center;
        padding: 40px;
        background: #f8f9fa;
        border-radius: 12px;
        color: #888;
    }

    .back-to-top {
        position: fixed;
        bottom: 30px;
        right: 30px;
        width: 48px;
        height: 48px;
        background: var(--primary-red);
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        visibility: hidden;
        transition: 0.3s;
        border: none;
        z-index: 1000;
        box-shadow: 0 18px 30px rgba(223, 32, 41, 0.28);
    }

    .back-to-top.visible {
        opacity: 1;
        visibility: visible;
    }

    /* --- RESPONSIVE --- */
    @media (max-width: 991px) {
        .df-hub {
            padding: 14px;
        }

        .df-hub__grid {
            grid-template-columns: repeat(3, minmax(0, 1fr));
        }

        .df-hub__card {
            min-height: 80px;
        }

        .df-mini-grid {
            grid-template-columns: 1fr;
        }

        .df-mini-shell {
            padding: 18px;
            border-radius: 24px;
        }

        .df-mini-compact-grid {
            grid-template-columns: 1fr;
        }

        .home-sidebar {
            top: 98px;
        }

        .clean-card {
            padding: 8px;
            border-radius: 20px;
        }

        .section-header__lead {
            max-width: none;
            font-size: 13px;
        }

        .ticker-head {
            width: 110px;
            flex: 0 0 110px;
            font-size: 11px;
            padding: 0 8px;
        }

        .slider-title {
            font-size: 15px;
        }

        .section-header {
            margin-bottom: 15px;
        }

        .gallery-grid {
            gap: 8px;
        }
    }

    @media (max-width: 991.98px) {
        .df-bottom-featured__rail {
            display: flex;
            gap: 10px;
            overflow-x: auto;
            scroll-snap-type: x proximity;
            padding-bottom: 4px;
            scrollbar-width: thin;
        }

        .df-bottom-featured__card {
            flex: 0 0 38%;
            scroll-snap-align: start;
        }

        .df-bottom-news-grid {
            grid-template-columns: 1fr;
            gap: 10px;
        }

        .df-smart-route__head {
            align-items: flex-start;
            flex-direction: column;
        }

        .df-smart-route__tabs {
            width: 100%;
            overflow-x: auto;
            justify-content: flex-start;
        }

        .df-smart-route__grid {
            grid-template-columns: 1fr;
        }

        .df-bottom-news-card {
            grid-template-columns: 116px minmax(0, 1fr);
        }
    }

    @media (max-width: 576px) {

        /* =====================================================
           MOBİL ANA SIRA
        ===================================================== */
        main {
            display: flex;
            flex-direction: column;
            gap: 0;
        }

        /* 1) Fragmanlar en üst */
        main > .section-divider:first-of-type {
            order: 1;
        }

        /* 2) Sayfalama */
        main > .df-load-more {
            order: 5;
        }

        /* 3) Fragman Merkezi */
        main > .df-hub {
            order: 6;
        }

        /* 4) Kısa Geçişler / FAQ en alta */
        main > section.section-divider:not(:first-of-type) {
            order: 4;
        }

        main > .df-fragman-section {
            order: 2;
        }

        main > .df-bottom-featured {
            order: 3;
        }

        main > .df-smart-route {
            order: 2;
        }

        /* =====================================================
           FRAGMAN MERKEZİ - KÜÇÜK / ALTTA / PREMİUM
        ===================================================== */
        .df-hub {
            position: relative;
            padding: 10px 12px;
            margin-top: 10px !important;
            margin-bottom: 18px !important;
            border-radius: 16px;
            opacity: 0.96;
            background: linear-gradient(180deg, rgba(255,255,255,.95), rgba(248,250,252,.88));
            border: 1px solid rgba(15, 23, 42, 0.06);
            box-shadow: 0 12px 26px rgba(15, 23, 42, 0.05);
            overflow: hidden;
        }

        .df-hub::before {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(223,32,41,.04), rgba(255,255,255,0) 45%);
            pointer-events: none;
            border-radius: inherit;
        }

        .df-hub__header {
            flex-direction: column;
            align-items: flex-start;
            gap: 4px;
            margin-bottom: 8px;
        }

        .df-hub__title {
            font-size: 14px;
            line-height: 1.2;
        }

        .df-hub__desc {
            display: none;
        }

        .df-hub__grid {
            grid-template-columns: 1fr;
            gap: 6px;
        }

        .df-hub__card {
            min-height: 62px;
            padding: 10px 11px;
            border-radius: 12px;
            box-shadow: 0 8px 16px rgba(15, 23, 42, 0.035);
        }

        .df-hub__icon {
            width: 28px;
            height: 28px;
            border-radius: 9px;
            flex: 0 0 28px;
        }

        .df-hub__icon svg {
            width: 13px;
            height: 13px;
        }

        .df-hub__badge {
            top: 8px;
            right: 8px;
            font-size: 8px;
            padding: 4px 6px;
        }

        .df-hub__card-title {
            font-size: 13px;
            margin-top: 5px;
            margin-bottom: 5px;
            padding-right: 54px;
        }

        .df-hub__metric {
            font-size: 9px;
            padding: 3px 7px;
        }

        /* =====================================================
           KISA GEÇİŞLER BÖLÜMÜ
        ===================================================== */
        .df-mini-grid {
            grid-template-columns: 1fr;
            gap: 12px;
            margin-top: 14px;
        }

        .df-bottom-featured {
            margin-top: 20px;
            padding: 13px;
            border-radius: 16px;
        }

        .df-smart-route {
            margin-top: 12px;
            padding: 13px;
            border-radius: 16px;
        }

        .df-smart-route__title {
            font-size: 15px;
        }

        .df-smart-route__lead {
            font-size: 12px;
        }

        .df-smart-route__card {
            grid-template-columns: 112px minmax(0, 1fr);
            min-height: 88px;
        }

        .df-bottom-featured__head {
            margin-bottom: 10px;
        }

        .df-bottom-featured__title {
            font-size: 15px;
        }

        .df-bottom-featured__card {
            flex-basis: 68%;
        }

        .df-bottom-featured__news {
            margin-top: 14px;
            padding-top: 13px;
        }

        .df-bottom-featured__news-head {
            margin-bottom: 10px;
        }

        .df-bottom-featured__news-title {
            font-size: 14px;
        }

        .df-bottom-news-card {
            grid-template-columns: 94px minmax(0, 1fr);
            gap: 9px;
        }

        .df-bottom-news-card__title {
            font-size: 12px;
        }

        .df-bottom-news-card__meta {
            font-size: 10px;
        }

        .df-mini-panel__head {
            margin-bottom: 10px;
        }

        .df-mini-panel__head .section-title {
            font-size: 18px;
        }

        #df-mini-sections-title {
            margin-top: 4px;
        }

        .df-mini-shell {
            padding: 16px;
            border-radius: 18px;
        }

        .df-mini-eyebrow {
            font-size: 10px;
            padding: 6px 10px;
            margin-bottom: 10px;
        }

        .df-mini-lead {
            font-size: 12px;
            line-height: 1.6;
        }

        .df-mini-card {
            padding: 14px;
            border-radius: 14px;
        }

        .df-home-faq--compact {
            padding: 12px;
        }

        .df-mini-card__icon {
            width: 34px;
            height: 34px;
            border-radius: 12px;
            flex: 0 0 34px;
            font-size: 13px;
        }

        .df-mini-card__title {
            font-size: 14px;
        }

        .df-mini-card__meta {
            font-size: 11px;
        }

        .df-mini-list a,
        .df-mini-links a {
            padding: 10px 11px;
            border-radius: 11px;
        }

        .df-mini-item__badge,
        .df-mini-rank {
            width: 28px;
            height: 28px;
            flex-basis: 28px;
            font-size: 11px;
            border-radius: 10px;
        }

        .df-mini-arrow {
            width: 28px;
            height: 28px;
            flex-basis: 28px;
        }

        .df-mini-list strong,
        .df-mini-links strong {
            font-size: 12px;
            line-height: 1.35;
        }

        .df-mini-list span,
        .df-mini-links span {
            font-size: 10px;
        }

        /* =====================================================
           FRAGMAN GRID - TEK SÜTUN
        ===================================================== */
        .section-divider .row.g-3 {
            --bs-gutter-x: 0;
            --bs-gutter-y: 18px;
        }

        .section-divider .row.g-3 > [class*="col-"] {
            width: 100%;
            max-width: 100%;
            flex: 0 0 100%;
        }

        /* =====================================================
           TÜM KARTLAR - PREMIUM TABAN
        ===================================================== */
        .clean-card {
            position: relative;
            display: block;
            text-decoration: none;
            color: inherit;
            padding: 9px;
            border-radius: 20px;
            overflow: hidden;
            background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(247,249,252,.92));
            border: 1px solid rgba(15,23,42,.07);
            box-shadow: 0 14px 28px rgba(15, 23, 42, 0.06);
            transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
        }

        .clean-card:active {
            transform: scale(.985);
        }

        .card-img-wrap {
            position: relative;
            width: 100%;
            aspect-ratio: 16 / 9;
            border-radius: 16px;
            overflow: hidden;
            background: #000;
            box-shadow: 0 16px 28px rgba(15, 23, 42, 0.14);
        }

        .card-img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transform: scale(1.015);
            transition: transform .75s ease, filter .35s ease, opacity .35s ease;
        }

        .card-img-wrap::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(
                180deg,
                rgba(15,23,42,.04) 0%,
                rgba(15,23,42,.12) 42%,
                rgba(15,23,42,.58) 100%
            );
            pointer-events: none;
            z-index: 1;
        }

        .card-feature-label {
            position: absolute;
            top: 10px;
            left: 10px;
            z-index: 4;
            min-height: 28px;
            padding: 6px 10px;
            font-size: 10px;
            border-radius: 999px;
            background: rgba(255,255,255,.18);
            border: 1px solid rgba(255,255,255,.22);
            color: #fff;
            font-weight: 800;
            letter-spacing: .08em;
            text-transform: uppercase;
            backdrop-filter: blur(10px);
        }

        .play-overlay {
            position: absolute;
            left: 10px;
            right: 10px;
            bottom: 10px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            z-index: 4;
        }

        .play-overlay::after {
            content: "Fragmanı İzle";
            margin-left: auto;
            font-size: 10px;
            padding: 6px 10px;
            border-radius: 999px;
            background: rgba(255,255,255,.16);
            border: 1px solid rgba(255,255,255,.24);
            color: #fff;
            font-weight: 700;
            letter-spacing: .04em;
            backdrop-filter: blur(8px);
        }

        .play-btn-sm {
            width: 44px;
            height: 44px;
            font-size: 17px;
            background: linear-gradient(135deg, #f03640, #bf1e27);
            color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 12px 22px rgba(223, 32, 41, 0.38);
            transition: transform .3s ease, box-shadow .3s ease;
        }

        .card-body-outside {
            position: relative;
            padding: 12px 6px 6px;
            z-index: 3;
        }

        .card-meta-clean {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 10px;
            color: #5f6f81;
            font-weight: 800;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            margin-bottom: 7px;
        }

        .card-meta-clean::before {
            content: "";
            width: 7px;
            height: 7px;
            border-radius: 999px;
            background: linear-gradient(135deg, #df2029, #f97316);
            box-shadow: 0 0 0 4px rgba(223, 32, 41, 0.08);
            flex: 0 0 7px;
        }

        .card-title-clean {
            font-size: 15px;
            font-weight: 800;
            line-height: 1.42;
            color: var(--text-dark);
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        /* =====================================================
           1. KART - HERO PREMIUM
        ===================================================== */
        .clean-card--featured {
            padding: 0;
            border-radius: 24px;
            border: 1px solid rgba(223, 32, 41, 0.22);
            background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(255,247,248,.94));
            box-shadow: 0 22px 42px rgba(15, 23, 42, 0.12);
            overflow: hidden;
        }

        .clean-card--featured .card-img-wrap {
            aspect-ratio: 16 / 10;
            border-radius: 0;
            box-shadow: none;
        }

        .clean-card--featured .card-img-wrap::before {
            content: "";
            position: absolute;
            inset: -20%;
            background: linear-gradient(
                115deg,
                rgba(255,255,255,0) 26%,
                rgba(255,255,255,.16) 45%,
                rgba(255,255,255,0) 62%
            );
            transform: translateX(-120%);
            z-index: 2;
            pointer-events: none;
        }

        .clean-card--featured.is-inview .card-img-wrap::before {
            animation: heroShine 2.8s ease-in-out infinite;
        }

        .clean-card--featured .card-img-wrap::after {
            background: linear-gradient(
                180deg,
                rgba(15,23,42,.03) 0%,
                rgba(15,23,42,.12) 36%,
                rgba(9,13,20,.82) 100%
            );
        }

        .clean-card--featured .card-img-wrap img {
            transform: scale(1.06);
            filter: saturate(1.05) contrast(1.03);
        }

        .clean-card--featured.is-inview .card-img-wrap img {
            animation: heroZoom 5.5s ease-in-out infinite alternate;
        }

        .clean-card--featured .play-btn-sm {
            transform: scale(1.04);
        }

        .clean-card--featured.is-inview .play-btn-sm {
            animation: pulsePlay 1.9s ease-in-out infinite;
        }

        .clean-card--featured .play-overlay::before {
            content: "";
            position: absolute;
            left: 56px;
            right: 102px;
            bottom: 8px;
            height: 4px;
            border-radius: 999px;
            background: rgba(255,255,255,.22);
            overflow: hidden;
        }

        .clean-card--featured .play-overlay::after {
            content: "";
            position: absolute;
            left: 56px;
            bottom: 8px;
            height: 4px;
            width: 0;
            border-radius: 999px;
            background: linear-gradient(90deg, #fff, #ffd5d8);
            box-shadow: 0 0 12px rgba(255,255,255,.45);
            padding: 0;
            border: 0;
            margin: 0;
            backdrop-filter: none;
        }

        .clean-card--featured.is-inview .play-overlay::after {
            animation: fakeProgress 4.5s linear infinite;
        }

        /* Başlık görsel üstüne */
        .clean-card--featured .card-body-outside {
            position: absolute;
            left: 0;
            right: 0;
            bottom: 62px;
            z-index: 4;
            padding: 0 16px;
        }

        .clean-card--featured .card-meta-clean {
            color: rgba(255,255,255,.92);
            margin-bottom: 8px;
        }

        .clean-card--featured .card-meta-clean::before {
            box-shadow: 0 0 0 4px rgba(255,255,255,.12);
        }

        .clean-card--featured .card-title-clean {
            color: #fff;
            font-size: 22px;
            line-height: 1.22;
            text-shadow: 0 4px 22px rgba(0,0,0,.35);
            -webkit-line-clamp: 3;
        }

        /* =====================================================
           2. KART - SPOTLIGHT
        ===================================================== */
        .clean-card--spotlight {
            padding: 10px;
            border-radius: 22px;
            border: 1px solid rgba(15, 23, 42, 0.08);
            box-shadow: 0 18px 34px rgba(15, 23, 42, 0.08);
            background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(248,250,252,.94));
        }

        .clean-card--spotlight .card-img-wrap {
            aspect-ratio: 16 / 9.4;
        }

        .clean-card--spotlight .card-title-clean {
            font-size: 17px;
            line-height: 1.35;
        }

        .clean-card--spotlight.is-inview .card-img-wrap img {
            animation: spotlightZoom 4.8s ease-in-out infinite alternate;
        }

        .clean-card--spotlight.is-inview .play-btn-sm {
            animation: pulsePlaySoft 2.2s ease-in-out infinite;
        }

        /* =====================================================
           DİĞER KARTLAR
        ===================================================== */
        .clean-card:not(.clean-card--featured):not(.clean-card--spotlight) .card-title-clean {
            font-size: 15px;
            line-height: 1.42;
        }

        /* =====================================================
           BAŞLIKLAR / METİNLER
        ===================================================== */
        .section-title {
            font-size: 1.1rem;
        }

        .section-header {
            margin-bottom: 16px;
        }

        .section-header__lead {
            font-size: 13px;
            max-width: none;
        }

        .editor-item div,
        .gallery-caption {
            font-size: 13px;
        }

        .news-ticker {
            flex-direction: column;
            height: auto;
        }

        .ticker-head {
            width: 100%;
            flex: auto;
            padding: 8px;
            justify-content: flex-start;
        }

        .ticker-body {
            padding: 8px 0;
        }

        .gallery-grid {
            grid-template-columns: 1fr;
        }

        /* =====================================================
           ANIMASYONLAR
        ===================================================== */
        @keyframes heroZoom {
            0%   { transform: scale(1.06) translate3d(0,0,0); }
            100% { transform: scale(1.12) translate3d(0,-4px,0); }
        }

        @keyframes spotlightZoom {
            0%   { transform: scale(1.02); }
            100% { transform: scale(1.07); }
        }

        @keyframes pulsePlay {
            0%,100% { transform: scale(1.04); box-shadow: 0 12px 22px rgba(223,32,41,.40); }
            50%     { transform: scale(1.11); box-shadow: 0 16px 30px rgba(223,32,41,.55); }
        }

        @keyframes pulsePlaySoft {
            0%,100% { transform: scale(1); }
            50%     { transform: scale(1.07); }
        }

        @keyframes fakeProgress {
            0%   { width: 0; }
            100% { width: calc(100% - 158px); }
        }

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

        @media (prefers-reduced-motion: reduce) {
            .clean-card,
            .card-img-wrap img,
            .play-btn-sm,
            .clean-card--featured .play-overlay::after,
            .clean-card--featured .card-img-wrap::before {
                animation: none !important;
                transition: none !important;
            }
        }
    }

body {
        background: linear-gradient(180deg, #f7f8fb 0%, #eef2f7 48%, #f8fafc 100%);
    }

    .home-main-shell {
        margin-top: 18px !important;
    }

    .df-home-hero {
        max-width: none;
        width: 100%;
        display: grid;
        grid-template-columns: 1fr;
        align-items: center;
        gap: 22px;
        padding: 30px 0 26px;
        margin-bottom: 28px;
        text-align: left;
        border-radius: 0;
        background: transparent;
    }

    .df-home-hero.section-divider {
        margin-bottom: 28px !important;
    }

    .df-home-hero__copy {
        min-width: 0;
        max-width: 760px;
    }

    .df-home-hero::before,
    .df-home-hero::after {
        content: none;
    }

    .df-home-hero__eyebrow {
        margin-bottom: 14px;
        background: #fff;
        border-color: rgba(15, 23, 42, 0.08);
        color: #b91c1c;
        box-shadow: 0 8px 18px rgba(15, 23, 42, 0.05);
    }

    .df-home-hero__title {
        max-width: 620px;
        margin-bottom: 14px;
        letter-spacing: 0;
        font-size: 2.25rem;
    }

    .df-home-hero__lead {
        max-width: 660px;
        margin: 0 0 20px;
        color: #475569;
        line-height: 1.68;
    }

    .df-home-hero__tags {
        justify-content: flex-start;
    }

    .df-home-hero__tag {
        border-radius: 8px;
        background: #fff;
        box-shadow: 0 10px 22px rgba(15, 23, 42, 0.06);
    }

    .df-home-hero__media {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 16px;
        align-items: stretch;
        width: 100%;
    }

    .df-home-hero-shot {
        position: relative;
        display: flex;
        flex-direction: column;
        min-height: 0;
        overflow: visible;
        border-radius: 0;
        background: transparent;
        color: #0f172a;
        text-decoration: none;
        box-shadow: none;
        isolation: isolate;
    }

    .df-home-hero-shot img {
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 9;
        object-fit: cover;
        display: block;
        overflow: hidden;
        border-radius: 8px;
        opacity: 0.92;
        box-shadow: 0 22px 46px rgba(15, 23, 42, 0.16);
        transition: transform 0.28s ease, opacity 0.28s ease;
    }

    .df-home-hero-shot::after {
        content: none;
    }

    .df-home-hero-shot:hover img {
        transform: scale(1.045);
        opacity: 1;
    }

    .df-home-hero-shot__play {
        display: none;
    }

    .play-overlay,
    .play-btn-sm,
    .play-overlay::before,
    .play-overlay::after,
    .clean-card--featured .play-overlay::before,
    .clean-card--featured .play-overlay::after {
        display: none !important;
        content: none !important;
    }

    .df-home-hero-shot__title {
        position: static;
        z-index: auto;
        margin-top: 8px;
        color: #0f172a;
        font-size: 0.94rem;
        font-weight: 800;
        line-height: 1.32;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-shadow: none;
    }

    .df-home-seo-details {
        grid-column: 1 / -1;
        justify-self: center;
        width: 100%;
        max-width: none;
        margin-top: 2px;
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.84);
    }

    .df-home-seo-details[open] {
        width: 100%;
        max-width: none;
    }

    .df-fragman-section {
        margin-top: 4px;
    }

    .df-news-section {
        margin-top: 28px;
        padding: 22px;
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.82);
        border: 1px solid rgba(15, 23, 42, 0.07);
        box-shadow: 0 18px 38px rgba(15, 23, 42, 0.07);
    }

    .df-news-grid {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 14px;
    }

    .df-news-card {
        display: grid;
        grid-template-rows: auto 1fr;
        min-width: 0;
        overflow: hidden;
        border-radius: 8px;
        background: #fff;
        border: 1px solid rgba(15, 23, 42, 0.08);
        color: #0f172a;
        text-decoration: none;
        box-shadow: 0 12px 26px rgba(15, 23, 42, 0.06);
        transition: transform .2s ease, box-shadow .2s ease;
    }

    .df-news-card:hover {
        color: #0f172a;
        transform: translateY(-2px);
        box-shadow: 0 18px 34px rgba(15, 23, 42, 0.1);
    }

    .df-news-card__media {
        position: relative;
        aspect-ratio: 16 / 9;
        overflow: hidden;
        background: #111827;
    }

    .df-news-card__media img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
        transition: transform .25s ease;
    }

    .df-news-card:hover .df-news-card__media img {
        transform: scale(1.045);
    }

    .df-news-card__badge {
        position: absolute;
        left: 10px;
        top: 10px;
        max-width: calc(100% - 20px);
        padding: 5px 9px;
        border-radius: 999px;
        background: rgba(255, 255, 255, .92);
        color: #b91c1c;
        font-size: 11px;
        font-weight: 800;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .df-news-card__body {
        padding: 13px 14px 15px;
    }

    .df-news-card__title {
        margin: 0 0 8px;
        font-size: 1rem;
        line-height: 1.35;
        font-weight: 850;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .df-news-card__meta {
        margin: 0;
        color: #64748b;
        font-size: .82rem;
        font-weight: 700;
    }

    .clean-card {
        border-radius: 8px;
        padding: 8px;
        background: #fff;
        box-shadow: 0 16px 34px rgba(15, 23, 42, 0.08);
    }

    .card-img-wrap {
        border-radius: 6px;
        box-shadow: none;
    }

    .card-feature-label,
    .play-overlay::after,
    .play-btn-sm,
    .df-link-pill,
    .df-mini-pill,
    .df-mini-card,
    .df-hub__card {
        border-radius: 8px !important;
    }

    .card-title-clean {
        letter-spacing: 0;
    }

    @media (max-width: 991.98px) {
        .df-home-hero {
            grid-template-columns: 1fr;
            gap: 20px;
            padding-top: 20px;
            text-align: left;
        }

        .df-home-hero__title {
            font-size: 1.9rem;
        }

        .df-home-hero__media {
            grid-template-columns: 1fr;
        }

        .df-news-grid {
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }
    }

    @media (max-width: 575.98px) {
        .home-main-shell {
            margin-top: 8px !important;
        }

        .df-home-hero {
            padding-top: 12px;
        }

        .df-home-hero__title {
            font-size: 1.62rem;
            line-height: 1.14;
        }

        .df-home-hero__lead {
            font-size: 0.95rem;
            line-height: 1.58;
        }

        .df-home-hero__tags {
            display: grid;
            grid-template-columns: 1fr;
            gap: 8px;
        }

        .df-home-hero__tag {
            width: 100%;
            justify-content: center;
        }

        .df-home-hero__media {
            display: flex;
            grid-template-columns: none;
            gap: 10px;
            margin-right: -14px;
            padding: 2px 14px 8px 0;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            scrollbar-width: none;
            -webkit-overflow-scrolling: touch;
        }

        .df-home-hero__media::-webkit-scrollbar {
            display: none;
        }

        .df-home-hero-shot {
            flex: 0 0 min(86vw, 360px);
            scroll-snap-align: start;
        }

        .df-home-hero-shot__play {
            width: 34px;
            height: 34px;
            top: 10px;
            left: 10px;
        }

        .df-home-hero-shot__title {
            margin-top: 7px;
            font-size: 0.82rem;
        }

        .df-news-section {
            padding: 16px;
        }

        .df-news-grid {
            grid-template-columns: 1fr;
            gap: 10px;
        }

        .df-home-seo-details summary {
            min-height: 50px;
            padding: 10px;
            font-size: 0.9rem;
        }

        .df-home-seo-details summary::after {
            width: 24px;
            height: 24px;
            font-size: 0.95rem;
        }

        .df-home-seo-copy {
            font-size: 0.88rem;
            line-height: 1.62;
        }

        .df-home-seo-summary__icon {
            width: 28px;
            height: 28px;
        }

        .df-home-seo-summary__hint {
            display: none;
        }

        .df-home-seo-copy p:nth-child(n+2) {
            display: none;
        }

        .df-home-topic-card {
            padding: 11px 34px 11px 12px;
        }

        .df-home-topic-card::after {
            top: 12px;
            right: 12px;
        }

        .df-home-topic-card h2 {
            font-size: 0.9rem;
        }

        .df-home-topic-card p {
            font-size: 0.8rem;
            line-height: 1.42;
        }

    }

    /* Visual refresh: home page presentation only. */
    body {
        background:
            linear-gradient(180deg, #f8fafc 0%, #eef3f8 44%, #f9fafb 100%),
            repeating-linear-gradient(90deg, rgba(15, 23, 42, 0.018) 0 1px, transparent 1px 72px);
    }

    .home-main-shell {
        max-width: 1180px;
    }

    .df-home-hero {
        position: relative;
        overflow: hidden;
        gap: 26px;
        padding: 32px;
        margin-bottom: 30px;
        border-radius: 8px;
        background:
            linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(248, 250, 252, 0.86)),
            linear-gradient(90deg, rgba(223, 32, 41, 0.08), rgba(14, 165, 233, 0.06));
        border: 1px solid rgba(15, 23, 42, 0.07);
        box-shadow: 0 22px 52px rgba(15, 23, 42, 0.08);
    }

    .df-home-hero::before {
        content: "";
        position: absolute;
        inset: 0;
        background:
            linear-gradient(90deg, rgba(15, 23, 42, 0.04) 1px, transparent 1px),
            linear-gradient(180deg, rgba(15, 23, 42, 0.04) 1px, transparent 1px);
        background-size: 42px 42px;
        mask-image: linear-gradient(90deg, rgba(0,0,0,.7), transparent 74%);
        pointer-events: none;
    }

    .df-home-hero > * {
        position: relative;
        z-index: 1;
    }

    .df-home-hero__copy {
        max-width: 820px;
    }

    .df-home-hero__eyebrow {
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.82);
        color: #9f1239;
        backdrop-filter: blur(10px);
    }

    .df-home-hero__title {
        max-width: 780px;
        font-size: clamp(2rem, 4vw, 3.45rem);
        line-height: 1.02;
        font-weight: 900;
        text-wrap: balance;
    }

    .df-home-hero__title span {
        background: linear-gradient(135deg, #be123c 0%, #df2029 45%, #f59e0b 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .df-home-hero__lead {
        max-width: 760px;
        color: #334155;
        font-size: 1rem;
    }

    .df-home-hero__tag {
        min-height: 40px;
        border-radius: 8px;
        border-color: rgba(15, 23, 42, 0.08);
        background: rgba(255, 255, 255, 0.84);
        box-shadow: 0 12px 24px rgba(15, 23, 42, 0.055);
    }

    .df-home-hero__tag:hover {
        border-color: rgba(223, 32, 41, 0.24);
        box-shadow: 0 18px 32px rgba(15, 23, 42, 0.09);
    }

    .df-home-hero__media {
        gap: 14px;
    }

    .df-home-hero-shot {
        position: relative;
        overflow: hidden;
        border-radius: 8px;
        background: #0f172a;
        box-shadow: 0 20px 42px rgba(15, 23, 42, 0.16);
    }

    .df-home-hero-shot img {
        border-radius: 0;
        opacity: 1;
        box-shadow: none;
        transform: scale(1.02);
        transition: transform 0.45s ease, filter 0.35s ease;
    }

    .df-home-hero-shot::after {
        content: "";
        position: absolute;
        inset: 0;
        display: block;
        background: linear-gradient(180deg, rgba(15, 23, 42, 0.03) 0%, rgba(15, 23, 42, 0.12) 42%, rgba(9, 13, 20, 0.78) 100%);
        pointer-events: none;
    }

    .df-home-hero-shot:hover img {
        transform: scale(1.08);
        filter: saturate(1.12) contrast(1.04);
    }

    .df-home-hero-shot__badge {
        position: absolute;
        top: 10px;
        left: 10px;
        z-index: 2;
        padding: 5px 8px;
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.9);
        color: #be123c;
        font-size: 10px;
        font-weight: 900;
        letter-spacing: 0.05em;
        text-transform: uppercase;
    }

    .df-home-hero-shot__play {
        position: absolute;
        right: 10px;
        bottom: 10px;
        z-index: 3;
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        width: 34px;
        height: 34px;
        border-radius: 999px;
        background: #df2029;
        color: #fff;
        font-size: 12px;
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.28);
    }

    .df-home-hero-shot__title {
        position: absolute;
        left: 12px;
        right: 52px;
        bottom: 12px;
        z-index: 2;
        margin: 0;
        color: #fff;
        font-size: 0.92rem;
        text-shadow: 0 8px 18px rgba(0, 0, 0, 0.42);
    }

    .df-home-seo-details {
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.72);
        border: 1px solid rgba(15, 23, 42, 0.07);
        backdrop-filter: blur(10px);
    }

    .df-fragman-section {
        margin-top: 8px;
    }

    [data-fragman-grid] {
        --bs-gutter-x: 1rem;
        --bs-gutter-y: 1.15rem;
    }

    .clean-card {
        position: relative;
        overflow: hidden;
        padding: 0;
        border-radius: 8px;
        background: #fff;
        border: 1px solid rgba(15, 23, 42, 0.08);
        box-shadow: 0 16px 34px rgba(15, 23, 42, 0.075);
    }

    .clean-card::before {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: inherit;
        border: 1px solid rgba(255, 255, 255, 0.5);
        pointer-events: none;
        z-index: 4;
    }

    .clean-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 28px 54px rgba(15, 23, 42, 0.13);
        border-color: rgba(223, 32, 41, 0.22);
    }

    .card-img-wrap {
        border-radius: 0;
        box-shadow: none;
        background: #0f172a;
    }

    .card-img-wrap::after {
        background: linear-gradient(180deg, rgba(15, 23, 42, 0.04) 0%, rgba(15, 23, 42, 0.16) 48%, rgba(9, 13, 20, 0.74) 100%);
    }

    .card-feature-label {
        top: 10px;
        left: 10px;
        border-radius: 8px !important;
        background: rgba(255, 255, 255, 0.92);
        color: #be123c;
        border-color: rgba(255, 255, 255, 0.65);
        backdrop-filter: blur(10px);
    }

    .play-overlay {
        position: absolute;
        right: 12px;
        bottom: 12px;
        z-index: 3;
        display: flex !important;
        align-items: center;
        justify-content: center;
    }

    .play-overlay::before,
    .play-overlay::after {
        content: none !important;
        display: none !important;
    }

    .play-btn-sm {
        display: inline-flex !important;
        width: 42px;
        height: 42px;
        border-radius: 999px !important;
        background: linear-gradient(135deg, #ef4444, #b91c1c);
        color: #fff;
        box-shadow: 0 14px 28px rgba(0, 0, 0, 0.26);
        transition: transform 0.25s ease, box-shadow 0.25s ease;
    }

    .clean-card:hover .play-btn-sm {
        transform: scale(1.08);
        box-shadow: 0 18px 34px rgba(185, 28, 28, 0.38);
    }

    .card-body-outside {
        padding: 14px 14px 16px;
        background: #fff;
    }

    .card-title-clean {
        font-size: 16px;
        line-height: 1.34;
        font-weight: 900;
    }

    .clean-card--featured,
    .clean-card--spotlight {
        border-radius: 8px;
    }

    .clean-card--featured .card-img-wrap {
        aspect-ratio: 16 / 9;
    }

    .clean-card--featured .card-body-outside {
        position: absolute;
        left: 0;
        right: 58px;
        bottom: 0;
        z-index: 3;
        padding: 16px;
        background: transparent;
    }

    .clean-card--featured .card-meta-clean,
    .clean-card--featured .card-title-clean {
        color: #fff;
    }

    .clean-card--featured .card-title-clean {
        font-size: 21px;
        text-shadow: 0 10px 22px rgba(0, 0, 0, 0.42);
    }

    .clean-card--featured .play-overlay {
        bottom: 16px;
        right: 16px;
    }

    .clean-card--spotlight .card-title-clean {
        font-size: 17px;
    }

    .df-link-strip {
        justify-content: center;
        margin-top: 22px;
    }

    .df-link-pill {
        border-radius: 8px !important;
        background: rgba(255, 255, 255, 0.88);
    }

    .df-bottom-featured,
    .df-news-section,
    .df-mini-shell,
    .df-hub {
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.86);
        border: 1px solid rgba(15, 23, 42, 0.08);
        box-shadow: 0 20px 44px rgba(15, 23, 42, 0.075);
    }

    .df-bottom-featured__rail {
        gap: 12px;
    }

    .df-bottom-featured__media,
    .df-bottom-news-card__media,
    .df-news-card,
    .df-news-card__media {
        border-radius: 8px;
    }

    .df-bottom-featured__card,
    .df-bottom-news-card,
    .df-news-card {
        transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
    }

    .df-bottom-featured__card:hover,
    .df-bottom-news-card:hover,
    .df-news-card:hover {
        transform: translateY(-3px);
    }

    .df-bottom-featured__play,
    .df-news-card__badge {
        border-radius: 8px;
    }

    .df-news-card {
        box-shadow: 0 14px 30px rgba(15, 23, 42, 0.075);
    }

    .df-news-card__body {
        padding: 15px;
    }

    @media (min-width: 992px) {
        .df-home-hero {
            grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
        }

        .df-home-hero__media {
            grid-template-columns: minmax(0, 2fr) minmax(180px, 1fr);
            grid-template-rows: repeat(2, minmax(0, 1fr));
            align-self: stretch;
            min-height: 0;
        }

        .df-home-hero-shot:first-child {
            grid-column: span 2;
            grid-row: span 2;
        }

        .df-home-hero-shot:first-child .df-home-hero-shot__title {
            font-size: 1.12rem;
            right: 60px;
        }

        [data-fragman-grid] > .col-md-4:first-child {
            flex: 0 0 50%;
            max-width: 50%;
        }

        [data-fragman-grid] > .col-md-4:nth-child(2),
        [data-fragman-grid] > .col-md-4:nth-child(3) {
            flex: 0 0 25%;
            max-width: 25%;
        }

        [data-fragman-grid] > .col-md-4:first-child .clean-card,
        [data-fragman-grid] > .col-md-4:nth-child(2) .clean-card,
        [data-fragman-grid] > .col-md-4:nth-child(3) .clean-card {
            height: 100%;
        }
    }

    @media (min-width: 992px) {
        .df-home-hero-shot {
            min-height: 0;
        }

        .df-home-hero-shot img {
            width: 100%;
            height: 100%;
            min-height: 0;
            object-fit: cover;
        }

        .df-home-hero-shot:first-child {
            grid-column: 1 / 2;
            grid-row: 1 / 3;
        }

        .df-home-hero-shot:not(:first-child) .df-home-hero-shot__title {
            right: 48px;
            font-size: 0.82rem;
            line-height: 1.25;
            -webkit-line-clamp: 2;
        }

        [data-fragman-grid] > .col-md-4:nth-child(2) .clean-card,
        [data-fragman-grid] > .col-md-4:nth-child(3) .clean-card {
            height: auto;
            min-height: 0;
        }

        [data-fragman-grid] > .col-md-4:nth-child(2) .card-img-wrap,
        [data-fragman-grid] > .col-md-4:nth-child(3) .card-img-wrap {
            aspect-ratio: 16 / 9;
        }

        [data-fragman-grid] > .col-md-4:nth-child(2) .card-body-outside,
        [data-fragman-grid] > .col-md-4:nth-child(3) .card-body-outside {
            min-height: 0;
        }
    }

    @media (max-width: 991.98px) {
        .df-home-hero {
            padding: 24px;
        }

        .df-home-hero__media {
            grid-template-columns: repeat(3, minmax(0, 1fr));
        }
    }

    @media (max-width: 575.98px) {
        .df-home-hero {
            padding: 18px 14px;
            margin-left: -2px;
            margin-right: -2px;
        }

        .df-home-hero__title {
            font-size: 1.78rem;
        }

        .df-home-hero__media {
            gap: 12px;
            margin-right: -14px;
        }

        .df-home-hero-shot {
            flex-basis: min(84vw, 360px);
        }

        .df-home-hero-shot__title {
            font-size: 0.9rem;
        }

        .clean-card {
            border-radius: 8px;
        }

        .card-body-outside {
            padding: 12px 12px 14px;
        }

        .clean-card--featured .card-body-outside {
            right: 52px;
            padding: 14px;
        }

        .clean-card--featured .card-title-clean {
            font-size: 18px;
        }

        .df-bottom-featured,
        .df-news-section,
        .df-mini-shell,
        .df-hub {
            padding: 14px;
        }
    }

    /* Balanced layout pass: avoid cropped hero mosaics and uneven card rows. */
    @media (min-width: 992px) {
        .df-home-hero {
            grid-template-columns: minmax(0, 0.9fr) minmax(430px, 1.1fr);
            align-items: center;
        }

        .df-home-hero__media {
            grid-template-columns: repeat(3, minmax(0, 1fr));
            grid-template-rows: none;
            align-self: center;
            min-height: 0;
        }

        .df-home-hero-shot,
        .df-home-hero-shot:first-child {
            grid-column: auto;
            grid-row: auto;
            aspect-ratio: 16 / 9;
            min-height: 0;
        }

        .df-home-hero-shot img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center center;
        }

        .df-home-hero-shot__title,
        .df-home-hero-shot:first-child .df-home-hero-shot__title,
        .df-home-hero-shot:not(:first-child) .df-home-hero-shot__title {
            left: 10px;
            right: 46px;
            bottom: 10px;
            font-size: 0.82rem;
            line-height: 1.22;
            -webkit-line-clamp: 2;
        }

        .df-home-hero-shot__badge {
            top: 8px;
            left: 8px;
            padding: 4px 7px;
            font-size: 9px;
        }

        .df-home-hero-shot__play {
            width: 30px;
            height: 30px;
            right: 8px;
            bottom: 8px;
            font-size: 10px;
        }

        [data-fragman-grid] > .col-md-4,
        [data-fragman-grid] > .col-md-4:first-child,
        [data-fragman-grid] > .col-md-4:nth-child(2),
        [data-fragman-grid] > .col-md-4:nth-child(3) {
            flex: 0 0 33.333333%;
            max-width: 33.333333%;
        }

        [data-fragman-grid] > .col-md-4 .clean-card,
        [data-fragman-grid] > .col-md-4:first-child .clean-card,
        [data-fragman-grid] > .col-md-4:nth-child(2) .clean-card,
        [data-fragman-grid] > .col-md-4:nth-child(3) .clean-card {
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        [data-fragman-grid] > .col-md-4 .card-img-wrap,
        [data-fragman-grid] > .col-md-4:first-child .card-img-wrap,
        [data-fragman-grid] > .col-md-4:nth-child(2) .card-img-wrap,
        [data-fragman-grid] > .col-md-4:nth-child(3) .card-img-wrap {
            aspect-ratio: 16 / 9;
            flex: 0 0 auto;
        }

        [data-fragman-grid] > .col-md-4 .card-body-outside,
        [data-fragman-grid] > .col-md-4:first-child .card-body-outside {
            position: static;
            right: auto;
            bottom: auto;
            z-index: auto;
            flex: 1 1 auto;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            min-height: 94px;
            padding: 13px 14px 15px;
            background: #fff;
        }

        [data-fragman-grid] > .col-md-4 .card-meta-clean,
        [data-fragman-grid] > .col-md-4 .card-title-clean,
        [data-fragman-grid] > .col-md-4:first-child .card-meta-clean,
        [data-fragman-grid] > .col-md-4:first-child .card-title-clean {
            color: inherit;
            text-shadow: none;
        }

        [data-fragman-grid] > .col-md-4 .card-title-clean,
        [data-fragman-grid] > .col-md-4:first-child .card-title-clean,
        [data-fragman-grid] > .col-md-4:nth-child(2) .card-title-clean,
        [data-fragman-grid] > .col-md-4:nth-child(3) .card-title-clean {
            font-size: 15px;
            line-height: 1.34;
            -webkit-line-clamp: 2;
        }

        [data-fragman-grid] > .col-md-4 .play-overlay,
        [data-fragman-grid] > .col-md-4:first-child .play-overlay {
            right: 12px;
            bottom: 12px;
        }
    }

    @media (min-width: 992px) and (max-width: 1199.98px) {
        .df-home-hero {
            grid-template-columns: 1fr;
        }

        .df-home-hero__media {
            grid-template-columns: repeat(3, minmax(0, 1fr));
        }
    }

    /* Hero feature layout: one confident lead image plus two supporting covers. */
    @media (min-width: 1200px) {
        .df-home-hero {
            grid-template-columns: minmax(0, 0.86fr) minmax(560px, 1.14fr);
        }

        .df-home-hero__media {
            grid-template-columns: minmax(0, 1.75fr) minmax(180px, 1fr);
            grid-template-rows: repeat(2, minmax(0, 1fr));
            gap: 12px;
        }

        .df-home-hero-shot:first-child {
            grid-column: 1 / 2;
            grid-row: 1 / 3;
            aspect-ratio: auto;
        }

        .df-home-hero-shot:not(:first-child) {
            aspect-ratio: auto;
            min-height: 132px;
        }

        .df-home-hero-shot:first-child .df-home-hero-shot__title {
            font-size: 1.05rem;
            line-height: 1.22;
            right: 58px;
        }

        .df-home-hero-shot:first-child .df-home-hero-shot__play {
            width: 38px;
            height: 38px;
            font-size: 13px;
        }

        .df-home-hero-shot:first-child .df-home-hero-shot__badge {
            padding: 5px 8px;
            font-size: 10px;
        }
    }

    @media (min-width: 992px) and (max-width: 1199.98px) {
        .df-home-hero__media {
            grid-template-columns: minmax(0, 1.45fr) repeat(2, minmax(0, 1fr));
            align-items: stretch;
        }

        .df-home-hero-shot:first-child {
            aspect-ratio: 16 / 9;
        }
    }

    /* Final home order: new trailers first, compact intro second. */
    .df-home-hero {
        display: flex;
        flex-direction: column;
        gap: 12px;
        padding: 0 !important;
        margin-bottom: 14px !important;
        background: transparent !important;
        border: 0 !important;
        box-shadow: none !important;
        overflow: visible;
        clear: none;
    }

    .df-home-hero.section-divider {
        padding-top: 0 !important;
        margin-bottom: 14px !important;
        background: transparent !important;
        border: 0 !important;
        box-shadow: none !important;
    }

    .df-home-hero::before {
        content: none;
    }

    .df-home-hero__media-wrap {
        order: 1;
        width: 100%;
        margin: 0 !important;
        padding: 0 !important;
        background: transparent !important;
        border: 0 !important;
        box-shadow: none !important;
    }

    .df-home-hero__copy {
        order: 2;
        width: 100%;
        max-width: none;
        display: grid;
        grid-template-columns: minmax(220px, 0.55fr) minmax(0, 1fr);
        grid-template-areas:
            "eyebrow tags"
            "title lead";
        column-gap: 22px;
        row-gap: 8px;
        align-items: center;
        padding: 14px 16px;
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.94);
        border: 1px solid rgba(15, 23, 42, 0.07);
        box-shadow: 0 14px 30px rgba(15, 23, 42, 0.045);
    }

    .df-home-hero__copy .df-home-hero__eyebrow {
        grid-area: eyebrow;
        margin: 0;
        justify-self: start;
        min-height: 28px;
        padding: 5px 9px;
        font-size: 10px;
    }

    .df-home-hero__copy .df-home-hero__title {
        grid-area: title;
        max-width: none;
        margin: 0;
        font-size: clamp(1.28rem, 2vw, 1.85rem);
        line-height: 1.08;
    }

    .df-home-hero__copy .df-home-hero__lead {
        grid-area: lead;
        max-width: none;
        margin: 0;
        font-size: 0.88rem;
        line-height: 1.5;
        color: #475569;
    }

    .df-home-hero__copy .df-home-hero__tags {
        grid-area: tags;
        justify-content: flex-end;
        gap: 7px;
    }

    .df-home-hero__copy .df-home-hero__tag {
        min-height: 32px;
        padding: 6px 9px;
        font-size: 11px;
        box-shadow: 0 8px 18px rgba(15, 23, 42, 0.045);
    }

    .df-home-seo-details {
        order: 3;
        margin-top: 0 !important;
        background: rgba(255, 255, 255, 0.94);
    }

    .df-home-hero__media-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 8px;
    }

    .df-home-hero__media-head span {
        display: inline-flex;
        align-items: center;
        gap: 7px;
        min-height: 30px;
        padding: 7px 10px;
        border-radius: 8px;
        background: #fff;
        color: #be123c;
        border: 1px solid rgba(223, 32, 41, 0.12);
        box-shadow: 0 10px 22px rgba(15, 23, 42, 0.055);
        font-size: 11px;
        font-weight: 900;
        letter-spacing: 0.06em;
        text-transform: uppercase;
    }

    .df-home-hero__media {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        grid-template-rows: none !important;
        grid-auto-rows: auto !important;
        gap: 14px;
        width: 100%;
        min-height: 0 !important;
        align-self: auto !important;
        margin: 0 !important;
    }

    .df-home-hero-shot,
    .df-home-hero-shot:first-child,
    .df-home-hero-shot:not(:first-child) {
        grid-column: auto;
        grid-row: auto;
        aspect-ratio: 16 / 9;
        min-height: 0;
    }

    .df-home-hero-shot:first-child .df-home-hero-shot__title,
    .df-home-hero-shot:not(:first-child) .df-home-hero-shot__title {
        font-size: 0.96rem;
        line-height: 1.24;
        right: 52px;
    }

    .df-home-hero-shot:first-child .df-home-hero-shot__play {
        width: 34px;
        height: 34px;
        font-size: 12px;
    }

    @media (max-width: 991.98px) {
        .df-home-hero {
            padding: 16px;
        }

        .df-home-hero__copy {
            grid-template-columns: 1fr;
            grid-template-areas:
                "eyebrow"
                "title"
                "lead"
                "tags";
            padding: 13px;
        }

        .df-home-hero__copy .df-home-hero__tags {
            justify-content: flex-start;
        }

        .df-home-hero__media {
            grid-template-columns: 1fr;
            gap: 10px;
        }
    }

    @media (max-width: 575.98px) {
        .df-home-hero__media {
            display: flex;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            padding: 2px 12px 8px 0;
            margin-right: -12px;
        }

        .df-home-hero-shot {
            flex: 0 0 min(84vw, 360px);
            scroll-snap-align: start;
        }

        .df-home-hero__copy .df-home-hero__title {
            font-size: 1.35rem;
        }

        .df-home-hero__copy .df-home-hero__lead {
            font-size: 0.84rem;
        }
    }

    /* Compact first screen: intro, page context and smart route live in one panel. */
    .df-home-hero {
        display: grid !important;
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 16px !important;
        margin-bottom: 14px !important;
        border-radius: 10px !important;
        background: rgba(255, 255, 255, 0.96) !important;
        border: 1px solid rgba(15, 23, 42, 0.07) !important;
        box-shadow: 0 18px 38px rgba(15, 23, 42, 0.06) !important;
        overflow: hidden;
    }

    .df-home-hero::before,
    .df-home-hero::after {
        content: none !important;
    }

    .df-home-hero__copy {
        order: 1;
        display: grid !important;
        grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1.2fr);
        grid-template-areas:
            "eyebrow tags"
            "title lead";
        gap: 8px 18px;
        align-items: center;
        width: 100%;
        padding: 0 !important;
        border: 0 !important;
        border-radius: 0 !important;
        background: transparent !important;
        box-shadow: none !important;
    }

    .df-home-hero__copy .df-home-hero__eyebrow {
        grid-area: eyebrow;
        margin: 0;
        justify-self: start;
        min-height: 28px;
        padding: 5px 9px;
        border-radius: 8px;
        font-size: 10px;
    }

    .df-home-hero__copy .df-home-hero__title {
        grid-area: title;
        margin: 0;
        font-size: clamp(1.25rem, 2vw, 1.8rem);
        line-height: 1.08;
    }

    .df-home-hero__copy .df-home-hero__lead {
        grid-area: lead;
        margin: 0;
        max-width: 58ch;
        color: #475569;
        font-size: 0.88rem;
        line-height: 1.45;
    }

    .df-home-hero__copy .df-home-hero__tags {
        grid-area: tags;
        justify-content: flex-end;
        gap: 7px;
    }

    .df-home-hero__copy .df-home-hero__tag {
        min-height: 31px;
        padding: 6px 9px;
        border-radius: 8px;
        font-size: 11px;
        box-shadow: none;
    }

    .df-home-seo-details {
        order: 2;
        margin: 0 !important;
        border-radius: 8px;
        background: rgba(248, 250, 252, 0.82) !important;
        box-shadow: none;
    }

    .df-smart-route {
        order: 3;
        margin: 0;
        padding: 12px 0 0;
        border: 0;
        border-top: 1px solid rgba(15, 23, 42, 0.08);
        border-radius: 0;
        background: transparent;
        box-shadow: none;
    }

    .df-smart-route__head {
        margin-bottom: 10px;
    }

    .df-smart-route__title {
        font-size: 16px;
    }

    .df-smart-route__lead {
        margin-top: 3px;
        font-size: 12px;
    }

    .df-smart-route__card {
        min-height: 82px;
        grid-template-columns: 92px minmax(0, 1fr);
        padding: 8px;
        border-radius: 10px;
        background: rgba(248, 250, 252, 0.88);
        box-shadow: none;
    }

    .df-smart-route__name {
        font-size: 12px;
    }

    .df-home-hero__media-wrap {
        width: 100%;
        margin: 0 0 16px !important;
        padding: 0 !important;
        background: transparent !important;
        border: 0 !important;
        box-shadow: none !important;
    }

    @media (max-width: 991.98px) {
        .df-home-hero__copy {
            grid-template-columns: 1fr;
            grid-template-areas:
                "eyebrow"
                "title"
                "lead"
                "tags";
        }

        .df-home-hero__copy .df-home-hero__tags {
            justify-content: flex-start;
        }

        .df-smart-route__head {
            align-items: flex-start;
            flex-direction: column;
            gap: 9px;
        }

        .df-smart-route__tabs {
            width: 100%;
            overflow-x: auto;
            justify-content: flex-start;
        }

        .df-smart-route__grid {
            grid-template-columns: 1fr;
        }
    }

    @media (max-width: 575.98px) {
        .df-home-hero {
            padding: 12px !important;
            margin: 8px 0 12px !important;
            border-radius: 10px !important;
        }

        .df-home-hero__copy {
            gap: 8px;
        }

        .df-home-hero__copy .df-home-hero__title {
            font-size: 1.22rem;
            line-height: 1.13;
        }

        .df-home-hero__copy .df-home-hero__lead {
            display: none;
        }

        .df-home-hero__copy .df-home-hero__tags {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 7px;
        }

        .df-home-hero__copy .df-home-hero__tag {
            width: 100%;
            min-height: 34px;
            justify-content: center;
            padding: 7px 8px;
            font-size: 10px;
            text-align: center;
        }

        .df-home-seo-details summary {
            min-height: 44px;
            padding: 8px 9px;
        }

        .df-home-seo-summary__title {
            font-size: 12px;
        }

        .df-smart-route {
            padding-top: 10px;
        }

        .df-smart-route__eyebrow {
            font-size: 9px;
        }

        .df-smart-route__title {
            margin-top: 2px;
            font-size: 14px;
        }

        .df-smart-route__lead {
            display: none;
        }

        .df-smart-route__tab {
            min-height: 30px;
            padding: 7px 10px;
            font-size: 11px;
        }

        .df-smart-route__card {
            grid-template-columns: 88px minmax(0, 1fr);
            min-height: 74px;
            gap: 8px;
            padding: 7px;
        }

        .df-smart-route__media {
            border-radius: 8px;
        }

        .df-smart-route__step {
            width: 20px;
            height: 20px;
            font-size: 10px;
        }

        .df-smart-route__meta {
            font-size: 9px;
        }

        .df-smart-route__name {
            font-size: 11px;
            line-height: 1.25;
        }

        .df-smart-route__reason {
            display: none;
        }
    }

/* Final override: every 16:9 fragman thumbnail stays image-only. */
.df-home-hero-shot,
.clean-card,
.df-bottom-featured__card {
    text-decoration: none;
}

.df-home-hero-shot__media {
    display: block;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 8px;
    background: #f1f5f9;
}

.df-home-hero-shot__media img,
.df-home-hero-shot img,
.card-img-wrap img,
.df-bottom-featured__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1 !important;
    filter: none !important;
}

.df-home-hero-shot::before,
.df-home-hero-shot::after,
.card-img-wrap::before,
.card-img-wrap::after,
.df-bottom-featured__media::before,
.df-bottom-featured__media::after {
    content: none !important;
    display: none !important;
    background: none !important;
}

.df-home-hero-shot__play,
.play-overlay,
.play-overlay::before,
.play-overlay::after,
.play-btn-sm,
.df-bottom-featured__play {
    display: none !important;
    content: none !important;
}

.df-home-hero-shot__body {
    display: grid;
    gap: 6px;
    padding-top: 8px;
}

.df-home-hero-shot__badge,
.df-home-hero-shot:first-child .df-home-hero-shot__badge {
    position: static !important;
    inset: auto !important;
    justify-self: start;
    display: inline-flex;
    min-height: 22px;
    align-items: center;
    padding: 4px 7px;
    border-radius: 6px;
    background: rgba(223, 32, 41, 0.08);
    border: 1px solid rgba(223, 32, 41, 0.14);
    color: #be123c;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.df-home-hero-shot__title,
.df-home-hero-shot:first-child .df-home-hero-shot__title,
.df-home-hero-shot:not(:first-child) .df-home-hero-shot__title {
    position: static !important;
    inset: auto !important;
    z-index: auto !important;
    margin: 0 !important;
    color: #0f172a !important;
    font-size: 0.94rem !important;
    line-height: 1.3 !important;
    font-weight: 900;
    text-shadow: none !important;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-img-wrap {
    background: #f1f5f9 !important;
}

.clean-card--featured .card-body-outside,
.clean-card--spotlight .card-body-outside,
[data-fragman-grid] > .col-md-4:first-child .card-body-outside {
    position: static !important;
    inset: auto !important;
    z-index: auto !important;
    background: #fff !important;
}

.clean-card--featured .card-meta-clean,
.clean-card--featured .card-title-clean,
.clean-card--spotlight .card-meta-clean,
.clean-card--spotlight .card-title-clean {
    color: inherit !important;
    text-shadow: none !important;
}

.card-feature-label,
.card-feature-label--outside {
    position: static !important;
    inset: auto !important;
    z-index: auto !important;
    display: inline-flex;
    width: max-content;
    max-width: 100%;
    min-height: 22px;
    align-items: center;
    margin: 0 0 7px;
    padding: 4px 7px;
    border-radius: 6px !important;
    background: rgba(223, 32, 41, 0.08) !important;
    border: 1px solid rgba(223, 32, 41, 0.14) !important;
    color: #be123c !important;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    backdrop-filter: none !important;
}

.clean-card--featured .card-title-clean,
.clean-card--spotlight .card-title-clean {
    font-size: 16px !important;
    line-height: 1.34 !important;
}

@media (max-width: 575.98px) {
    .df-home-hero-shot__body {
        padding-top: 7px;
    }

    .df-home-hero-shot__title,
    .df-home-hero-shot:first-child .df-home-hero-shot__title,
    .df-home-hero-shot:not(:first-child) .df-home-hero-shot__title {
        font-size: 0.86rem !important;
    }
}
.df-home-hero-shot,
.df-home-hero-shot:first-child,
.df-home-hero-shot:not(:first-child) {
    display: flex !important;
    flex-direction: column;
    aspect-ratio: auto !important;
    overflow: hidden !important;
    border-radius: 8px !important;
    background: #fff !important;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
}

.df-home-hero-shot__media {
    flex: 0 0 auto;
    border-radius: 8px 8px 0 0;
}

.df-home-hero-shot__media img,
.df-home-hero-shot img {
    border-radius: 0 !important;
    box-shadow: none !important;
}

.df-home-hero-shot__body {
    min-height: 72px;
    padding: 9px 10px 11px;
    background: #fff !important;
}
.df-latest-showcase .df-home-hero-shot,
.df-latest-showcase .df-home-hero-shot:first-child,
.df-latest-showcase .df-home-hero-shot:not(:first-child) {
    aspect-ratio: auto !important;
}

/* ==========================================================
   ✨ PREMIUM VISUAL REVAMP ENHANCEMENTS
   ========================================================== */

/* 1. 3D Card Hover / Parallax Perspective */
.clean-card,
.df-home-hero-shot,
.df-smart-route__card,
.df-context-news-card,
.df-news-card {
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.4s ease, border-color 0.4s ease !important;
    transform: perspective(800px) rotateX(0deg) rotateY(0deg) scale(1);
    will-change: transform;
}

.clean-card:hover,
.df-home-hero-shot:hover,
.df-smart-route__card:hover,
.df-context-news-card:hover,
.df-news-card:hover {
    border-color: rgba(223, 32, 41, 0.22) !important;
    box-shadow: var(--shadow-soft) !important;
}

/* 2. Pulsing Live Radar Indicator */
.live-indicator {
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: #ef4444;
    border-radius: 50%;
    position: relative;
    margin-right: 8px;
    vertical-align: middle;
}

.live-indicator::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 50%;
    border: 2px solid #ef4444;
    opacity: 1;
    animation: live-pulse-wave 1.8s cubic-bezier(0.24, 0, 0.38, 1) infinite;
}

@keyframes live-pulse-wave {
    0% {
        transform: scale(0.6);
        opacity: 0.95;
    }
    100% {
        transform: scale(2.4);
        opacity: 0;
    }
}

/* 3. Play Button Hover Scale & Glow */
.card-img-wrap {
    position: relative;
    overflow: hidden;
}

.card-img-wrap::before {
    content: '\f04b';
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.7);
    width: 44px;
    height: 44px;
    background: rgba(223, 32, 41, 0.95);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    padding-left: 3px;
    opacity: 0;
    z-index: 10;
    box-shadow: 0 8px 24px rgba(223, 32, 41, 0.4);
    transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.clean-card:hover .card-img-wrap::before {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

/* 4. Skeleton Shimmer Loaders */
.skeleton-card {
    background: #fff;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
    padding: 0;
    overflow: hidden;
    height: 100%;
    box-shadow: var(--shadow-card);
}

.skeleton-media {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #f1f5f9;
}

.skeleton-body {
    padding: 12px 14px 14px;
}

.skeleton-line {
    height: 12px;
    background: #e2e8f0;
    border-radius: 4px;
    margin-bottom: 8px;
}

.skeleton-line.short {
    width: 40%;
}

.skeleton-line.title {
    height: 16px;
    width: 85%;
    margin-bottom: 12px;
}

.shimmer {
    position: relative;
    overflow: hidden;
}

.shimmer::after {
    content: '';
    position: absolute;
    inset: 0;
    transform: translateX(-100%);
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.6) 20%, rgba(255,255,255,0.8) 60%, rgba(255,255,255,0) 100%);
    animation: shimmer-swipe 1.6s infinite;
}

@keyframes shimmer-swipe {
    100% {
        transform: translateX(100%);
    }
}

/* 5. Smooth Tab Panel Fade-in Transitions */
.df-smart-route__panel {
    display: none;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.df-smart-route__panel.is-active {
    display: block !important;
    animation: slide-fade-in 0.35s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

@keyframes slide-fade-in {
    0% {
        opacity: 0;
        transform: translateY(8px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Final design guard: trailer thumbnails stay image-only, even after premium hover effects. */
.card-img-wrap::before,
.card-img-wrap::after,
.clean-card:hover .card-img-wrap::before {
    content: none !important;
    display: none !important;
    opacity: 0 !important;
}

@media (max-width: 575.98px) {
.df-latest-showcase .df-home-hero-shot {
    flex-basis: min(82vw, 340px) !important;
}
}

/* Stable newest-trailer showcase: no tilt, no jumping side cards. */
.df-latest-showcase {
    padding: 14px !important;
    margin-bottom: 18px !important;
    border: 1px solid rgba(15, 23, 42, 0.08) !important;
    border-radius: 10px !important;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.94)),
        linear-gradient(90deg, rgba(223, 32, 41, 0.05), rgba(37, 99, 235, 0.04)) !important;
    box-shadow: 0 18px 38px rgba(15, 23, 42, 0.055) !important;
}

.df-latest-showcase .df-home-hero__media-head {
    margin-bottom: 12px !important;
}

.df-latest-showcase .df-home-hero__media-head span {
    border-radius: 7px;
    box-shadow: none;
}

.df-latest-showcase .df-home-hero__media {
    display: grid !important;
    grid-template-columns: minmax(0, 1.65fr) minmax(260px, 0.85fr) !important;
    grid-template-rows: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
    align-items: stretch !important;
}

.df-latest-showcase .df-home-hero-shot,
.df-latest-showcase .df-home-hero-shot:first-child,
.df-latest-showcase .df-home-hero-shot:not(:first-child) {
    transform: none !important;
    will-change: auto !important;
    border-radius: 8px !important;
    border: 1px solid rgba(15, 23, 42, 0.08) !important;
    background: #fff !important;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.07) !important;
    transition: border-color 0.18s ease, box-shadow 0.18s ease !important;
}

.df-latest-showcase .df-home-hero-shot:hover,
.df-latest-showcase .df-home-hero-shot:focus-visible {
    transform: none !important;
    border-color: rgba(223, 32, 41, 0.22) !important;
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.095) !important;
}

.df-latest-showcase .df-home-hero-shot:first-child {
    grid-column: 1 / 2 !important;
    grid-row: 1 / 3 !important;
    min-height: 360px !important;
}

.df-latest-showcase .df-home-hero-shot:not(:first-child) {
    display: grid !important;
    grid-template-columns: minmax(128px, 43%) minmax(0, 1fr) !important;
    min-height: 174px !important;
}

.df-latest-showcase .df-home-hero-shot__media {
    position: relative;
    height: 100%;
    min-height: 0;
    border-radius: 8px 8px 0 0;
    background: #e2e8f0;
}

.df-latest-showcase .df-home-hero-shot:not(:first-child) .df-home-hero-shot__media {
    border-radius: 8px 0 0 8px;
}

.df-latest-showcase .df-home-hero-shot__media::after {
    content: "\f04b";
    position: absolute;
    right: 10px;
    bottom: 10px;
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding-left: 2px;
    border-radius: 999px;
    background: rgba(223, 32, 41, 0.94);
    color: #fff;
    font-family: "Font Awesome 6 Free";
    font-size: 12px;
    font-weight: 900;
    box-shadow: 0 10px 22px rgba(223, 32, 41, 0.28);
}

.df-latest-showcase .df-home-hero-shot__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.df-latest-showcase .df-home-hero-shot__body {
    display: grid;
    align-content: start;
    gap: 7px;
    min-height: 0;
    padding: 11px 12px 13px;
    background: #fff !important;
}

.df-latest-showcase .df-home-hero-shot:first-child .df-home-hero-shot__body {
    min-height: 86px;
    padding: 12px 14px 15px;
}

.df-latest-showcase .df-home-hero-shot__badge {
    border-radius: 6px !important;
    background: rgba(223, 32, 41, 0.08) !important;
}

.df-latest-showcase .df-home-hero-shot:first-child .df-home-hero-shot__title {
    font-size: 1.08rem !important;
}

.df-latest-showcase .df-home-hero-shot:not(:first-child) .df-home-hero-shot__title {
    font-size: 0.9rem !important;
    line-height: 1.28 !important;
    -webkit-line-clamp: 3;
}

@media (max-width: 991.98px) {
    .df-latest-showcase {
        padding: 12px !important;
    }

    .df-latest-showcase .df-home-hero__media {
        grid-template-columns: 1fr !important;
        grid-template-rows: none !important;
        gap: 10px !important;
    }

    .df-latest-showcase .df-home-hero-shot:first-child,
    .df-latest-showcase .df-home-hero-shot:not(:first-child) {
        grid-column: auto !important;
        grid-row: auto !important;
        min-height: 0 !important;
    }
}

@media (max-width: 575.98px) {
    .df-latest-showcase {
        padding: 10px !important;
    }

    .df-latest-showcase .df-home-hero__media {
        display: grid !important;
        overflow: visible !important;
        padding: 0 !important;
        margin-right: 0 !important;
    }

    .df-latest-showcase .df-home-hero-shot,
    .df-latest-showcase .df-home-hero-shot:first-child,
    .df-latest-showcase .df-home-hero-shot:not(:first-child) {
        display: flex !important;
        flex: none !important;
        min-height: 0 !important;
    }

    .df-latest-showcase .df-home-hero-shot__media,
    .df-latest-showcase .df-home-hero-shot:not(:first-child) .df-home-hero-shot__media {
        aspect-ratio: 16 / 9;
        height: auto;
        border-radius: 8px 8px 0 0;
    }
}

/* Final showcase polish: poster-style cards with readable overlays. */
.df-latest-showcase {
    padding: 16px !important;
    background: #fff !important;
}

.df-latest-showcase .df-home-hero__media {
    grid-template-columns: minmax(0, 1.78fr) minmax(280px, 0.92fr) !important;
    gap: 14px !important;
}

.df-latest-showcase .df-home-hero-shot,
.df-latest-showcase .df-home-hero-shot:first-child,
.df-latest-showcase .df-home-hero-shot:not(:first-child) {
    position: relative;
    display: block !important;
    min-height: 0 !important;
    overflow: hidden !important;
    border-radius: 8px !important;
    background: #0f172a !important;
}

.df-latest-showcase .df-home-hero-shot:first-child {
    aspect-ratio: 16 / 9 !important;
}

.df-latest-showcase .df-home-hero-shot:not(:first-child) {
    aspect-ratio: auto !important;
}

.df-latest-showcase .df-home-hero-shot__media,
.df-latest-showcase .df-home-hero-shot:not(:first-child) .df-home-hero-shot__media {
    position: absolute;
    inset: 0;
    display: block;
    height: auto;
    min-height: 0;
    aspect-ratio: auto;
    border-radius: 0;
}

.df-latest-showcase .df-home-hero-shot__media::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(15, 23, 42, 0.02) 35%, rgba(15, 23, 42, 0.86) 100%),
        linear-gradient(90deg, rgba(15, 23, 42, 0.28), rgba(15, 23, 42, 0));
}

.df-latest-showcase .df-home-hero-shot__media::after {
    z-index: 2;
}

.df-latest-showcase .df-home-hero-shot__media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.df-latest-showcase .df-home-hero-shot__body,
.df-latest-showcase .df-home-hero-shot:first-child .df-home-hero-shot__body {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    display: grid;
    gap: 8px;
    min-height: 0;
    padding: 18px 18px 20px;
    background: transparent !important;
}

.df-latest-showcase .df-home-hero-shot:not(:first-child) .df-home-hero-shot__body {
    padding: 13px 14px 15px;
}

.df-latest-showcase .df-home-hero-shot__badge,
.df-latest-showcase .df-home-hero-shot:first-child .df-home-hero-shot__badge {
    background: rgba(255, 255, 255, 0.92) !important;
    border-color: rgba(255, 255, 255, 0.28) !important;
    color: #be123c !important;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.18);
}

.df-latest-showcase .df-home-hero-shot__title,
.df-latest-showcase .df-home-hero-shot:first-child .df-home-hero-shot__title,
.df-latest-showcase .df-home-hero-shot:not(:first-child) .df-home-hero-shot__title {
    color: #fff !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.42) !important;
}

.df-latest-showcase .df-home-hero-shot:first-child .df-home-hero-shot__title {
    max-width: 760px;
    font-size: 1.18rem !important;
    line-height: 1.2 !important;
}

.df-latest-showcase .df-home-hero-shot:not(:first-child) .df-home-hero-shot__title {
    font-size: 0.95rem !important;
    line-height: 1.25 !important;
    -webkit-line-clamp: 2;
}

@media (max-width: 991.98px) {
    .df-latest-showcase .df-home-hero-shot:first-child,
    .df-latest-showcase .df-home-hero-shot:not(:first-child) {
        aspect-ratio: 16 / 9 !important;
    }
}

@media (max-width: 575.98px) {
    .df-latest-showcase .df-home-hero-shot__body,
    .df-latest-showcase .df-home-hero-shot:first-child .df-home-hero-shot__body {
        padding: 13px 13px 15px;
    }

    .df-latest-showcase .df-home-hero-shot:first-child .df-home-hero-shot__title,
    .df-latest-showcase .df-home-hero-shot:not(:first-child) .df-home-hero-shot__title {
        font-size: 0.9rem !important;
    }
}

/* No-crop showcase: full thumbnails over a softened image backdrop. */
.df-latest-showcase .df-home-hero-shot,
.df-latest-showcase .df-home-hero-shot:first-child,
.df-latest-showcase .df-home-hero-shot:not(:first-child) {
    background: #101827 !important;
}

.df-latest-showcase .df-home-hero-shot::before {
    content: "" !important;
    position: absolute;
    inset: -18px;
    display: block !important;
    z-index: 0;
    background-image:
        linear-gradient(180deg, rgba(15, 23, 42, 0.05), rgba(15, 23, 42, 0.42)),
        var(--hero-image);
    background-size: cover;
    background-position: center;
    filter: blur(18px) saturate(1.1);
    transform: scale(1.08);
    opacity: 0.92;
}

.df-latest-showcase .df-home-hero-shot__media {
    z-index: 1;
    background: transparent;
}

.df-latest-showcase .df-home-hero-shot__media::before {
    background:
        linear-gradient(180deg, rgba(15, 23, 42, 0) 44%, rgba(15, 23, 42, 0.78) 100%),
        linear-gradient(90deg, rgba(15, 23, 42, 0.22), rgba(15, 23, 42, 0.04));
}

.df-latest-showcase .df-home-hero-shot__media img {
    z-index: 1;
    object-fit: contain !important;
    object-position: center !important;
    filter: drop-shadow(0 12px 18px rgba(0, 0, 0, 0.2)) !important;
}

.df-latest-showcase .df-home-hero-shot:first-child {
    min-height: 382px !important;
}

.df-latest-showcase .df-home-hero-shot:not(:first-child) {
    min-height: 184px !important;
}

.df-latest-showcase .df-home-hero-shot__body {
    pointer-events: none;
}

/* Final correction: 16:9 thumbnails should fill the card cleanly. */
.df-latest-showcase .df-home-hero-shot::before {
    content: none !important;
    display: none !important;
}

.df-latest-showcase .df-home-hero-shot:first-child,
.df-latest-showcase .df-home-hero-shot:not(:first-child) {
    background: #0f172a !important;
}

.df-latest-showcase .df-home-hero-shot__media img {
    object-fit: cover !important;
    object-position: center center !important;
    filter: none !important;
}

.df-latest-showcase .df-home-hero-shot:first-child {
    min-height: 0 !important;
    aspect-ratio: 16 / 9 !important;
}

.df-latest-showcase .df-home-hero-shot:not(:first-child) {
    min-height: 0 !important;
}

/* News-style top showcase: one hero card + two right ad boxes. */
.df-latest-showcase {
    max-width: 1220px;
    margin-left: auto !important;
    margin-right: auto !important;
    padding: 14px !important;
    border-radius: 8px !important;
    background: #f3f4f6 !important;
    border: 0 !important;
    box-shadow: none !important;
}

.df-latest-showcase .df-home-hero__media-head {
    display: none !important;
}

.df-latest-showcase .df-home-hero__media {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 340px !important;
    grid-template-rows: none !important;
    gap: 12px !important;
    align-items: stretch !important;
}

.df-latest-showcase .df-home-hero-shot,
.df-latest-showcase .df-home-hero-shot:first-child {
    grid-column: auto !important;
    grid-row: auto !important;
    width: 100%;
    min-height: 0 !important;
    aspect-ratio: 16 / 9 !important;
    border: 0 !important;
    border-radius: 6px !important;
    box-shadow: none !important;
}

.df-latest-showcase .df-home-hero-shot__media::before {
    content: none !important;
    display: none !important;
}

.df-latest-showcase .df-home-hero-shot__media::after {
    display: none !important;
}

.df-latest-showcase .df-home-hero-shot__body {
    display: none !important;
}

/* News-style sidebar: flex column filling the right grid cell */
.df-showcase-sidebar {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
    min-width: 0;
    height: 100%;
}

.df-showcase-sidebar__ad {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    min-height: 0;
    overflow: hidden;
    border-radius: 3px;
    background: #fff;
}

.df-showcase-sidebar__ad .ad-slot,
.df-showcase-sidebar__ad .ad-container,
.df-showcase-sidebar__ad .ad-slot-shell {
    width: 300px !important;
    max-width: 300px !important;
    min-width: 0 !important;
    min-height: 250px !important;
    margin: 0 !important;
}

.df-showcase-sidebar__ad ins.adsbygoogle {
    width: 300px !important;
    height: 250px !important;
}

.df-showcase-sidebar__ad .ad-label {
    display: none !important;
}

/* News card in sidebar – image top, white body below */
.df-showcase-sidebar__news {
    display: flex !important;
    flex-direction: column !important;
    flex: 1 1 0 !important;
    min-height: 140px;
    overflow: hidden !important;
    border-radius: 10px !important;
    background: #fff !important;
    text-decoration: none !important;
    border: 1px solid rgba(15, 23, 42, 0.07) !important;
    transition: box-shadow 0.25s ease, border-color 0.25s ease !important;
}

.df-showcase-sidebar__news:hover {
    border-color: rgba(15, 23, 42, 0.13);
    box-shadow: 0 8px 28px rgba(15, 23, 42, 0.12);
}

.df-showcase-sidebar__news-media {
    position: relative;
    flex: 1 1 auto;
    min-height: 0;
    overflow: hidden;
    background: #e2e8f0;
}

.df-showcase-sidebar__news-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.df-showcase-sidebar__news:hover .df-showcase-sidebar__news-media img {
    transform: scale(1.05);
}

.df-showcase-sidebar__news-media::after {
    content: none;
}

.df-showcase-sidebar__news-body {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 12px 14px 14px;
    background: #fff;
}

.df-showcase-sidebar__news-title {
    color: #1e293b;
    font-size: 0.88rem;
    font-weight: 700;
    line-height: 1.36;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-shadow: none;
}

/* Keep old df-showcase-ads backward compat */
.df-showcase-ads {
    display: grid;
    grid-template-rows: repeat(2, minmax(0, 1fr));
    gap: 12px;
    min-width: 0;
}

.df-showcase-ads__slot {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    min-height: 0;
    overflow: hidden;
    border-radius: 3px;
    background: #fff;
}

.df-showcase-ads__slot .ad-slot,
.df-showcase-ads__slot .ad-container,
.df-showcase-ads__slot .ad-slot-shell {
    width: 300px !important;
    max-width: 300px !important;
    min-width: 0 !important;
    min-height: 250px !important;
    margin: 0 !important;
}

.df-showcase-ads__slot ins.adsbygoogle {
    width: 300px !important;
    height: 250px !important;
}

.df-showcase-ads__slot .ad-label {
    display: none !important;
}

@media (max-width: 991.98px) {
    .df-latest-showcase {
        padding: 10px !important;
    }

    .df-latest-showcase .df-home-hero__media {
        grid-template-columns: 1fr !important;
    }

    .df-showcase-sidebar {
        flex-direction: row;
        gap: 10px;
    }

    .df-showcase-sidebar__ad {
        flex: 0 0 auto;
    }

    .df-showcase-sidebar__news {
        min-height: 200px;
    }

    .df-showcase-ads {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: none;
    }
}

@media (max-width: 575.98px) {
    .df-latest-showcase .df-home-hero-shot__body,
    .df-latest-showcase .df-home-hero-shot:first-child .df-home-hero-shot__body {
        padding: 16px 16px 18px;
    }

    .df-latest-showcase .df-home-hero-shot:first-child .df-home-hero-shot__title,
    .df-latest-showcase .df-home-hero-shot__title {
        font-size: 1.05rem !important;
        line-height: 1.18 !important;
    }

    .df-showcase-sidebar {
        flex-direction: column;
    }

    .df-showcase-sidebar__news {
        min-height: 180px;
    }

    .df-showcase-ads {
        grid-template-columns: 1fr;
    }
}
