﻿:root {
    --vt-gold: #E8A619;
}
.vt-hs {
    width: 38px;
    height: 38px;
    border-radius: 999px;
    border: 1px solid rgba(232,166,25,0.55);
    background: rgba(18,18,18,0.55);
    color: var(--vt-gold);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-weight: 800;
    user-select: none;
    box-shadow: 0 8px 22px rgba(0,0,0,0.35);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

    .vt-hs:hover {
        background: rgba(18,18,18,0.75);
        border-color: rgba(232,166,25,0.9);
        transform: translateY(-1px);
    }

.vt-hs-info {
    font-family: Arial, sans-serif;
}

.vt-hs-nav {
    font-size: 18px;
}

.vt-hs-link {
    text-decoration: none;
    font-size: 16px;
}

/* subtle pulse for nav to attract attention */
.vt-hs-nav {
    position: relative;
}
    .vt-hs-nav::after {
        content: "";
        position: absolute;
        inset: -6px;
        border-radius: 999px;
        border: 1px solid rgba(232,166,25,0.35);
        animation: vtPulse 1.8s ease-out infinite;
    }

@keyframes vtPulse {
    0% {
        transform: scale(0.85);
        opacity: 0.7;
    }

    70% {
        transform: scale(1.25);
        opacity: 0.0;
    }

    100% {
        transform: scale(1.25);
        opacity: 0.0;
    }
}
.vt-popup {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.45);
    padding: 16px;
    z-index: 50;
}

.vt-popup-card {
    width: min(560px, 95vw);
    max-height: 80vh;
    overflow: auto;
    background: #121212;
    color: white;
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 14px;
    padding: 14px;
}

.vt-popup-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 10px;
}

.vt-popup-title {
    font-size: 16px;
    font-weight: 700;
}

.vt-popup-close {
    border: none;
    background: transparent;
    color: white;
    font-size: 18px;
    cursor: pointer;
}
.vt-strip {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 10px 2px;
    margin-top: 10px;
    scroll-snap-type: x mandatory;
}

.vt-strip-item {
    min-width: 140px;
    max-width: 160px;
    scroll-snap-align: start;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(18,18,18,0.55);
    color: white;
    padding: 8px;
    cursor: pointer;
    text-align: left;
}

    .vt-strip-item:hover {
        border-color: rgba(232,166,25,0.45);
    }

    .vt-strip-item.active {
        border-color: rgba(232,166,25,0.85);
        box-shadow: 0 10px 26px rgba(0,0,0,0.35);
    }

    .vt-strip-item img {
        width: 100%;
        height: 84px;
        object-fit: cover;
        border-radius: 10px;
        display: block;
        margin-bottom: 6px;
        background: #111;
    }

.vt-strip-title {
    font-size: 13px;
    font-weight: 700;
    color: rgba(255,255,255,0.92);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
