/* STATUS: PLATIN */
html,
body {
    width: 100%;
    overflow-x: hidden;
    background-color: var(--vg-bg-void, #060713);
}

body.vg-nav-active,
body.vgt-modal-active {
    overflow: hidden;
    touch-action: none;
}

.vg-header-wrapper {
    position: sticky;
    top: 0;
    z-index: 1000;
    background:
        linear-gradient(to bottom, rgba(6, 7, 19, 0.92) 0%, rgba(6, 7, 19, 0.72) 70%, rgba(6, 7, 19, 0.35) 100%);
    backdrop-filter: blur(22px) saturate(170%);
    -webkit-backdrop-filter: blur(22px) saturate(170%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 10px 36px rgba(0, 0, 0, 0.22);
    transition:
        background var(--vgt-dur-2, 240ms) var(--vgt-ease-out, cubic-bezier(0.16, 1, 0.3, 1)),
        border-color var(--vgt-dur-2, 240ms) ease,
        box-shadow var(--vgt-dur-2, 240ms) ease;
}

.vg-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.95rem 0;
    min-height: 4.25rem;
}

.vg-logo {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    z-index: 1001;
}

.vg-logo__img-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: var(--vgt-logo-width, 45px);
}

.vg-logo__glow {
    position: absolute;
    inset: -6px;
    background-color: var(--vg-accent-primary, #00f3ff);
    filter: blur(14px);
    opacity: 0.25;
    border-radius: 50%;
}

.vg-logo__text {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
}

.vg-logo__suffix {
    color: var(--vg-accent-primary);
    font-weight: 900;
}

.vg-desktop-nav {
    margin-left: 3rem;
    flex-grow: 1;
}

.vg-nav-menu {
    display: flex;
    align-items: center;
    gap: 2.25rem;
    list-style: none;
}

.vg-nav-menu li a {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.62);
    position: relative;
    padding: 0.5rem 0;
}

.vg-nav-menu li a::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--vg-accent-primary, #00f3ff);
    box-shadow: 0 0 10px var(--vg-accent-primary, #00f3ff);
    transition: width 0.24s ease, left 0.24s ease;
}

.vg-nav-menu li a:hover,
.vg-nav-menu li.current-menu-item a {
    color: #fff;
}

.vg-nav-menu li a:hover::after,
.vg-nav-menu li.current-menu-item a::after {
    width: 100%;
    left: 0;
}

.vg-header-actions {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    z-index: 1001;
}

.vg-action-btn,
.vg-mobile-toggle,
.vg-mobile-overlay__close,
.vgt-search-close,
.vgt-search-clear {
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.78);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
    transition:
        background-color var(--vgt-dur-2, 240ms) var(--vgt-ease-out, cubic-bezier(0.16, 1, 0.3, 1)),
        border-color var(--vgt-dur-2, 240ms) ease,
        color var(--vgt-dur-2, 240ms) ease,
        transform var(--vgt-dur-2, 240ms) var(--vgt-ease-out, cubic-bezier(0.16, 1, 0.3, 1)),
        box-shadow var(--vgt-dur-2, 240ms) ease;
}

.vg-action-btn {
    width: var(--vgt-touch, 44px);
    height: var(--vgt-touch, 44px);
    min-width: var(--vgt-touch, 44px);
    min-height: var(--vgt-touch, 44px);
}

