.dfh-home {
    --dfh-accent: #ff5b3a;
    --dfh-bg: #0d1012;
    --dfh-panel: #161a1d;
    --dfh-panel-soft: #1b2024;
    --dfh-line: rgba(255, 255, 255, 0.12);
    --dfh-ink: #f5f4ef;
    --dfh-muted: #a5a9ac;
    position: relative;
    isolation: isolate;
    overflow: hidden;
    width: 100%;
    background:
        radial-gradient(circle at 86% 9%, color-mix(in srgb, var(--dfh-accent) 14%, transparent), transparent 28rem),
        var(--dfh-bg);
    color: var(--dfh-ink);
    font-family: Inter, "Helvetica Neue", Arial, sans-serif;
}

.dfh-home *,
.dfh-home *::before,
.dfh-home *::after {
    box-sizing: border-box;
}

.dfh-home a {
    color: inherit;
    text-decoration: none;
}

.dfh-shell {
    width: min(1320px, calc(100% - 72px));
    margin-inline: auto;
}

.dfh-header {
    position: relative;
    z-index: 5;
    border-top: 3px solid var(--dfh-accent);
    border-bottom: 1px solid var(--dfh-line);
    background: rgba(8, 10, 11, 0.96);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.3);
}

.dfh-header__inner {
    min-height: 84px;
    display: grid;
    grid-template-columns: minmax(180px, 250px) minmax(0, 1fr);
    align-items: stretch;
    gap: 40px;
}

.dfh-brand {
    display: flex;
    align-items: center;
}

.dfh-brand .custom-logo-link {
    display: inline-flex;
    align-items: center;
    height: 72px;
}

.dfh-brand .custom-logo {
    display: block;
    width: auto;
    max-width: 210px;
    max-height: 68px;
    filter: grayscale(1) brightness(0) invert(1);
}

.dfh-brand__name {
    font-size: clamp(1rem, 2vw, 1.5rem);
    font-weight: 900;
    letter-spacing: -0.04em;
    text-transform: uppercase;
}

.dfh-nav {
    min-width: 0;
}

.dfh-nav__links {
    height: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    list-style: none;
}

.dfh-nav__links > li {
    position: relative;
    display: flex;
    margin: 0;
}

.dfh-nav__links > li > a {
    display: flex;
    align-items: center;
    padding: 0 28px;
    border-inline-start: 1px solid transparent;
    color: #efeee9;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.075em;
    text-transform: uppercase;
    transition: color 160ms ease, background-color 160ms ease;
}

.dfh-nav__links > li > a::after {
    content: "";
    position: absolute;
    inset: auto 28px 0;
    height: 3px;
    background: var(--dfh-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 160ms ease;
}

.dfh-nav__links > li.current-menu-item > a,
.dfh-nav__links > li > a:hover,
.dfh-nav__links > li > a:focus-visible {
    background: rgba(255, 255, 255, 0.035);
    color: var(--dfh-accent);
}

.dfh-nav__links > li.current-menu-item > a::after,
.dfh-nav__links > li > a:hover::after,
.dfh-nav__links > li > a:focus-visible::after {
    transform: scaleX(1);
}

.dfh-hero {
    position: relative;
    border-bottom: 1px solid var(--dfh-line);
    background:
        linear-gradient(110deg, transparent 0 58%, color-mix(in srgb, var(--dfh-accent) 7%, transparent) 58% 74%, transparent 74%),
        repeating-linear-gradient(118deg, transparent 0 58px, rgba(255, 255, 255, 0.018) 59px 60px);
}

.dfh-hero::after {
    content: "LATEST DROP";
    position: absolute;
    left: -0.025em;
    bottom: -0.16em;
    z-index: 0;
    color: transparent;
    font-size: clamp(4rem, 10vw, 9rem);
    font-weight: 950;
    letter-spacing: -0.075em;
    line-height: 1;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.045);
    pointer-events: none;
}

.dfh-hero__grid {
    position: relative;
    z-index: 1;
    padding-block: clamp(40px, 6vw, 76px);
    display: grid;
    grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.65fr);
    align-items: center;
    gap: clamp(32px, 5vw, 68px);
}

.dfh-kicker {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--dfh-accent);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.dfh-kicker::before {
    content: "";
    width: 34px;
    height: 4px;
    background: var(--dfh-accent);
    box-shadow: 0 0 20px color-mix(in srgb, var(--dfh-accent) 55%, transparent);
}

.dfh-hero__copy h1 {
    margin: 20px 0 16px;
    max-width: 10ch;
    color: var(--dfh-ink);
    font-size: clamp(2.9rem, 5.6vw, 5.4rem);
    font-weight: 900;
    letter-spacing: -0.065em;
    line-height: 0.92;
}

.dfh-hero__copy p {
    max-width: 46ch;
    margin: 0;
    color: var(--dfh-muted);
    font-size: clamp(0.92rem, 1.2vw, 1.04rem);
    line-height: 1.65;
}

.dfh-meta {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px 24px;
    color: #deddd7;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.dfh-meta span + span::before {
    content: "•";
    margin-right: 24px;
    color: var(--dfh-accent);
}

