/* =========================================
   VIDEOS GALLERY - MODERN LAYOUT
   Palette: Primary #eb7254 → #f5a623 gradient
   ========================================= */

:root {
    --vg-primary: #eb7254;
    --vg-primary-2: #f5a623;
    --vg-gradient: linear-gradient(135deg, var(--vg-primary) 0%, var(--vg-primary-2) 100%);
    --vg-gradient-soft: linear-gradient(135deg, rgba(235, 114, 84, 0.12) 0%, rgba(245, 166, 35, 0.12) 100%);
    --vg-text-dark: #0f172a;
    --vg-text-mid: #334155;
    --vg-text-light: #64748b;
    --vg-bg: #f8fafc;
    --vg-card-bg: #ffffff;
    --vg-radius-sm: 8px;
    --vg-radius-md: 12px;
    --vg-radius-lg: 18px;
    --vg-radius-xl: 24px;
    --vg-shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.06);
    --vg-shadow-md: 0 6px 18px rgba(15, 23, 42, 0.08);
    --vg-shadow-lg: 0 14px 40px rgba(235, 114, 84, 0.18);
}

* { box-sizing: border-box; }
.vg-main {
    background: var(--vg-bg);
    min-height: calc(100vh - 200px);
}

/* ========== HERO ========== */
.vg-hero {
    position: relative;
    padding: 56px 0 68px;
    background:
        radial-gradient(ellipse at 15% 10%, rgba(235, 114, 84, 0.22), transparent 55%),
        radial-gradient(ellipse at 85% 30%, rgba(245, 166, 35, 0.22), transparent 60%),
        linear-gradient(180deg, #fff5ee 0%, #fef9f2 50%, var(--vg-bg) 100%);
    overflow: hidden;
}
.vg-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(235, 114, 84, 0.1) 0, transparent 40%),
        radial-gradient(circle at 75% 90%, rgba(245, 166, 35, 0.12) 0, transparent 40%);
    pointer-events: none;
}
.vg-hero-inner {
    position: relative;
    z-index: 2;
}

/* Breadcrumb */
.vg-hero-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(235, 114, 84, 0.15);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--vg-text-mid);
    margin-bottom: 28px;
}
.vg-hero-breadcrumb a {
    color: var(--vg-primary);
    text-decoration: none;
    transition: all 0.2s ease;
}
.vg-hero-breadcrumb a:hover { color: var(--vg-primary-2); }
.vg-breadcrumb-sep {
    color: #cbd5e1;
    font-size: 0.75rem;
}
.vg-breadcrumb-current { color: var(--vg-text-light); }

/* Hero Title */
.vg-hero-title {
    font-size: clamp(2rem, 4.2vw, 3.2rem);
    font-weight: 800;
    color: var(--vg-text-dark);
    line-height: 1.1;
    margin: 0 0 14px;
    display: flex;
    align-items: center;
    gap: 16px;
    letter-spacing: -0.5px;
}
.vg-hero-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: var(--vg-gradient);
    color: #fff;
    font-size: 1.4rem;
    box-shadow: 0 10px 28px rgba(235, 114, 84, 0.38);
    flex-shrink: 0;
}
.vg-hero-subtitle {
    font-size: clamp(0.95rem, 1.4vw, 1.1rem);
    color: var(--vg-text-mid);
    max-width: 640px;
    line-height: 1.7;
    margin: 0 0 36px;
}

/* Stats Row */
.vg-stats-row {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-bottom: 28px;
}
.vg-stat-card {
    flex: 1;
    min-width: 200px;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 22px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: var(--vg-radius-lg);
    box-shadow: var(--vg-shadow-sm);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.vg-stat-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--vg-shadow-md);
}
.vg-stat-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: var(--vg-gradient);
    color: #fff;
    font-size: 1.05rem;
    flex-shrink: 0;
    box-shadow: 0 6px 14px rgba(235, 114, 84, 0.3);
}
.vg-stat-info {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}
.vg-stat-num {
    font-size: 1.55rem;
    font-weight: 800;
    color: var(--vg-text-dark);
    letter-spacing: -0.3px;
}
.vg-stat-label {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--vg-text-light);
    margin-top: 3px;
}