.vg-action-btn:hover,
.vg-mobile-toggle:hover,
.vg-mobile-overlay__close:hover,
.vgt-search-close:hover,
.vgt-search-clear:hover {
    color: var(--vg-accent-primary, #00f3ff);
    background: var(--vgt-accent-soft, rgba(0, 243, 255, 0.1));
    border-color: rgba(0, 243, 255, 0.36);
    box-shadow: 0 0 18px var(--vgt-accent-glow, rgba(0, 243, 255, 0.22));
    transform: translateY(-1px);
}

.vg-action-btn:focus-visible,
.vg-mobile-toggle:focus-visible,
.vgt-search-close:focus-visible,
.vgt-search-clear:focus-visible {
    outline: none;
    box-shadow: var(--vgt-focus-ring, 0 0 0 2px #060713, 0 0 0 4px #00f3ff);
}

.vg-btn-member-portal {
    display: none;
    align-items: center;
    gap: 0.5rem;
    min-height: 40px;
    padding: 0 1.1rem;
    border-radius: 99px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    font-size: 0.68rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    cursor: pointer;
}

@media (min-width: 768px) {
    .vg-btn-member-portal {
        display: inline-flex;
    }
}

.vg-mobile-toggle {
    display: none;
    width: var(--vgt-touch, 44px);
    height: var(--vgt-touch, 44px);
    min-width: var(--vgt-touch, 44px);
    min-height: var(--vgt-touch, 44px);
}

@media (max-width: 992px) {
    .vg-mobile-toggle {
        display: inline-flex;
    }

    .vg-header nav.vg-desktop-nav {
        display: none;
    }
}

.vg-mobile-overlay {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 380px;
    height: 100vh;
    height: 100dvh;
    background: rgba(6, 7, 19, 0.96);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    z-index: 2147483647;
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 0.32s ease, visibility 0.32s ease;
    display: flex;
    flex-direction: column;
    padding:
        max(2rem, env(safe-area-inset-top))
        max(2rem, env(safe-area-inset-right))
        max(2rem, env(safe-area-inset-bottom))
        max(2rem, env(safe-area-inset-left));
    border-left: 1px solid rgba(255, 255, 255, 0.06);
    overflow: hidden;
    overscroll-behavior: contain;
}

.vg-mobile-overlay.is-active {
    transform: translateX(0);
    visibility: visible;
}

.vg-mobile-overlay__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.vg-mobile-overlay__title {
    color: rgba(255, 255, 255, 0.42);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.65rem;
    font-family: var(--font-mono);
    font-weight: 800;
}

.vg-mobile-overlay__close {
    width: 36px;
    height: 36px;
}

.vg-mobile-nav {
    padding: 2.5rem 0;
    overflow-y: auto;
    flex-grow: 1;
    min-height: 0;
    overscroll-behavior: contain;
}

@media (prefers-reduced-motion: reduce) {
    .vg-mobile-overlay,
    .vg-mobile-overlay *,
    .vgt-search-overlay,
    .vgt-search-overlay * {
        scroll-behavior: auto;
        transition-duration: 0.001ms;
        animation-duration: 0.001ms;
        animation-iteration-count: 1;
    }
}

.vg-mobile-nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.vg-mobile-nav-list li a {
    color: rgba(255, 255, 255, 0.74);
    font-size: 1.25rem;
    font-family: var(--font-display);
    font-weight: 800;
}

.vgt-search-overlay {
    position: fixed;
    inset: 0;
    background: rgba(6, 7, 19, 0.96);
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.28s ease, visibility 0.28s ease;
    display: flex;
    justify-content: center;
    padding: 6vh 2rem 2rem;
    overflow: hidden;
}

.vgt-search-overlay.is-active {
    opacity: 1;
    visibility: visible;
}

.vgt-search-container {
    width: 100%;
    max-width: 960px;
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.vgt-search-form {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--vgt-radius-lg, 16px);
    padding: 0.3rem 0.55rem;
    box-shadow: var(--vgt-shadow-md, 0 8px 24px rgba(0, 0, 0, 0.42));
    transition: border-color var(--vgt-dur-2, 240ms) ease, box-shadow var(--vgt-dur-2, 240ms) ease;
}

.vgt-search-form:focus-within {
    border-color: rgba(0, 243, 255, 0.35);
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(0, 243, 255, 0.18);
}

.vgt-search-input {
    flex-grow: 1;
    background: none;
    border: 0;
    color: #fff;
    font-family: var(--font-display);
    font-size: clamp(1.15rem, 2.4vw, 1.4rem);
    font-weight: 700;
    padding: 1.1rem 1rem;
    outline: 0;
}

.vgt-search-clear,
.vgt-search-close {
    width: 44px;
    height: 44px;
}

.vgt-search-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
}

.vgt-search-security-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-family: var(--font-mono);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.34);
    margin: 1rem 0.5rem 2rem;
}