.dfh-play {
    width: fit-content;
    min-height: 48px;
    margin-top: 28px;
    padding: 0 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid var(--dfh-accent);
    background: var(--dfh-accent);
    color: #0c0e0f !important;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    box-shadow: 0 14px 36px color-mix(in srgb, var(--dfh-accent) 24%, transparent);
    transition: transform 160ms ease, box-shadow 160ms ease;
}

.dfh-play:hover,
.dfh-play:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 18px 44px color-mix(in srgb, var(--dfh-accent) 34%, transparent);
}

.dfh-hero__media {
    position: relative;
    display: block;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: #060708;
    box-shadow:
        20px 22px 0 color-mix(in srgb, var(--dfh-accent) 10%, transparent),
        0 36px 80px rgba(0, 0, 0, 0.38);
}

.dfh-hero__media::before,
.dfh-hero__media::after {
    content: "";
    position: absolute;
    z-index: 2;
    width: 64px;
    height: 5px;
    background: var(--dfh-accent);
    box-shadow: 0 0 24px color-mix(in srgb, var(--dfh-accent) 52%, transparent);
}

.dfh-hero__media::before {
    inset: -1px auto auto -1px;
}

.dfh-hero__media::after {
    inset: auto -1px -1px auto;
}

.dfh-hero__media img,
.dfh-card__thumb img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: contain;
    background: #060708;
}

.dfh-library {
    padding-block: clamp(42px, 6vw, 78px) clamp(64px, 8vw, 110px);
}

.dfh-section-title {
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.dfh-section-title h2 {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 13px;
    color: var(--dfh-ink);
    font-size: clamp(1.45rem, 2.5vw, 2.15rem);
    font-weight: 850;
    letter-spacing: -0.035em;
}

.dfh-section-title h2::before {
    content: "";
    width: 6px;
    height: 1.15em;
    background: var(--dfh-accent);
    box-shadow: 0 0 18px color-mix(in srgb, var(--dfh-accent) 44%, transparent);
}

.dfh-section-title > span {
    color: var(--dfh-muted);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

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

.dfh-card {
    min-width: 0;
    margin: 0;
    overflow: hidden;
    border: 1px solid var(--dfh-line);
    border-radius: 10px;
    background: linear-gradient(145deg, var(--dfh-panel-soft), var(--dfh-panel));
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.16);
    transition: transform 170ms ease, border-color 170ms ease, box-shadow 170ms ease;
}

.dfh-card:hover {
    transform: translateY(-4px);
    border-color: color-mix(in srgb, var(--dfh-accent) 58%, transparent);
    box-shadow: 0 22px 44px rgba(0, 0, 0, 0.24);
}

.dfh-card__thumb {
    position: relative;
    display: block;
    overflow: hidden;
    border-bottom: 1px solid var(--dfh-line);
}

.dfh-card__number {
    position: absolute;
    z-index: 2;
    inset: 11px auto auto 11px;
    min-width: 34px;
    padding: 6px 8px;
    border-left: 4px solid var(--dfh-accent);
    background: rgba(5, 6, 7, 0.88);
    color: white;
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.08em;
}

.dfh-card__body {
    padding: 18px 18px 17px;
}

.dfh-card__body h3 {
    min-height: 2.55em;
    margin: 0 0 18px;
    color: var(--dfh-ink);
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.28;
}

.dfh-card__body h3 a:hover,
.dfh-card__body h3 a:focus-visible {
    color: var(--dfh-accent);
}

.dfh-card__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    color: var(--dfh-muted);
    font-size: 0.68rem;
}

.dfh-card__meta span {
    color: #deddd8;
}

.dfh-empty {
    padding: 32px;
    border: 1px solid #d8d8d8;
    background: #fff;
    color: #222;
}

@media (max-width: 1050px) {
    .dfh-shell {
        width: min(100% - 40px, 920px);
    }

    .dfh-header__inner {
        grid-template-columns: 190px minmax(0, 1fr);
        gap: 12px;
    }

    .dfh-nav__links > li > a {
        padding-inline: 16px;
    }

    .dfh-nav__links > li > a::after {
        inset-inline: 16px;
    }

    .dfh-hero__grid {
        grid-template-columns: 0.8fr 1.2fr;
    }

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

@media (max-width: 760px) {
    .dfh-shell {
        width: min(100% - 28px, 640px);
    }

    .dfh-header__inner {
        display: block;
        padding-block: 12px 0;
    }

    .dfh-brand .custom-logo-link {
        height: 58px;
    }

    .dfh-brand .custom-logo {
        max-height: 54px;
    }

    .dfh-nav {
        width: 100%;
        overflow-x: auto;
        scrollbar-width: thin;
    }

    .dfh-nav__links {
        min-width: max-content;
        height: 56px;
    }

    .dfh-nav__links > li > a {
        padding-inline: 17px;
        white-space: nowrap;
    }

    .dfh-hero__grid {
        grid-template-columns: 1fr;
    }

    .dfh-hero__copy h1 {
        max-width: 12ch;
    }

    .dfh-hero__media {
        box-shadow:
            10px 12px 0 color-mix(in srgb, var(--dfh-accent) 10%, transparent),
            0 24px 56px rgba(0, 0, 0, 0.34);
    }

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

    .dfh-card__body h3 {
        min-height: auto;
    }
}

@media (prefers-reduced-motion: reduce) {
    .dfh-home *,
    .dfh-home *::before,
    .dfh-home *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}
