:root {
    --brand-green: #03fe67;
    --brand-orange: #ff6b00;
    --bg-charcoal: #0b1a15;
    --border-glow-green: rgba(3, 254, 103, 0.2);
    --border-glow-orange: rgba(255, 107, 0, 0.2);
}
body.campaign-gallery-page {
    background-color: var(--bg-charcoal) !important;
    color: #cbd5e1 !important;
    font-family: 'Geist', sans-serif;
    overflow-x: hidden;
}
.gallery-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 80px 24px;
}
.gallery-header {
    text-align: center;
    margin-bottom: 60px;
}
.gallery-header h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.05em;
    margin-bottom: 16px;
    color: #ffffff;
    text-shadow: 0 0 20px rgba(3, 254, 103, 0.3);
}
.gallery-header h1 span.accent-orange {
    color: var(--brand-orange);
    text-shadow: 0 0 20px rgba(255, 107, 0, 0.3);
}
.gallery-header p {
    font-size: 1.125rem;
    color: #94a3b8;
    max-width: 600px;
    margin: 0 auto;
}
/* Filter tabs */
.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 48px;
    position: sticky;
    top: 100px;
    z-index: 100;
    background: rgba(11, 26, 21, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 12px 24px;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    max-width: fit-content;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}
.filter-tab {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #94a3b8;
    padding: 12px 24px;
    border-radius: 9999px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 8px;
}
.filter-tab:hover {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.06);
}
.filter-tab.active[data-filter="all"] {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
    color: #ffffff;
}
.filter-tab.active[data-filter="campus"] {
    background: rgba(3, 254, 103, 0.1);
    border-color: var(--brand-green);
    color: var(--brand-green);
    box-shadow: 0 0 15px rgba(3, 254, 103, 0.25);
}
.filter-tab.active[data-filter="outdoor"] {
    background: rgba(255, 107, 0, 0.1);
    border-color: var(--brand-orange);
    color: var(--brand-orange);
    box-shadow: 0 0 15px rgba(255, 107, 0, 0.25);
}
.filter-tab.active[data-filter="indoor"] {
    background: rgba(14, 165, 233, 0.1);
    border-color: #0ea5e9;
    color: #0ea5e9;
    box-shadow: 0 0 15px rgba(14, 165, 233, 0.25);
}
.tab-count {
    font-size: 0.85em;
    opacity: 0.7;
    background: rgba(255, 255, 255, 0.1);
    padding: 2px 8px;
    border-radius: 9999px;
}
/* Grid */
.gallery-grid {
    display: grid;
    grid-cols: 1;
    gap: 32px;
}
@media(min-width: 640px) {
    .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media(min-width: 1024px) {
    .gallery-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
/* Card */
.gallery-card {
    background: rgba(11, 26, 21, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    position: relative;
    content-visibility: auto;
    contain-intrinsic-size: 400px;
}
.gallery-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    z-index: 1;
}
.gallery-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.5);
}
.gallery-card.cat-campus:hover {
    border-color: rgba(3, 254, 103, 0.3);
    box-shadow: 0 20px 40px -15px rgba(3, 254, 103, 0.15);
}
.gallery-card.cat-outdoor:hover {
    border-color: rgba(255, 107, 0, 0.3);
    box-shadow: 0 20px 40px -15px rgba(255, 107, 0, 0.15);
}
.gallery-card.cat-indoor:hover {
    border-color: rgba(14, 165, 233, 0.3);
    box-shadow: 0 20px 40px -15px rgba(14, 165, 233, 0.15);
}
.image-wrapper {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.2);
}
.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.gallery-card:hover .image-wrapper img {
    transform: scale(1.05);
}
.image-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 12px;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 2;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.badge-campus {
    background: rgba(3, 254, 103, 0.15);
    border: 1px solid var(--brand-green);
    color: var(--brand-green);
}
.badge-outdoor {
    background: rgba(255, 107, 0, 0.15);
    border: 1px solid var(--brand-orange);
    color: var(--brand-orange);
}
.badge-indoor {
    background: rgba(14, 165, 233, 0.15);
    border: 1px solid #0ea5e9;
    color: #0ea5e9;
}
.card-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.card-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
    word-break: break-all;
}
.card-desc {
    font-size: 0.875rem;
    color: #94a3b8;
    line-height: 1.5;
    margin-bottom: 20px;
    flex-grow: 1;
    background: rgba(0,0,0,0.15);
    padding: 12px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.02);
    font-family: 'Geist', monospace;
    font-size: 0.8rem;
    height: 110px;
    overflow-y: auto;
}
.card-actions {
    display: flex;
    gap: 12px;
}
.btn-card {
    flex: 1;
    padding: 10px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}