.vgt-search-results {
    flex-grow: 1;
    overflow-y: auto;
    padding-right: 0.5rem;
}

.vgt-search-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: rgba(255, 255, 255, 0.28);
    padding: 6rem 2rem;
}

.vgt-search-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    padding-bottom: 2rem;
}

.vgt-search-card-image {
    aspect-ratio: 16 / 9;
}

.vgt-search-card-content {
    padding: 1rem;
}

.vgt-search-play {
    width: 44px;
    height: 44px;
}

@media (min-width: 768px) {
    .vgt-search-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.vgt-search-spinner {
    display: grid;
    place-items: center;
    padding: 6rem 0;
}

.vgt-search-spinner-circle {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(0, 243, 255, 0.15);
    border-radius: 50%;
    border-top-color: var(--vg-accent-primary, #00f3ff);
    animation: vgt-search-spin 1s linear infinite;
}

.vgt-theme-toast {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: rgba(10, 10, 15, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 0.85rem 1.75rem;
    border-radius: 99px;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    z-index: 999999;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.28s ease, transform 0.28s ease;
}

.vgt-theme-toast.is-active {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.vg-source-dialog {
    width: 100%;
    max-width: 750px;
    max-height: 85vh;
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: clamp(1.25rem, 5vw, 2.5rem);
    position: relative;
}

.vg-source__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 1.5rem;
}

@media (min-width: 640px) {
    .vg-source__grid {
        grid-template-columns: 1fr 1fr;
    }
}

.vg-source__title {
    font-family: var(--font-display);
    font-weight: 800;
    color: #fff;
}

.vg-source__intro {
    color: #cbd5e1;
    border-left: 2px solid var(--vg-accent-primary);
    padding-left: 1rem;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.vg-source__col-title {
    font-family: var(--font-display);
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.75rem;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.vg-source__list li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    line-height: 1.5;
    color: #94a3b8;
}

.vg-source__footer {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid var(--vg-border);
    font-size: 0.7rem;
    color: #475569;
    font-family: var(--font-mono);
}

.vg-reader-body {
    width: 100%;
    height: 100%;
    min-width: 0;
    min-height: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

@media (min-width: 768px) {
    .vg-reader-body {
        flex-direction: row;
    }
}

.vg-reader-body.is-hidden {
    display: none;
}

.vg-reader-actions {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    flex-wrap: wrap;
}

.vg-reader-inner {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.is-hidden {
    display: none;
}

.vgt-live-card {
    flex-shrink: 0;
    width: 240px;
    scroll-snap-align: start;
}

.vgt-live-empty {
    width: 100%;
    text-align: center;
    color: #64748b;
    padding: 3rem 0;
    font-size: 0.875rem;
    font-family: var(--font-mono);
}

.vgt-live-refresh {
    animation: vgt-live-refresh-pulse 0.65s ease;
}

.vgt-live-offline {
    color: var(--vg-accent-danger, #ff003c);
}

.vgt-streaming-gate {
    position: relative;
    isolation: isolate;
}

.vgt-gate-scanner,
.vgt-gate-paywall {
    padding: 2rem;
    text-align: center;
    color: #f8fafc;
}

.vgt-gate-scanner {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.vgt-gate-paywall h2 {
    margin-bottom: 1rem;
    color: #fff;
    font-size: 1.25rem;
}

.vgt-player-watermark {
    position: absolute;
    right: 1rem;
    bottom: 1rem;
    z-index: 3;
    max-width: min(70%, 540px);
    padding: 0.35rem 0.55rem;
    color: rgba(255, 255, 255, 0.46);
    background: rgba(0, 0, 0, 0.28);
    border-radius: 4px;
    font-family: var(--font-mono);
    font-size: 0.62rem;
    pointer-events: none;
    user-select: none;
}

.vgt-gate-player,
.vgt-gate-player video {
    width: 100%;
    height: 100%;
}

.vgt-gate-player video {
    display: block;
    object-fit: contain;
    background: #000;
}

@keyframes vgt-search-spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes vgt-live-refresh-pulse {
    0% { opacity: 1; }
    40% { opacity: 0.42; }
    100% { opacity: 1; }
}

/* ==========================================================================
   VGT CINEMATIC RAIL & SECTION HEADER ARCHITECTURE
   Shared polish layer — structural widths/gaps from style.css tokens.
   ========================================================================== */
.vgt-section {
    position: relative;
    padding: var(--vgt-space-10, 2.5rem) 0 var(--vgt-space-3, 0.75rem);
    margin-bottom: 0.35rem;
}

.vgt-section__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--vgt-space-5, 1.25rem);
    gap: var(--vgt-space-5, 1.25rem);
    min-height: var(--vgt-touch, 44px);
}

.vgt-section__title-group {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    min-width: 0;
}

.vgt-section__accent-indicator {
    display: inline-block;
    width: 4px;
    height: 1.45rem;
    border-radius: var(--vgt-radius-pill, 999px);
    background: linear-gradient(
        180deg,
        var(--vg-accent-primary, #00f3ff) 0%,
        rgba(0, 243, 255, 0.2) 100%
    );
    box-shadow: 0 0 14px var(--vgt-accent-glow, rgba(0, 243, 255, 0.22));
    flex-shrink: 0;
}

.vgt-section__accent-indicator--live {
    background: linear-gradient(180deg, #ff003c 0%, rgba(255, 0, 60, 0.25) 100%);
    box-shadow: 0 0 14px rgba(255, 0, 60, 0.55);
}

.vgt-section__accent-indicator--top {
    background: linear-gradient(180deg, #ffb800 0%, rgba(255, 184, 0, 0.25) 100%);
    box-shadow: 0 0 14px rgba(255, 184, 0, 0.55);
}

.vgt-section__head h2,
.vgt-section h2 {
    font-family: var(--font-display, inherit);
    font-size: clamp(1.2rem, 2.2vw, 1.55rem) !important;
    font-weight: 800 !important;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #ffffff !important;
    margin: 0 !important;
}

.vgt-section__head h2 a,
.vgt-section h2 a {
    color: inherit;
    text-decoration: none;
    transition: color var(--vgt-dur-2, 240ms) var(--vgt-ease-out, cubic-bezier(0.16, 1, 0.3, 1));
}

.vgt-section__head h2 a:hover {
    color: var(--vg-accent-primary, #00f3ff) !important;
}

.vgt-section__count-badge,
.vgt-section__top-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 1.55rem;
    padding: 0.2rem 0.6rem;
    font-family: var(--font-mono, monospace);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    border-radius: var(--vgt-radius-pill, 999px);
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    flex-shrink: 0;
}

.vgt-section__top-badge {
    background: rgba(255, 184, 0, 0.14);
    color: #ffb800;
    border-color: rgba(255, 184, 0, 0.34);
}

.vgt-section__view-all {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    min-height: var(--vgt-touch, 44px);
    padding: 0.35rem 0.15rem 0.35rem 0.55rem;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.58);
    text-decoration: none;
    border-radius: var(--vgt-radius-pill, 999px);
    transition:
        color var(--vgt-dur-2, 240ms) var(--vgt-ease-out, cubic-bezier(0.16, 1, 0.3, 1)),
        background var(--vgt-dur-2, 240ms) ease,
        transform var(--vgt-dur-2, 240ms) var(--vgt-ease-out, cubic-bezier(0.16, 1, 0.3, 1));
    flex-shrink: 0;
}

.vgt-section__view-all:hover {
    color: var(--vg-accent-primary, #00f3ff);
    background: rgba(255, 255, 255, 0.04);
}

.vgt-section__view-all .dashicons {
    font-size: 15px;
    width: 15px;
    height: 15px;
    transition: transform var(--vgt-dur-2, 240ms) var(--vgt-ease-out, cubic-bezier(0.16, 1, 0.3, 1));
}

.vgt-section__view-all:hover .dashicons {
    transform: translateX(4px);
}

/* Rail & tile polish — tokens drive widths; keep media ratios locked.
   Horizontal contract must survive package CSS (see also vgt-rail-lock.css). */
.vgt-rail,
[data-vgt-rail] {
    display: flex !important;
    flex-flow: row nowrap !important;
    align-items: flex-start;
    gap: var(--vgt-rail-gap, 0.85rem);
    overflow-x: auto !important;
    overflow-y: hidden !important;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 2px;
    padding: var(--vgt-rail-pad-y, 0.65rem) 0 calc(var(--vgt-rail-pad-y, 0.65rem) + 0.4rem);
    -webkit-overflow-scrolling: touch;
}

.vgt-rail::-webkit-scrollbar,
[data-vgt-rail]::-webkit-scrollbar {
    height: 5px;
}

.vgt-rail::-webkit-scrollbar-track,
[data-vgt-rail]::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.035);
    border-radius: var(--vgt-radius-pill, 999px);
}

.vgt-rail::-webkit-scrollbar-thumb,
[data-vgt-rail]::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--vgt-radius-pill, 999px);
}

.vgt-rail::-webkit-scrollbar-thumb:hover,
[data-vgt-rail]::-webkit-scrollbar-thumb:hover {
    background: var(--vg-accent-primary, #00f3ff);
}

.vgt-tile {
    flex: 0 0 auto !important;
    flex-shrink: 0 !important;
    width: var(--vgt-tile-w-poster, 168px) !important;
    max-width: min(var(--vgt-tile-w-poster, 168px), 72vw) !important;
    min-width: min(140px, 70vw) !important;
    box-sizing: border-box;
    scroll-snap-align: start;
    text-decoration: none;
    color: #ffffff;
    transition:
        transform var(--vgt-dur-3, 400ms) var(--vgt-ease-out, cubic-bezier(0.16, 1, 0.3, 1)),
        box-shadow var(--vgt-dur-2, 240ms) var(--vgt-ease-out, cubic-bezier(0.16, 1, 0.3, 1));
}

.vgt-tile--landscape {
    flex: 0 0 auto !important;
    width: var(--vgt-tile-w-land, 300px) !important;
    max-width: min(var(--vgt-tile-w-land, 300px), 85vw) !important;
    min-width: min(220px, 80vw) !important;
}

.vgt-tile__media {
    display: block !important;
    position: relative !important;
    width: 100% !important;
    aspect-ratio: var(--vgt-aspect-poster, 2 / 3) !important;
    overflow: hidden !important;
    border-radius: var(--vgt-radius-md, 10px) !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid var(--vgt-border-subtle, rgba(255, 255, 255, 0.08));
    box-shadow: var(--vgt-shadow-sm, 0 2px 8px rgba(0, 0, 0, 0.28));
}

.vgt-tile--landscape .vgt-tile__media {
    aspect-ratio: var(--vgt-aspect-backdrop, 16 / 9) !important;
}

.vgt-tile__media img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
    transition: transform var(--vgt-dur-4, 560ms) var(--vgt-ease-out, cubic-bezier(0.16, 1, 0.3, 1)) !important;
}

.vgt-tile:hover {
    transform: translateY(-6px) scale(1.02);
    z-index: 5;
}

.vgt-tile:hover .vgt-tile__media {
    box-shadow: var(--vgt-shadow-tile-hover, 0 22px 52px rgba(0, 0, 0, 0.72));
    border-color: rgba(255, 255, 255, 0.14);
}

.vgt-tile:hover .vgt-tile__media img {
    transform: scale(1.06);
}

.vgt-tile strong {
    display: block;
    margin-top: 0.65rem;
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1.35;
    color: #ffffff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.vgt-tile small {
    display: block;
    margin-top: 0.15rem;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.52);
}

/* Shell rail chevron polish (works with style.css contract) */
.vgt-rail-wrapper,
.vgt-rail-container {
    position: relative;
}

.vgt-rail-arrow {
    width: var(--vgt-touch, 44px);
    height: var(--vgt-touch, 44px);
    min-width: var(--vgt-touch, 44px);
    min-height: var(--vgt-touch, 44px);
    border-radius: 50%;
    background: rgba(10, 12, 22, 0.62);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: #fff;
    backdrop-filter: blur(16px) saturate(160%);
    -webkit-backdrop-filter: blur(16px) saturate(160%);
    box-shadow: var(--vgt-shadow-glass, 0 8px 28px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.08));
}

.vgt-rail-arrow:hover:not(.is-hidden) {
    background: rgba(255, 255, 255, 0.94);
    color: #0a0a0f;
    border-color: rgba(255, 255, 255, 0.9);
}

/* ── Profile gate (optional package chrome) ───────────────────────────── */
.vgt-profile-gate {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: grid;
    place-items: center;
    background: var(--vg-bg-void, #060713);
    padding: 1.5rem;
    transition: opacity 0.45s ease, visibility 0.45s ease;
}
.vgt-profile-gate[hidden] {
    display: none !important;
}
.vgt-profile-gate.is-leaving {
    opacity: 0;
    pointer-events: none;
}
.vgt-profile-gate__panel {
    text-align: center;
    max-width: 52rem;
    width: 100%;
}
.vgt-profile-gate__title {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 600;
    letter-spacing: 0.02em;
    margin: 0 0 0.5rem;
    color: #fff;
}
.vgt-profile-gate__sub {
    color: rgba(255, 255, 255, 0.45);
    margin: 0 0 2.5rem;
    font-size: 0.95rem;
}
.vgt-profile-gate__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem 2rem;
    margin-bottom: 2rem;
}
.vgt-profile-gate__item {
    background: transparent;
    border: 0;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.55);
    padding: 0;
    transition: color 0.2s ease;
}
.vgt-profile-gate__item:hover,
.vgt-profile-gate__item:focus-visible {
    color: #fff;
    outline: none;
}
.vgt-profile-gate__avatar {
    display: grid;
    place-items: center;
    width: 6.5rem;
    height: 6.5rem;
    margin: 0 auto;
    border-radius: 0.4rem;
    font-size: 1.75rem;
    font-weight: 800;
    color: #fff;
    border: 3px solid transparent;
    background: var(--vgt-profile-color, #3b82f6);
    transition: border-color 0.2s ease, transform 0.2s ease;
}
.vgt-profile-gate__item:hover .vgt-profile-gate__avatar,
.vgt-profile-gate__item:focus-visible .vgt-profile-gate__avatar {
    border-color: #fff;
    transform: scale(1.04);
}
.vgt-profile-gate__name {
    display: block;
    margin-top: 0.85rem;
    font-size: 0.95rem;
}
.vgt-profile-gate__manage {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: rgba(255, 255, 255, 0.55);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.65rem 1.4rem;
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s;
}
.vgt-profile-gate__manage:hover {
    border-color: #fff;
    color: #fff;
}

/* Overlay nav: transparent over hero, solid on scroll */
body.vgt-chrome-nav-overlay .vg-header-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    border-bottom-color: transparent;
    box-shadow: none;
}
body.vgt-chrome-nav-overlay .vg-header-wrapper.is-solid {
    background:
        linear-gradient(to bottom, rgba(6, 7, 19, 0.96) 0%, rgba(6, 7, 19, 0.88) 100%);
    backdrop-filter: blur(18px) saturate(160%);
    -webkit-backdrop-filter: blur(18px) saturate(160%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 10px 36px rgba(0, 0, 0, 0.28);
}
body.vgt-chrome-nav-overlay .vg-site-wrapper > main,
body.vgt-chrome-nav-overlay .vg-site-wrapper > .vgt-home,
body.vgt-chrome-nav-overlay #vg-news-root > main {
    /* heroes handle their own top spacing */
}