/* Filter Banner */
.vg-filter-banner {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.vg-filter-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 100px;
    background: var(--vg-card-bg);
    border: 1px solid #e2e8f0;
    font-size: 0.9rem;
    color: var(--vg-text-mid);
    box-shadow: var(--vg-shadow-sm);
}
.vg-filter-chip-active {
    background: var(--vg-gradient-soft);
    border-color: rgba(235, 114, 84, 0.3);
    color: var(--vg-text-mid);
}
.vg-filter-chip-active strong { color: var(--vg-text-dark); }
.vg-filter-chip i { color: var(--vg-primary); font-size: 0.9rem; }
.vg-filter-clear {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    margin-left: 6px;
    color: var(--vg-text-light);
    transition: all 0.2s ease;
    text-decoration: none;
}
.vg-filter-clear:hover {
    background: var(--vg-primary);
    color: #fff;
    transform: scale(1.1);
}

/* ========== GALLERY WRAP ========== */
.vg-gallery-wrap {
    padding: 28px 0 80px;
}

/* Category Chips */
.vg-category-chips {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}
.vg-chips-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: var(--vg-gradient-soft);
    color: var(--vg-primary);
    font-weight: 600;
    font-size: 0.88rem;
    border-radius: 100px;
    white-space: nowrap;
}
.vg-chips-scroll {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    flex: 1;
}
.vg-chip {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 16px;
    background: var(--vg-card-bg);
    border: 1px solid #e2e8f0;
    color: var(--vg-text-mid);
    font-size: 0.85rem;
    font-weight: 500;
    border-radius: 100px;
    text-decoration: none;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
}
.vg-chip i { font-size: 0.78rem; }
.vg-chip:hover {
    border-color: rgba(235, 114, 84, 0.35);
    color: var(--vg-primary);
    transform: translateY(-1px);
    box-shadow: var(--vg-shadow-sm);
}
.vg-chip-active {
    background: var(--vg-gradient);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 6px 18px rgba(235, 114, 84, 0.35);
}
.vg-chip-active:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--vg-shadow-lg);
}

/* Toolbar */
.vg-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    padding: 14px 20px;
    background: var(--vg-card-bg);
    border: 1px solid #e2e8f0;
    border-radius: var(--vg-radius-md);
    margin-bottom: 28px;
    box-shadow: var(--vg-shadow-sm);
}
.vg-toolbar-left,
.vg-toolbar-right {
    display: flex;
    align-items: center;
    gap: 10px;
}
.vg-result-count,
.vg-sort-label {
    font-size: 0.88rem;
    color: var(--vg-text-mid);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}
.vg-result-count i,
.vg-sort-label i { color: var(--vg-primary); }
.vg-result-count strong,
.vg-sort-label strong { color: var(--vg-text-dark); font-weight: 700; }

/* ========== VIDEO GRID ========== */
.vg-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 26px;
}
@media (min-width: 576px) {
    .vg-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}
@media (min-width: 992px) {
    .vg-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1200px) {
    .vg-grid { grid-template-columns: repeat(4, 1fr); gap: 28px; }
}

/* Individual Item + Card */
.vg-item {
    animation: vgFadeUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) both;
}
.vg-item:nth-child(1) { animation-delay: 0.02s; }
.vg-item:nth-child(2) { animation-delay: 0.08s; }
.vg-item:nth-child(3) { animation-delay: 0.14s; }
.vg-item:nth-child(4) { animation-delay: 0.20s; }
.vg-item:nth-child(5) { animation-delay: 0.26s; }
.vg-item:nth-child(6) { animation-delay: 0.32s; }
.vg-item:nth-child(7) { animation-delay: 0.38s; }
.vg-item:nth-child(8) { animation-delay: 0.44s; }
@keyframes vgFadeUp {
    from { opacity: 0; transform: translateY(22px); }
    to { opacity: 1; transform: translateY(0); }
}

.vg-card {
    background: var(--vg-card-bg);
    border-radius: var(--vg-radius-lg);
    overflow: hidden;
    border: 1px solid rgba(226, 232, 240, 0.8);
    box-shadow: var(--vg-shadow-sm);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
}
.vg-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--vg-shadow-lg);
    border-color: rgba(235, 114, 84, 0.2);
}

/* Thumbnail */
.vg-thumb {
    position: relative;
    display: block;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    text-decoration: none;
    background: #0f172a;
}
.vg-thumb-img {
    width: 100%;
    height: 100%;
    position: relative;
}
.vg-thumb-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}
.vg-card:hover .vg-thumb-img img {
    transform: scale(1.08);
}

