:root {
    --df-bg: #f4f6fb;
    --df-surface: #ffffff;
    --df-text: #172033;
    --df-muted: #667085;
    --df-line: #e5e9f2;
    --df-accent: #5b55e7;
    --df-accent-soft: #eeedff;
    --df-shadow: 0 18px 45px rgba(35, 42, 73, 0.08);
    --df-radius: 22px;
}

body.drama-fleet-page {
    margin: 0;
    color: var(--df-text);
    background:
        radial-gradient(circle at 85% 8%, rgba(91, 85, 231, 0.13), transparent 28rem),
        var(--df-bg);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.7;
}

.df-shell {
    width: min(1180px, calc(100% - 40px));
    margin-inline: auto;
}

.df-header {
    position: relative;
    z-index: 10;
    border-bottom: 1px solid rgba(229, 233, 242, 0.9);
    background: rgba(255, 255, 255, 0.86);
    backdrop-filter: blur(16px);
}

.df-header__inner {
    display: flex;
    min-height: 72px;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.df-brand,
.df-home-link {
    color: var(--df-text);
    text-decoration: none;
}

.df-brand {
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.df-home-link {
    padding: 8px 14px;
    border: 1px solid var(--df-line);
    border-radius: 999px;
    font-size: 0.92rem;
    font-weight: 700;
}

.df-home-link:hover,
.df-home-link:focus-visible {
    border-color: var(--df-accent);
    color: var(--df-accent);
}

.df-main {
    padding-block: 28px 72px;
}

.df-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
    color: var(--df-muted);
    font-size: 0.9rem;
}

.df-breadcrumb a {
    color: var(--df-accent);
    text-decoration: none;
}

.df-article {
    display: grid;
    gap: 28px;
}

.df-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(220px, 330px);
    gap: clamp(28px, 6vw, 72px);
    align-items: center;
    overflow: hidden;
    padding: clamp(28px, 5vw, 64px);
    border: 1px solid rgba(255, 255, 255, 0.75);
    border-radius: 30px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(243, 242, 255, 0.96));
    box-shadow: var(--df-shadow);
}

.df-kicker {
    display: inline-flex;
    margin: 0 0 12px;
    padding: 6px 12px;
    border-radius: 999px;
    color: var(--df-accent);
    background: var(--df-accent-soft);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.df-hero h1 {
    max-width: 18ch;
    margin: 0;
    color: var(--df-text);
    font-size: clamp(2.25rem, 5vw, 4.7rem);
    line-height: 1.02;
    letter-spacing: -0.055em;
}
.df-play-actions {
    margin-top: 24px;
}

.df-play-button {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 11px 20px;
    border: 1px solid transparent;
    border-radius: 999px;
    color: #fff;
    background: var(--df-accent);
    box-shadow: 0 12px 24px rgba(91, 85, 231, 0.24);
    font-weight: 800;
    line-height: 1.2;
    text-decoration: none;
    transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.df-play-button:visited {
    color: #fff;
}

.df-play-button:hover,
.df-play-button:focus-visible {
    color: #fff;
    background: #4741c7;
    box-shadow: 0 16px 30px rgba(71, 65, 199, 0.3);
    transform: translateY(-1px);
}

.df-play-button:focus-visible {
    outline: 3px solid rgba(91, 85, 231, 0.3);
}

.df-original-title {
    margin: 14px 0 0;
    color: var(--df-muted);
    font-size: 1rem;
}

.df-summary {
    max-width: 66ch;
    margin: 26px 0 0;
    color: #354057;
    font-size: clamp(1.03rem, 1.5vw, 1.2rem);
}

.df-updated {
    margin: 22px 0 0;
    color: var(--df-muted);
    font-size: 0.86rem;
}

.df-poster {
    margin: 0;
    transform: rotate(1.5deg);
}

.df-poster img {
    display: block;
    width: 100%;
    aspect-ratio: 2 / 3;
    border: 8px solid #fff;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 22px 40px rgba(32, 33, 63, 0.2);
}

.df-card {
    padding: clamp(22px, 3vw, 34px);
    border: 1px solid var(--df-line);
    border-radius: var(--df-radius);
    background: var(--df-surface);
    box-shadow: var(--df-shadow);
}

.df-card h2,
.df-section h2 {
    margin: 0 0 18px;
    color: var(--df-text);
    font-size: clamp(1.35rem, 2vw, 1.9rem);
    line-height: 1.25;
    letter-spacing: -0.025em;
}

.df-facts dl {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
    margin: 0;
}

.df-facts dl div {
    padding: 16px;
    border-radius: 16px;
    background: #f8f9fc;
}

.df-facts dt {
    margin-bottom: 5px;
    color: var(--df-muted);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.df-facts dd {
    margin: 0;
    font-weight: 750;
}

.df-content-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 340px);
    gap: 28px;
    align-items: start;
}

.df-story {
    padding: clamp(26px, 4vw, 48px);
    border: 1px solid var(--df-line);
    border-radius: var(--df-radius);
    background: var(--df-surface);
    box-shadow: var(--df-shadow);
}

.df-section + .df-section {
    margin-top: 42px;
    padding-top: 38px;
    border-top: 1px solid var(--df-line);
}

.df-section p {
    margin: 0;
    color: #354057;
}

.df-section p + p {
    margin-top: 16px;
}

.df-sidebar {
    display: grid;
    gap: 22px;
    position: sticky;
    top: 24px;
}

.df-links ol,
.df-sources ol {
    display: grid;
    gap: 12px;
    margin: 0;
    padding-left: 1.25rem;
}

.df-links a,
.df-sources a {
    color: #34309f;
    font-weight: 700;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.df-links a:hover,
.df-links a:focus-visible,
.df-sources a:hover,
.df-sources a:focus-visible {
    color: var(--df-accent);
}

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

.df-cast__item {
    display: grid;
    gap: 3px;
    padding: 14px 16px;
    border-radius: 14px;
    background: #f8f9fc;
}

.df-cast__item span {
    color: var(--df-muted);
    font-size: 0.9rem;
}

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

.df-faq details {
    padding: 16px 18px;
    border: 1px solid var(--df-line);
    border-radius: 14px;
    background: #fbfcfe;
}

.df-faq summary {
    cursor: pointer;
    font-weight: 800;
}

.df-faq details p {
    margin-top: 12px;
}

.df-sources li {
    color: var(--df-muted);
}

.df-footer {
    padding: 26px 0;
    border-top: 1px solid var(--df-line);
    color: var(--df-muted);
    background: var(--df-surface);
    font-size: 0.9rem;
}

.df-footer p {
    margin: 0;
}

@media (max-width: 900px) {
    .df-hero {
        grid-template-columns: 1fr;
    }

    .df-poster {
        width: min(320px, 80%);
        margin-inline: auto;
        order: -1;
    }

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

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

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

@media (max-width: 620px) {
    .df-shell {
        width: min(100% - 24px, 1180px);
    }

    .df-main {
        padding-block: 18px 48px;
    }

    .df-hero {
        padding: 24px;
        border-radius: 22px;
    }

    .df-hero h1 {
        font-size: clamp(2rem, 12vw, 3.2rem);
    }

    .df-facts dl,
    .df-sidebar,
    .df-cast {
        grid-template-columns: 1fr;
    }
}

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