.btn-copy {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #e2e8f0;
}
.btn-copy:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.2);
}
.btn-view, .btn-download {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: #94a3b8;
    flex: 0 0 45px;
    padding: 0;
    transition: all 0.2s ease;
}
.btn-view:hover, .btn-download:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
}
/* Notification toast */
.toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: rgba(11, 26, 21, 0.95);
    border: 1px solid var(--brand-green);
    box-shadow: 0 10px 30px rgba(3, 254, 103, 0.2);
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 8px;
    z-index: 1000;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    pointer-events: none;
    display: flex;
    align-items: center;
    gap: 8px;
}
.toast.show {
    transform: translateX(-50%) translateY(0);
}
/* AI Studio Panel */
.ai-studio-panel {
    background: rgba(11, 26, 21, 0.65);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(3, 254, 103, 0.2);
    box-shadow: 0 0 25px rgba(3, 254, 103, 0.05);
    border-radius: 16px;
    margin-bottom: 48px;
    overflow: hidden;
    transition: all 0.3s ease;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.ai-studio-panel:hover {
    border-color: rgba(3, 254, 103, 0.4);
    box-shadow: 0 0 30px rgba(3, 254, 103, 0.1);
}
.panel-header {
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    background: rgba(3, 254, 103, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}
.panel-header h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: 0.02em;
}
.icon-glow {
    color: var(--brand-green);
    text-shadow: 0 0 10px var(--brand-green);
}
.toggle-arrow {
    color: #64748b;
    transition: transform 0.3s ease;
}
.ai-studio-panel.collapsed .toggle-arrow {
    transform: rotate(-90deg);
}
.panel-body {
    padding: 24px;
}
.ai-studio-panel.collapsed .panel-body {
    display: none;
}
.panel-desc {
    font-size: 0.875rem;
    color: #94a3b8;
    margin-bottom: 24px;
    line-height: 1.6;
}
.form-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: left;
}
.form-group label {
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: #cbd5e1;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.form-group input, .form-group select {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 12px 16px;
    color: #ffffff;
    font-family: 'Geist', sans-serif;
    font-size: 0.95rem;
    outline: none;
    transition: all 0.3s ease;
}
.form-group input:focus, .form-group select:focus {
    border-color: var(--brand-green);
    box-shadow: 0 0 10px rgba(3, 254, 103, 0.2);
    background: rgba(0, 0, 0, 0.5);
}
.form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    align-items: flex-end;
}
@media(min-width: 640px) {
    .form-grid {
        grid-template-columns: 2fr 1fr;
    }
}
.btn-generate {
    background: linear-gradient(135deg, #03fe67, #00c94f);
    border: none;
    color: #0b1a15;
    padding: 14px 24px;
    border-radius: 8px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 5px 15px rgba(3, 254, 103, 0.3);
    height: 48px;
    width: 100%;
}
.btn-generate:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(3, 254, 103, 0.5);
    filter: brightness(1.1);
}
.btn-generate:disabled {
    background: rgba(255, 255, 255, 0.05);
    color: #64748b;
    box-shadow: none;
    cursor: not-allowed;
    transform: none;
}
.generator-console {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 16px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem;
    color: #94a3b8;
    max-height: 150px;
    overflow-y: auto;
    margin-top: 24px;
    display: none;
    text-align: left;
}
.console-line {
    margin-bottom: 6px;
    line-height: 1.5;
}
.console-line:last-child {
    margin-bottom: 0;
}
.console-tag {
    color: var(--brand-green);
    font-weight: 600;
}
.console-tag.info {
    color: #0ea5e9;
}
.console-tag.error {
    color: #ef4444;
}
.line-active {
    color: #ffffff;
}
.btn-favorite {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: #94a3b8;
    flex: 0 0 45px;
    padding: 0;
    transition: all 0.3s ease;
}
.btn-favorite:hover {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border-color: rgba(239, 68, 68, 0.3);
}
.btn-favorite.favorited {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
    border-color: #ef4444;
    box-shadow: 0 0 10px rgba(239, 68, 68, 0.3);
}
.btn-favorite.favorited span {
    font-variation-settings: 'FILL' 1;
}
.gallery-card.favorited-card {
    border-color: rgba(239, 68, 68, 0.2) !important;
    box-shadow: 0 10px 30px -10px rgba(239, 68, 68, 0.1) !important;
}
.btn-wand {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: #94a3b8;
    flex: 0 0 45px;
    padding: 0;
    transition: all 0.3s ease;
}
.btn-wand:hover {
    background: rgba(6, 182, 212, 0.1);
    color: #06b6d4;
    border-color: rgba(6, 182, 212, 0.3);
}
.btn-wand.selected {
    background: rgba(6, 182, 212, 0.2);
    color: #06b6d4;
    border-color: #06b6d4;
    box-shadow: 0 0 10px rgba(6, 182, 212, 0.3);
}
.gallery-card.selected-ref {
    border-color: rgba(6, 182, 212, 0.4) !important;
    box-shadow: 0 10px 30px -10px rgba(6, 182, 212, 0.2) !important;
}
.selected-references-box {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
    padding: 12px;
    background: rgba(0,0,0,0.2);
    border: 1px dashed rgba(255,255,255,0.08);
    border-radius: 8px;
    align-items: center;
    text-align: left;
}
.selected-references-title {
    font-family: 'Outfit', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    width: 100%;
    margin-bottom: 4px;
}
.ref-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(6, 182, 212, 0.1);
    border: 1px solid rgba(6, 182, 212, 0.3);
    color: #06b6d4;
    padding: 4px 10px;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-family: 'JetBrains Mono', monospace;
}
.ref-badge-remove {
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.2s ease;
    font-size: 14px !important;
}
.ref-badge-remove:hover {
    opacity: 1;
    color: #ef4444;
}
.ref-none-notice {
    font-size: 0.8rem;
    color: #64748b;
    font-style: italic;
}
.form-grid-3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    align-items: flex-end;
    margin-top: 16px;
}
@media(min-width: 640px) {
    .form-grid-3 {
        grid-template-columns: 1.5fr 1fr 1fr;
    }
}

