﻿:root {
    --red: #c0001e;
    --dark-red: #920818;
    --gold: #c8a951;
    --green: #1a4a2e;
    --white: #ffffff;
    --off-white: #f5f0e8;
    --text: #1a1a1a;
}

body {
    background: linear-gradient(130.11deg, #FFFFFF 4.54%, #F5E6CF 93.02%);
}
/* ──────────── NAV ──────────── */
.nav {
    background: linear-gradient(90.24deg, #920818 7.16%, #F5001C 98.86%);
    padding: 16px 0;
    gap: 16px;
}

    .nav > * {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

.nav-left {
    display: flex;
    align-items: center;
    gap: 48px;
    font: 500 16px/24px var(--inter-font);
    color: #fff;
}

.nav-back {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
}

    .nav-back svg {
        width: 56px;
        height: 40px;
        border: 1px solid #fff;
        border-radius: 8px;
        padding: 8px 16px;
    }

.nav-link {
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
}

    .nav-link:hover, .nav-back:hover {
        color: #fff;
    }

.nav-search {
    display: flex;
    align-items: center;
}

.nav-search__btn {
    border: none;
    background: white;
    border-radius: 24px 0 0 24px;
    padding: 3px 4px 2px 16px;
    cursor: pointer;
    height: 32px;
}

    .nav-search__btn > * {
        width: 24px;
        height: 24px;
    }

.nav-search input {
    border: none;
    outline: none;
    font: 400 14px/20px var(--inter-font);
    width: 130px;
    background: white;
    border-radius: 0 24px 24px 0;
    padding: 4px 16px 3px 0;
    height: 32px;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-vnr {
    height: 50px;
}

.logo-vna {
    display: flex;
    align-items: center;
    gap: 2px;
}

.logo-vna-text {
    font-size: 22px;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    font-style: italic;
    letter-spacing: -1px;
}

.logo-vna-sub {
    font-size: 9px;
    color: rgba(255,255,255,0.8);
    line-height: 1.2;
    font-weight: 500;
}

/* ──────────── HERO ──────────── */
.hero {
    position: relative;
    overflow: hidden;
}

.hero-img {
    display: block;
    width: 100%;
    height: auto;
}

.hero-buttons {
    position: absolute;
    bottom: 38.5%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 24px;
    white-space: nowrap;
}

.btn {
    padding: 16px 68px;
    font: 600 18px/28px var(--inter-font);
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s ease;
    border-radius: 48px;
}

.btn-outline {
    background: #fff;
    color: var(--dark-red);
    box-shadow: 0 2px 12px rgba(0,0,0,0.2);
}

    .btn-outline:hover {
        transform: translateY(-2px);
        color: var(--dark-red);
    }

.btn-solid {
    background: var(--dark-red);
    color: #fff;
    border: 1px solid #fff;
}

    .btn-solid:hover {
        transform: translateY(-2px);
        color: #fff;
    }

section:nth-of-type(3) {
    padding-top: 0;
}

    section:nth-of-type(3) .tabs label {
        margin-bottom: 16px;
    }

.featured {
    padding: 48px 0 40px;
}

.featured-title {
    font: 700 36px/48px var(--serif-font);
    color: var(--primary-500);
    text-align: center;
}

.divider {
    text-align: center;
    margin-bottom: 40px;
}

    .divider path {
        fill: var(--dark-red);
    }
/* ──────────── tabs ──────────── */
.tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

    .tabs input[type="radio"] {
        display: none;
    }

    .tabs label {
        padding: 8px 38.5px;
        background: #fff;
        font-weight: bold;
        cursor: pointer;
        font: 700 14px/20px var(--inter-font);
        color: var(--neutral-500);
        box-shadow: 0px 5px 20px 0px #1111110A;
        margin-bottom: 40px;
    }

        .tabs label:nth-of-type(1) {
            border-radius: 8px 0 0 8px;
        }

        .tabs label:nth-of-type(2) {
            border-radius: 0 8px 8px 0;
        }

    .tabs .tab {
        width: 100%;
        padding: 20px;
        order: 1;
        display: none;
    }

    .tabs input[type="radio"]:checked + label + .tab {
        display: block;
    }

    .tabs input[type="radio"]:checked + label {
        background-color: var(--dark-red);
        color: #fff;
    }

/* ──────────── video ──────────── */
.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 24px;
    row-gap: 40px;
}

.video-grid--short {
    grid-template-columns: repeat(5, 1fr);
    column-gap: 16px;
}

.u-asp-9-16__item {
    height: 100%;
    object-fit: cover;
}

.video-card {
    border-radius: 16px;
    overflow: hidden;
    background: white;
    box-shadow: 4px 16px 32px 0px #1111111F;
}

.video-wrapper {
    padding: 8px;
}

.video-title {
    font: 700 18px/28px var(--serif-font);
    color: var(--neutral-500);
}

.video-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.video-card__author > * {
    display: flex;
    align-items: center;
    gap: 8px;
}

.video-card__author-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
}

    .video-card__author-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.video-card__author-name {
    font: 700 14px/20px var(--inter-font);
    color: var(--neutral-500);
}

.video-card__control {
    display: flex;
    align-items: center;
}

    .video-card__control > *:first-child {
        margin-right: 16px;
    }

    .video-card__control > * {
        background-color: transparent;
        border: none;
        cursor: pointer;
        display: flex;
        align-items: center;
    }

.video-card__icon {
    width: 24px;
    height: 24px;
    margin-right: 8px;
}

.video-card__count {
    font: 500 14px/20px var(--inter-font);
    color: var(--dark-red);
}

.video-thumb--short {
    position: relative;
}

    .video-thumb--short > *:after {
        content: "";
        position: absolute;
        z-index: 2;
        inset: 0;
        background: linear-gradient(180deg, rgba(0, 0, 0, 0) 28.85%, rgba(0, 0, 0, 0.8) 115.23%);
    }

.video-title--short {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    color: white;
    padding: 8px;
    z-index: 10;
    font: 700 16px/24px var(--serif-font);
}

.video-info--short {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
}

.video-top {
    display: flex;
    align-items: flex-end;
    gap: 24px;
    margin-bottom: 40px;
}

    .video-top > *:nth-child(1) {
        order: 2;
        width: 49%;
    }

        .video-top > *:nth-child(1) .video-top__place {
            font-size: 72px;
        }

    .video-top > *:nth-child(2) {
        order: 1;
        flex: 1;
    }

    .video-top > *:nth-child(3) {
        order: 3;
        flex: 1;
    }

.video-top__place {
    font: 700 56px/80px var(--serif-font);
    color: var(--dark-red);
    margin-bottom: 16px;
    text-align: center;
}

.video-list {
    max-width: 1016px;
    margin: 0 auto;
}

    .video-list > * {
        display: flex;
        align-items: center;
    }

        .video-list > *:nth-last-child(n+2) {
            margin-bottom: 16px;
        }

    .video-list .video-card {
        flex: 1;
        display: flex;
    }

    .video-list .video-top__place {
        text-align: right;
        width: 44px;
        margin-right: 24px;
        margin-bottom: 0;
        font-size: 40px;
    }

    .video-list .video-thumb {
        width: 24.26%;
        min-width: 230px;
    }

    .video-list .video-wrapper {
        flex: 1;
        padding: 8px 16px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

.video-card__emoji {
    display: flex;
    align-items: center;
    gap: 8px;
}

.video-card__score {
    font: 500 14px/20px var(--inter-font);
    color: var(--neutral-500);
}

.video-card__score--solid {
    color: var(--dark-red);
}

.video-card__score--decorate {
    position: relative;
    padding-left: 15px;
}

    .video-card__score--decorate::after {
        content: "";
        position: absolute;
        top: 50%;
        left: 3px;
        transform: translateY(-50%);
        width: 4px;
        height: 4px;
        border-radius: 50%;
        background-color: var(--neutral-500);
    }

.video-card__love {
    border: none;
    background-color: transparent;
    width: 24px;
    height: 24px;
    cursor: pointer;
}

.video-top--short {
    width: 1044px;
    margin: 0 auto 40px;
    padding: 0 133px;
}

    .video-top--short > * {
        flex: 1;
    }

        .video-top--short > *:nth-child(1) {
            order: 2;
        }

            .video-top--short > *:nth-child(1) .video-top__place {
                font-size: 96px;
            }

.video-layout {
    max-width: 1044px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 24px;
    grid-row-gap: 40px;
}

    .video-layout > *:first-child {
        grid-area: 1 / 2 / 2 / 4;
    }

    .video-layout > *:nth-child(2) {
        grid-area: 1 / 4 / 2 / 6;
    }

    .video-layout > *:nth-child(3) {
        grid-area: 1 / 6 / 2 / 8;
    }

    .video-layout > *:nth-child(4) {
        grid-area: 2 / 1 / 3 / 3;
    }

    .video-layout > *:nth-child(5) {
        grid-area: 2 / 3 / 3 / 5;
    }

    .video-layout > *:nth-child(6) {
        grid-area: 2 / 5 / 3 / 7;
    }

    .video-layout > *:nth-child(7) {
        grid-area: 2 / 7 / 3 / 9;
    }