/* Top badges */
.vg-badge-top {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 4;
}
.vg-platform-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 11px;
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.2px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.35);
    backdrop-filter: blur(4px);
}
.vg-platform-yt {
    background: linear-gradient(135deg, #ff0000, #cc0000);
}
.vg-platform-mp4 {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}
.vg-platform-badge i { font-size: 0.85rem; }

/* Category ribbon - book mark style */
.vg-cat-ribbon {
    position: absolute;
    top: 12px;
    right: 12px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 12px 6px 10px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(6px);
    color: var(--vg-text-dark);
    font-size: 0.72rem;
    font-weight: 600;
    border-radius: 8px 0 8px 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.18);
    max-width: 65%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.vg-cat-ribbon::before {
    content: "";
    position: absolute;
    top: -4px;
    right: -4px;
    width: 18px;
    height: 18px;
    background: var(--vg-gradient);
    clip-path: polygon(0 0, 100% 0, 100% 100%);
    z-index: -1;
    transform: rotate(45deg);
    box-shadow: 0 3px 8px rgba(235, 114, 84, 0.35);
}
.vg-cat-ribbon i {
    color: var(--vg-primary);
    font-size: 0.75rem;
}

/* Central Play Button */
.vg-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}
.vg-play-circle {
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255,255,255,0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 26px rgba(0,0,0,0.4);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}
.vg-play-circle::before {
    content: "";
    position: absolute;
    inset: 6px;
    border-radius: 50%;
    background: var(--vg-gradient);
}
.vg-play-circle i {
    position: relative;
    z-index: 3;
    color: #fff;
    font-size: 1rem;
    margin-left: 3px;
}
.vg-play-ring {
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    animation: vgRingPulse 2.2s ease-out infinite;
}
@keyframes vgRingPulse {
    0% { transform: scale(1); opacity: 0.75; }
    100% { transform: scale(1.45); opacity: 0; }
}
.vg-card:hover .vg-play-circle {
    transform: scale(1.12);
    background: #fff;
    box-shadow: 0 16px 34px rgba(235, 114, 84, 0.45);
}

/* Hover Overlay */
.vg-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px 18px 18px;
    background: linear-gradient(180deg,
        rgba(15, 23, 42, 0.05) 0%,
        rgba(15, 23, 42, 0.45) 45%,
        rgba(15, 23, 42, 0.85) 100%);
    opacity: 0;
    transition: opacity 0.35s ease;
    z-index: 6;
}
.vg-card:hover .vg-overlay { opacity: 1; }

.vg-overlay-top {
    margin-bottom: auto;
    transform: translateY(-10px);
    opacity: 0;
    transition: all 0.35s ease 0.05s;
}
.vg-card:hover .vg-overlay-top { transform: translateY(0); opacity: 1; }

.vg-overlay-title {
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.vg-overlay-desc {
    color: rgba(255,255,255,0.85);
    font-size: 0.82rem;
    line-height: 1.55;
    margin: 12px 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transform: translateY(10px);
    opacity: 0;
    transition: all 0.35s ease 0.1s;
}
.vg-card:hover .vg-overlay-desc { transform: translateY(0); opacity: 1; }

.vg-overlay-bottom {
    transform: translateY(10px);
    opacity: 0;
    transition: all 0.35s ease 0.15s;
}
.vg-card:hover .vg-overlay-bottom { transform: translateY(0); opacity: 1; }

.vg-watch-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 18px;
    background: var(--vg-gradient);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 100px;
    box-shadow: 0 6px 16px rgba(235, 114, 84, 0.45);
    letter-spacing: 0.2px;
}

/* ========== CARD BODY ========== */
.vg-body {
    padding: 18px 18px 18px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 10px;
}
.vg-meta-row {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}
.vg-meta {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--vg-text-light);
    font-size: 0.75rem;
    font-weight: 500;
}
.vg-meta i { color: var(--vg-primary); font-size: 0.8rem; }
.vg-duration {
    padding: 2px 9px;
    background: var(--vg-gradient-soft);
    border-radius: 100px;
    color: var(--vg-primary);
    font-weight: 600;
}

.vg-title {
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--vg-text-dark);
    line-height: 1.4;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.2s ease;
}
.vg-card:hover .vg-title { color: var(--vg-primary); }

.vg-desc {
    font-size: 0.82rem;
    color: var(--vg-text-light);
    line-height: 1.6;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.vg-footer-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding-top: 6px;
    margin-top: auto;
    border-top: 1px dashed #e2e8f0;
    flex-wrap: wrap;
}
.vg-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 11px;
    background: var(--vg-gradient-soft);
    color: var(--vg-primary);
    font-size: 0.7rem;
    font-weight: 600;
    border-radius: 100px;
    max-width: 65%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.vg-tag i { font-size: 0.72rem; }