/* Virtual Gallery Lightbox */
.vg-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(5, 12, 10, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    overflow: hidden;
    color: #ffffff;
}
.vg-lightbox.show {
    opacity: 1;
    pointer-events: auto;
}
.vg-close-btn {
    position: absolute;
    top: 24px;
    right: 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10002;
}
.vg-close-btn:hover {
    background: rgba(239, 68, 68, 0.2);
    border-color: #ef4444;
    color: #ef4444;
    transform: rotate(90deg);
}
.vg-viewport {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1200px;
}
.vg-stage {
    position: relative;
    width: 100%;
    max-width: 1200px;
    height: 60vh;
    transform-style: preserve-3d;
}
.vg-slide {
    position: absolute;
    top: 0;
    left: 50%;
    width: 55%;
    height: 100%;
    transform: translate(-50%, 0);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8);
    transition: transform 0.7s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.7s ease, filter 0.7s ease, border-color 0.7s ease, box-shadow 0.7s ease;
    transform-style: preserve-3d;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.08);
}
.vg-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    transition: transform 0.5s ease;
}
.vg-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    transition: opacity 0.7s ease;
    z-index: 2;
    pointer-events: none;
}
/* Slide states */
.vg-slide.vg-active {
    transform: translate(-50%, 0) scale(1) translateZ(0) rotateY(0deg);
    opacity: 1;
    filter: none;
    z-index: 10;
    cursor: default;
    border-color: rgba(3, 254, 103, 0.3);
    box-shadow: 0 0 40px rgba(3, 254, 103, 0.15), 0 30px 60px rgba(0, 0, 0, 0.8);
}
.vg-slide.vg-active .vg-slide-overlay {
    opacity: 0;
}
.vg-slide.vg-prev {
    transform: translate(-100%, 0) scale(0.65) translateZ(-300px) rotateY(35deg);
    opacity: 0.35;
    filter: blur(3px);
    z-index: 5;
}
.vg-slide.vg-next {
    transform: translate(0%, 0) scale(0.65) translateZ(-300px) rotateY(-35deg);
    opacity: 0.35;
    filter: blur(3px);
    z-index: 5;
}

