/* Vault 78 — Premium VOD Network */

/* ── Layout ─────────────────────────────────── */
.v78-video-wrapper {
    position: relative;
    padding-top: 56.25%;
    background: #000;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.v78-video-wrapper iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    border: none;
}

/* ── Archive / Channel Grid ──────────────────── */
.v78-video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.75rem;
    margin: 2rem 0;
}

.v78-video-card {
    background: #1a1a1a;
    border-radius: 8px;
    overflow: hidden;
    transition: transform .2s ease, box-shadow .2s ease;
    color: #f0f0f0;
}

.v78-video-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,.45);
}

.v78-video-card__thumb {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    display: block;
}

.v78-video-card__body {
    padding: 1rem;
}

.v78-video-card__title {
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 .4rem;
    line-height: 1.3;
}

.v78-video-card__meta {
    font-size: .8rem;
    color: #aaa;
}

/* ── Members-only notice ─────────────────────── */
.v78-members-only {
    background: #111;
    border-left: 4px solid #c0392b;
    color: #eee;
    padding: 1rem 1.25rem;
    border-radius: 4px;
    margin: 1.5rem 0;
}

.v78-members-only a {
    color: #e74c3c;
    font-weight: 700;
}

/* ── Downloads List ──────────────────────────── */
.v78-downloads-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.v78-download-item {
    padding: .5rem 0;
    border-bottom: 1px solid #2a2a2a;
}

.v78-download-item a {
    color: #c0392b;
    text-decoration: none;
    font-weight: 600;
}

.v78-download-item a:hover {
    text-decoration: underline;
}

/* ── Channel Navigation ──────────────────────── */
.v78-channel-nav {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin: 1.5rem 0;
}

.v78-channel-nav__link {
    background: #222;
    color: #ddd;
    padding: .4rem .9rem;
    border-radius: 20px;
    text-decoration: none;
    font-size: .85rem;
    transition: background .15s;
}

.v78-channel-nav__link:hover,
.v78-channel-nav__link.is-active {
    background: #c0392b;
    color: #fff;
}


/* ── Hero height override ──────────────────────────── */
.think-hero {
    min-height: 60vh !important;
}


/* ── Logo icon: remove gold box ─────────────────────── */
.think-logo-icon {
    background: transparent !important;
    background-image: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    border: none !important;
}

/* ── Safari animation fix: -webkit- prefixes ─────────── */
.think-particle {
    -webkit-animation: think-particle-float 8s infinite !important;
    animation: think-particle-float 8s infinite !important;
}

@-webkit-keyframes think-particle-float {
    0%   { opacity: 0; -webkit-transform: translateY(100vh) scale(0); transform: translateY(100vh) scale(0); }
    10%  { opacity: 0.6; }
    90%  { opacity: 0.6; }
    100% { opacity: 0; -webkit-transform: translateY(-100px) scale(1); transform: translateY(-100px) scale(1); }
}

/* ── Nav icon button: kill Astra padding override ────── */
.think-nav-icon-btn {
    padding: 0 !important;
    width: 36px !important;
    height: 36px !important;
}
.think-nav-icon-btn svg {
    width: 18px !important;
    height: 18px !important;
    flex-shrink: 0 !important;
    overflow: visible !important;
    display: inline-block !important;
}