.vg-play-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 14px;
    background: transparent;
    color: var(--vg-primary);
    font-size: 0.78rem;
    font-weight: 700;
    border: 1.5px solid rgba(235, 114, 84, 0.3);
    border-radius: 100px;
    text-decoration: none;
    transition: all 0.25s ease;
}
.vg-play-btn i {
    font-size: 0.7rem;
    transition: transform 0.25s ease;
}
.vg-play-btn:hover {
    background: var(--vg-gradient);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 6px 14px rgba(235, 114, 84, 0.35);
}
.vg-play-btn:hover i {
    transform: translateX(3px);
}

/* ========== EMPTY STATE ========== */
.vg-empty {
    text-align: center;
    padding: 80px 24px;
    background: var(--vg-card-bg);
    border-radius: var(--vg-radius-xl);
    border: 1px dashed #cbd5e1;
    box-shadow: var(--vg-shadow-sm);
}
.vg-empty-illustration {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--vg-gradient-soft);
    color: var(--vg-primary);
    font-size: 2.6rem;
    margin-bottom: 24px;
    animation: vgFloaty 3.5s ease-in-out infinite;
}
@keyframes vgFloaty {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
.vg-empty-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--vg-text-dark);
    margin: 0 0 10px;
}
.vg-empty-msg {
    font-size: 0.95rem;
    color: var(--vg-text-mid);
    line-height: 1.7;
    max-width: 440px;
    margin: 0 auto 26px;
}
.vg-empty-cta {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 12px 24px;
    background: var(--vg-gradient);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
    border-radius: 100px;
    text-decoration: none;
    box-shadow: 0 8px 22px rgba(235, 114, 84, 0.4);
    transition: all 0.3s ease;
}
.vg-empty-cta:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--vg-shadow-lg);
}

/* ========== PAGINATION ========== */
.vg-pagination {
    margin-top: 48px;
}
.vg-page-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.vg-page-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 15px;
    border-radius: 12px;
    background: var(--vg-card-bg);
    border: 1px solid #e2e8f0;
    color: var(--vg-text-mid);
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s ease;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
}
.vg-page-btn:hover {
    border-color: rgba(235, 114, 84, 0.35);
    color: var(--vg-primary);
    transform: translateY(-2px);
    box-shadow: var(--vg-shadow-sm);
}
.vg-page-btn i { font-size: 0.72rem; }
.vg-page-prev,
.vg-page-next {
    gap: 6px;
    font-size: 0.8rem;
    padding: 0 16px;
}
.vg-page-active {
    background: var(--vg-gradient);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 8px 18px rgba(235, 114, 84, 0.35);
    transform: translateY(-1px);
}
.vg-page-active:hover {
    color: #fff;
    transform: translateY(-3px);
    box-shadow: var(--vg-shadow-lg);
}
.vg-page-ellipsis {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    color: var(--vg-text-light);
    font-weight: 600;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 991px) {
    .vg-hero { padding: 40px 0 56px; }
    .vg-stats-row > .vg-stat-card { min-width: 150px; }
    .vg-stat-num { font-size: 1.35rem; }
    .vg-category-chips { align-items: center; }
}

@media (max-width: 767px) {
    .vg-hero { padding: 28px 0 40px; }
    .vg-hero-title {
        font-size: 1.9rem;
        gap: 12px;
    }
    .vg-hero-icon {
        width: 46px;
        height: 46px;
        font-size: 1.15rem;
        border-radius: 13px;
    }
    .vg-hero-subtitle { margin-bottom: 26px; }
    .vg-stats-row {
        gap: 12px;
        margin-bottom: 20px;
    }
    .vg-stat-card {
        padding: 14px 16px;
        gap: 11px;
        min-width: calc(50% - 6px);
        border-radius: 14px;
    }
    .vg-stat-icon {
        width: 38px;
        height: 38px;
        border-radius: 10px;
        font-size: 0.9rem;
    }
    .vg-gallery-wrap { padding: 20px 0 60px; }
    .vg-toolbar {
        padding: 12px 16px;
        flex-direction: column;
        align-items: flex-start;
    }
    .vg-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 22px;
    }
    .vg-play-circle { width: 52px; height: 52px; }
    .vg-body { padding: 16px 16px 18px; }
    .vg-cat-ribbon { font-size: 0.68rem; padding: 5px 10px 5px 8px; }
    .vg-overlay { padding: 16px 14px 14px; }
    .vg-overlay-title { font-size: 0.95rem; }
    .vg-overlay-desc { font-size: 0.8rem; }
}

@media (max-width: 479px) {
    .vg-stat-card {
        min-width: 100%;
    }
    .vg-hero-title {
        font-size: 1.6rem;
    }
    .vg-chips-scroll {
        width: 100%;
    }
    .vg-play-circle { width: 48px; height: 48px; }
}

/* Fancybox Z-index fix */
.fancybox__container { z-index: 99999 !important; }