/* Transitory helper states for off-stage entry/exit */
.vg-slide.vg-far-left {
    transform: translate(-150%, 0) scale(0.4) translateZ(-600px) rotateY(45deg);
    opacity: 0;
    filter: blur(6px);
    z-index: 1;
    pointer-events: none;
}
.vg-slide.vg-far-right {
    transform: translate(50%, 0) scale(0.4) translateZ(-600px) rotateY(-45deg);
    opacity: 0;
    filter: blur(6px);
    z-index: 1;
    pointer-events: none;
}

/* Hover effects on side slides */
.vg-slide.vg-prev:hover,
.vg-slide.vg-next:hover {
    opacity: 0.7;
    filter: blur(1px);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Standalone Caption styling overlaying active slide area */
.vg-caption {
    position: absolute;
    bottom: calc(50% - 30vh + 10px);
    left: 50%;
    transform: translate(-50%, calc(100% + 20px));
    width: 55%;
    max-width: 1200px;
    background: rgba(5, 12, 10, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(3, 254, 103, 0.2);
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.5);
    border-radius: 12px;
    padding: 24px 32px;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.4s ease;
    opacity: 0;
    z-index: 100;
    pointer-events: none;
    text-align: left;
}
.vg-caption-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 6px;
    letter-spacing: -0.01em;
}
.vg-caption-desc {
    font-family: 'Geist', sans-serif;
    font-size: 0.9rem;
    color: #94a3b8;
    line-height: 1.5;
    max-height: 80px;
    overflow-y: auto;
}
.vg-hover-trigger {
    position: absolute;
    bottom: calc(50% - 30vh);
    left: 50%;
    transform: translateX(-50%);
    width: 55%;
    height: 120px;
    z-index: 99;
}
.vg-hover-trigger:hover ~ .vg-caption,
.vg-caption:hover {
    transform: translate(-50%, -10px);
    opacity: 1;
    pointer-events: auto;
}

/* Navigation buttons */
.vg-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #cbd5e1;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10001;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.vg-nav-btn span {
    font-size: 32px !important;
}
.vg-nav-btn:hover {
    background: rgba(3, 254, 103, 0.1);
    border-color: var(--brand-green);
    color: var(--brand-green);
    box-shadow: 0 0 20px rgba(3, 254, 103, 0.2);
}
.vg-nav-left {
    left: 40px;
}
.vg-nav-right {
    right: 40px;
}
@media (max-width: 1024px) {
    .vg-slide {
        width: 75%;
    }
    .vg-slide.vg-prev {
        transform: translate(-80%, 0) scale(0.65) translateZ(-300px) rotateY(35deg);
    }
    .vg-slide.vg-next {
        transform: translate(-20%, 0) scale(0.65) translateZ(-300px) rotateY(-35deg);
    }
    .vg-nav-left { left: 16px; }
    .vg-nav-right { right: 16px; }
    .vg-nav-btn {
        width: 48px;
        height: 48px;
    }
    .vg-caption, .vg-hover-trigger {
        width: 75%;
    }
}

@media (max-width: 640px) {
    .vg-caption, .vg-hover-trigger {
        width: 90%;
    }
}

.vg-slide.no-transition {
    transition: none !important;
}

.vg-slide.vg-hidden {
    opacity: 0 !important;
    pointer-events: none !important;
}

.vg-caption-download:hover {
    background: rgba(3, 254, 103, 0.1) !important;
    color: var(--brand-green) !important;
    border-color: rgba(3, 254, 103, 0.3) !important;
}

