:root {
    --navy: #1a2340;
    --gold: #f0c040;
    --gold2: #b8860b;
}

/* ── Channel strip ── */
.vg-channel-strip {
    background: var(--navy);
    border-bottom: 3px solid var(--gold);
    padding: 24px 0;
}

.vg-channel-inner {
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

.vg-channel-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--gold);
    flex-shrink: 0;
    background: #2a3454;
}

.vg-channel-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.vg-channel-info {
    flex: 1;
}

.vg-channel-name {
    font-family: "Playfair Display", serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2px;
}

.vg-channel-sub {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.55);
    font-family: "Roboto", sans-serif;
}

.vg-channel-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ff0000;
    color: #fff;
    text-decoration: none;
    font-family: "Roboto", sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 9px 20px;
    border-radius: 3px;
    flex-shrink: 0;
    transition:
        background 0.2s,
        color 0.2s !important;
    transform: none !important;
}

.vg-channel-link:hover {
    background: #cc0000;
    color: #fff;
    transform: none !important;
}

/* ── Main content ── */
.vg-content {
    background: #f7f5f0;
    padding: 56px 0 72px;
}

.vg-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ── Playlist section ── */
.vg-playlist {
    margin-bottom: 60px;
}

.vg-playlist:last-child {
    margin-bottom: 0;
}

.vg-playlist-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
    padding-bottom: 14px;
    border-bottom: 2px solid #e8e0cc;
}

.vg-playlist-title {
    font-family: "Playfair Display", serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy);
    margin: 0;
    line-height: 1.2;
}

/* ── Video grid row ── */
.vg-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.vg-row:last-child {
    margin-bottom: 0;
}

/* ── Video card ── */
.vg-card {
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.07);
    display: flex;
    flex-direction: column;
    transition:
        transform 0.25s,
        box-shadow 0.25s;
}

/* Responsive 16:9 iframe wrapper */
.vg-embed {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    background: #000;
}

.vg-embed iframe {
    position: absolute;
    inset: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.vg-thumb-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.input-group-custom {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.required-asterisk {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-35%);
    color: #dc3545 !important;
    font-weight: bold;
    pointer-events: none;
    z-index: 10;
}

.input-group-custom input:not(:placeholder-shown) + .required-asterisk {
    display: none;
}

/* ── Divider between playlists ── */
.vg-divider {
    height: 1px;
    background: linear-gradient(to right, var(--gold), transparent);
    margin: 60px 0;
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .vg-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .vg-row {
        grid-template-columns: 1fr;
    }
    .vg-hero-title {
        font-size: 2.2rem;
        margin-top: 120px;
    }
    .vg-channel-inner {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
        gap: 12px;
    }
    .vg-channel-info {
        width: 100%;
    }
    .vg-channel-link {
        width: 100%;
        justify-content: center;
        order: 3;
    }
}