.hsv-story {
    background: var(--hsv-player-bg, #09090b);
    color: var(--hsv-detail-value-color, #fff);
    font-family: inherit;
    margin: 28px auto;
    max-width: 1180px;
    overflow: hidden;
    width: 100%;
}

.hsv-mini-nav {
    display: grid;
    gap: 8px;
    position: fixed;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
}

.hsv-mini-nav-link {
    align-items: center;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 999px;
    color: #fff;
    display: flex;
    font-size: 11px;
    font-weight: 800;
    height: 30px;
    justify-content: center;
    text-decoration: none;
    width: 48px;
}

.hsv-mini-nav-link.is-active,
.hsv-mini-nav-link:hover {
    background: var(--hsv-number-color, #ef233c);
    color: #fff;
}

.hsv-story.hsv-layout-full {
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    max-width: none;
    width: 100vw;
}

.hsv-story-section {
    align-items: center;
    display: grid;
    min-height: min(76vh, 760px);
    padding: clamp(24px, 4vw, 56px);
    position: relative;
    scroll-snap-align: start;
    scroll-margin-top: var(--hsv-scroll-offset, 0px);
}

.hsv-story-section > * {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 420ms ease, transform 520ms ease;
}

.hsv-story-section.is-visible > * {
    opacity: 1;
    transform: translateY(0);
}

.hsv-story[data-snap="true"] {
    scroll-snap-type: y proximity;
}

.hsv-player-section {
    background: var(--hsv-player-bg, #09090b);
    gap: clamp(24px, 4vw, 56px);
    grid-template-columns: minmax(260px, 0.9fr) minmax(260px, 1.1fr);
}

.hsv-intro-section {
    align-items: start;
    background: var(--hsv-player-bg, #09090b);
    justify-items: center;
    min-height: auto;
    text-align: center;
}

.hsv-intro-content {
    max-width: 1180px;
    width: 100%;
}

.hsv-season {
    color: var(--hsv-number-color, #ef233c);
    font-size: clamp(18px, 2vw, 28px);
    font-weight: 900;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.hsv-intro-content h2 {
    color: var(--hsv-name-color, #fff);
    font-size: clamp(34px, 5vw, 68px);
    line-height: 1;
    margin: 0 0 10px;
    text-transform: uppercase;
}

.hsv-motto {
    color: var(--hsv-bio-color, #d7dce3);
    font-size: clamp(18px, 2vw, 28px);
    font-weight: 800;
    margin: 0 0 18px;
}

.hsv-team-photo {
    margin: 0 auto;
    max-width: min(1040px, 100%);
}

.hsv-team-image {
    background: var(--hsv-image-bg, #09090b);
    border-radius: 8px;
    box-shadow: 0 22px 70px rgba(0, 0, 0, 0.35);
    display: block;
    height: auto;
    max-height: 42vh;
    object-fit: contain;
    width: 100%;
}

.hsv-team-image[data-hsv-lightbox],
.hsv-player-image[data-hsv-lightbox] {
    cursor: zoom-in;
}

.hsv-lightbox {
    align-items: center;
    background: rgba(0, 0, 0, 0.9);
    cursor: zoom-out;
    display: flex;
    inset: 0;
    justify-content: center;
    padding: 24px;
    position: fixed;
    z-index: 99999;
}

body.hsv-lightbox-open {
    overflow: hidden;
}

.hsv-lightbox img {
    border-radius: 8px;
    box-shadow: 0 22px 70px rgba(0, 0, 0, 0.6);
    max-height: calc(100vh - 48px);
    max-width: calc(100vw - 48px);
    object-fit: contain;
}

.hsv-lightbox-close {
    align-items: center;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 999px;
    color: #fff;
    display: flex;
    font-size: 28px;
    height: 44px;
    justify-content: center;
    line-height: 1;
    position: fixed;
    right: 18px;
    top: 18px;
    width: 44px;
}

.hsv-team-caption {
    color: var(--hsv-bio-color, #d7dce3);
    font-size: clamp(14px, 1.4vw, 18px);
    line-height: 1.45;
    margin: 12px auto 0;
    max-width: 1040px;
    text-align: left;
}

.hsv-team-caption strong {
    color: var(--hsv-name-color, #fff);
    display: block;
    margin-bottom: 4px;
}

.hsv-player-media {
    align-self: stretch;
    height: min(54vh, 520px);
    min-height: 340px;
}

.hsv-player-image,
.hsv-image-placeholder {
    background: var(--hsv-image-bg, #09090b);
    border-radius: 8px;
    box-shadow: 0 22px 70px rgba(0, 0, 0, 0.35);
    height: 100%;
    object-fit: contain;
    object-position: center;
    width: 100%;
}

.hsv-image-placeholder {
    background: var(--hsv-image-bg, #09090b);
}

.hsv-player-content {
    max-width: 680px;
}

.hsv-number {
    color: var(--hsv-number-color, #ef233c);
    font-size: clamp(46px, 7vw, 96px);
    font-weight: 900;
    letter-spacing: 0;
    line-height: 0.8;
    margin-bottom: 18px;
}

.hsv-player-content h2 {
    color: var(--hsv-name-color, #fff);
    font-size: clamp(34px, 5vw, 66px);
    font-weight: 900;
    letter-spacing: 0;
    line-height: 0.95;
    margin: 0 0 28px;
    text-transform: uppercase;
}

.hsv-details {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 0 0 28px;
}

.hsv-fun-facts {
    display: grid;
    gap: 10px;
    margin: 22px 0 0;
}

.hsv-fun-facts div {
    border-left: 3px solid var(--hsv-number-color, #ef233c);
    padding-left: 12px;
}

.hsv-fun-facts dt {
    color: var(--hsv-detail-label-color, #b9c2d0);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hsv-fun-facts dd {
    color: var(--hsv-detail-value-color, #fff);
    font-size: clamp(15px, 1.35vw, 19px);
    font-weight: 800;
    margin: 4px 0 0;
}

.hsv-share-link {
    color: var(--hsv-number-color, #ef233c);
    display: inline-block;
    font-size: 14px;
    font-weight: 800;
    margin-top: 22px;
    text-decoration: none;
}

.hsv-share-link:hover {
    color: var(--hsv-name-color, #fff);
}

.hsv-details div {
    border-top: 1px solid var(--hsv-line-color, #3f3f46);
    padding-top: 10px;
}

.hsv-details dt {
    color: var(--hsv-detail-label-color, #b9c2d0);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    margin-bottom: 4px;
    text-transform: uppercase;
}

.hsv-details dd {
    color: var(--hsv-detail-value-color, #fff);
    font-size: clamp(16px, 1.55vw, 22px);
    font-weight: 800;
    margin: 0;
}

.hsv-bio {
    color: var(--hsv-bio-color, #d7dce3);
    font-size: clamp(16px, 1.45vw, 20px);
    line-height: 1.45;
}

.hsv-bio p:last-child,
.hsv-text-inner p:last-child {
    margin-bottom: 0;
}

.hsv-text-section {
    background: var(--hsv-free-text-bg, #ef233c);
    justify-items: center;
    text-align: center;
}

.hsv-text-inner {
    color: var(--hsv-free-text-color, #fff);
    font-size: clamp(26px, 4vw, 54px);
    font-weight: 900;
    line-height: 1.08;
    max-width: 1050px;
}

@media (max-width: 820px) {
    .hsv-mini-nav {
        bottom: 14px;
        display: flex;
        left: 50%;
        max-width: calc(100vw - 28px);
        overflow-x: auto;
        right: auto;
        top: auto;
        transform: translateX(-50%);
    }

    .hsv-mini-nav-link {
        flex: 0 0 auto;
    }

    .hsv-story-section {
        min-height: auto;
        padding: 34px 20px 44px;
    }

    .hsv-story-section > * {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .hsv-team-image {
        max-height: none;
    }

    .hsv-player-section {
        grid-template-columns: 1fr;
    }

    .hsv-player-media {
        height: auto;
        min-height: 0;
        order: -1;
    }

    .hsv-player-image,
    .hsv-image-placeholder {
        aspect-ratio: 4 / 5;
        height: auto;
    }

    .hsv-details {
        grid-template-columns: 1fr;
    }
}
