html {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: #000000;
}

body {
    position: relative;
    width: 100%;
    height: 100%;
    margin: 0;
}

#webgl-canvas {
    touch-action: none;
}

html, body,
.mobile, .mobile * {
    box-sizing: border-box;
}

/* ============================================
   Mobile fallback
   ============================================ */
.mobile {
    display: none;
    position: absolute;
    width: 100%;
    top: 50%;
    padding: 0 30px;
    font-size: 14px;
    color: #fff;
    transform: translate3d(0, -50%, 0);
}

.mobile span {
    color: #ccc;
    text-decoration: underline;
    cursor: pointer;
}

/* ============================================
   UI Overlay System
   ============================================ */
.ui-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}
.ui-overlay > * {
    pointer-events: auto;
}

/* ============================================
   Glassmorphism base
   ============================================ */
.glass-panel {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

@supports not (backdrop-filter: blur(10px)) {
    .glass-panel {
        background: rgba(0, 0, 0, 0.75);
    }
}

/* ============================================
   Scene Selection Menu — Standalone Background
   ============================================ */
#scene-menu {
    background: radial-gradient(ellipse at 50% 40%, #0a1628 0%, #000 70%);
}
#scene-menu::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background:
        radial-gradient(circle at 30% 20%, rgba(0, 127, 127, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(155, 27, 48, 0.06) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.menu-container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 420px;
    padding: 32px 20px;
    text-align: center;
}

.menu-title {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 4px 0;
    letter-spacing: 0.5px;
}

.menu-subtitle {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    margin: 0 0 28px 0;
}

/* Scene cards */
.scene-cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.scene-card {
    display: flex;
    align-items: center;
    padding: 16px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: transform 0.2s, background 0.2s;
    text-align: left;
    min-height: 72px;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
}
.scene-card:active {
    transform: scale(0.97);
    background: rgba(255, 255, 255, 0.12);
}

.scene-card-indicator {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    flex-shrink: 0;
    margin-right: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.scene-card-text {
    flex: 1;
}

.scene-card-label {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
}

.scene-card-mode {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 2px;
    opacity: 0.8;
}

.scene-card-desc {
    color: rgba(255, 255, 255, 0.45);
    font-size: 12px;
    margin-top: 4px;
}

/* Mode tag colors */
.mode-relax { color: #D4A574; }
.mode-discover { color: #4DBFBF; }
.mode-move { color: #D44060; }

/* ============================================
   Buttons
   ============================================ */
.glass-button {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    min-height: 44px;
    min-width: 44px;
    transition: background 0.2s;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
}
.glass-button:active {
    background: rgba(255, 255, 255, 0.2);
}

.surprise-btn {
    width: 100%;
    margin-top: 4px;
}

.back-btn {
    position: fixed;
    top: 16px;
    left: 16px;
    padding: 10px 20px;
    font-size: 14px;
    z-index: 200;
    pointer-events: auto;
}

/* ============================================
   Loading Screen
   ============================================ */
#loading-screen {
    background: radial-gradient(ellipse at 50% 40%, #0a1628 0%, #000 70%);
    flex-direction: column;
}

.loading-content {
    position: relative;
    z-index: 1;
    text-align: center;
    pointer-events: auto;
}

.loading-brand {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 8px 0;
    letter-spacing: 0.5px;
    animation: loadFadeInDown 0.8s ease-out;
}

.loading-scene-label {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--loading-accent, #D4A574);
    margin-bottom: 36px;
    animation: loadFadeIn 1s ease-out 0.3s both;
}

.loading-ring-container {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 28px;
    animation: loadFadeIn 1s ease-out 0.5s both;
}

.loading-ring {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.loading-ring-track {
    fill: none;
    stroke: rgba(255, 255, 255, 0.08);
    stroke-width: 2.5;
}

.loading-ring-fill {
    fill: none;
    stroke: var(--loading-accent, #D4A574);
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-dasharray: 276.46;
    stroke-dashoffset: 276.46;
    transition: stroke-dashoffset 0.4s ease;
    filter: drop-shadow(0 0 8px var(--loading-accent, #D4A574));
}

.loading-ring-pct {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.loading-stage {
    color: rgba(255, 255, 255, 0.4);
    font-size: 13px;
    margin: 0;
    animation: loadFadeIn 1s ease-out 0.7s both;
}

/* Floating particles */
.loading-particles {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.loading-particle {
    position: absolute;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--loading-accent, #D4A574);
    opacity: 0;
    animation: loadFloatUp 5s ease-in-out infinite;
}

.lp-1 { left: 12%; animation-delay: 0s; }
.lp-2 { left: 30%; animation-delay: 1s; }
.lp-3 { left: 52%; animation-delay: 2s; }
.lp-4 { left: 72%; animation-delay: 0.5s; }
.lp-5 { left: 88%; animation-delay: 3s; }
.lp-6 { left: 42%; animation-delay: 1.5s; }

@keyframes loadFloatUp {
    0%   { transform: translateY(100vh) scale(0.5); opacity: 0; }
    15%  { opacity: 0.5; }
    85%  { opacity: 0.2; }
    100% { transform: translateY(-10vh) scale(1.3); opacity: 0; }
}

@keyframes loadFadeInDown {
    from { opacity: 0; transform: translateY(-14px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes loadFadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* ============================================
   Shader Controls Panel
   ============================================ */
/* Sound toggle button (left of settings gear) */
.sound-toggle-btn {
    position: fixed;
    bottom: 20px;
    right: 74px;
    z-index: 200;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, transform 0.2s;
    pointer-events: auto;
    -webkit-tap-highlight-color: transparent;
    padding: 0;
}
.sound-toggle-btn:hover {
    background: rgba(255, 255, 255, 0.18);
}
.sound-toggle-btn:active {
    transform: scale(0.92);
}

.sc-toggle-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 200;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, transform 0.2s;
    pointer-events: auto;
    -webkit-tap-highlight-color: transparent;
    padding: 0;
}
.sc-toggle-btn:hover {
    background: rgba(255, 255, 255, 0.18);
}
.sc-toggle-btn:active {
    transform: scale(0.92);
}

/* Debug log toggle button (left of sound) */
.dbg-toggle-btn {
    position: fixed;
    bottom: 20px;
    right: 128px;
    z-index: 200;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, transform 0.2s;
    pointer-events: auto;
    -webkit-tap-highlight-color: transparent;
    padding: 0;
}
.dbg-toggle-btn:hover {
    background: rgba(255, 255, 255, 0.18);
}
.dbg-toggle-btn:active {
    transform: scale(0.92);
}

/* Shift toolbar buttons left when shader controls panel is open */
.sc-panel-open .sound-toggle-btn,
.sc-panel-open .sc-toggle-btn,
.sc-panel-open .dbg-toggle-btn {
    transform: translateX(-348px);
}
.sc-panel-open .sound-toggle-btn:active,
.sc-panel-open .sc-toggle-btn:active,
.sc-panel-open .dbg-toggle-btn:active {
    transform: translateX(-348px) scale(0.92);
}

.sc-panel {
    position: fixed;
    top: 0; right: 0;
    width: 348px;
    height: 100%;
    z-index: 195;
    background: rgba(10, 14, 24, 0.85);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0;
    color: #fff;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    pointer-events: auto;
}

.sc-panel.sc-open {
    transform: translateX(0);
}

.sc-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    position: sticky;
    top: 0;
    background: rgba(10, 14, 24, 0.95);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    z-index: 1;
}

.sc-title {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.sc-close {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: background 0.2s;
    padding: 0;
    line-height: 1;
}
.sc-close:hover { background: rgba(255, 255, 255, 0.15); color: #fff; }

.sc-body {
    padding: 6px 18px 24px;
}

/* Tabbed layout override */
.sc-body-tabbed {
    display: flex;
    flex-direction: row;
    padding: 0;
    height: calc(100% - 53px);
}

/* Vertical tab bar */
.sc-tab-bar {
    display: flex;
    flex-direction: column;
    width: 48px;
    flex-shrink: 0;
    background: rgba(0, 0, 0, 0.2);
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    padding: 6px 0;
    gap: 2px;
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: none;
}
.sc-tab-bar::-webkit-scrollbar { display: none; }

.sc-tab-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin: 0 auto;
    border-radius: 8px;
    border: none;
    background: transparent;
    color: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    padding: 0;
    flex-shrink: 0;
    position: relative;
}
.sc-tab-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.7);
}
.sc-tab-btn.sc-tab-active {
    background: rgba(255, 255, 255, 0.1);
    color: var(--sc-accent, #D4A574);
}
.sc-tab-btn.sc-tab-active::before {
    content: '';
    position: absolute;
    left: -4px;
    top: 8px;
    bottom: 8px;
    width: 3px;
    border-radius: 0 2px 2px 0;
    background: var(--sc-accent, #D4A574);
}

/* Tab content area */
.sc-tab-content {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 6px 18px 24px;
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,0.15) transparent;
}
.sc-tab-content::-webkit-scrollbar { width: 4px; }
.sc-tab-content::-webkit-scrollbar-track { background: transparent; }
.sc-tab-content::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.15); border-radius: 2px; }

.sc-section {
    margin-bottom: 2px;
}

.sc-section-header {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    padding: 10px 0 4px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--sc-accent, #D4A574);
    user-select: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.sc-chevron {
    font-size: 8px;
    transition: transform 0.2s ease;
    display: inline-block;
}

.sc-section-open .sc-chevron {
    transform: rotate(90deg);
}

.sc-section-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.sc-section-open .sc-section-content {
    max-height: 2000px;
}

/* Slider control */
.sc-slider {
    margin-bottom: 12px;
}

.sc-slider-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
}

.sc-slider-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

.sc-slider-value {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.35);
    font-variant-numeric: tabular-nums;
    min-width: 36px;
    text-align: right;
}

.sc-range {
    width: 100%;
    -webkit-appearance: none;
    appearance: none;
    height: 3px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.12);
    outline: none;
    cursor: pointer;
}

.sc-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--sc-accent, #D4A574);
    cursor: pointer;
    box-shadow: 0 0 8px rgba(0,0,0,0.3);
    transition: transform 0.15s;
}
.sc-range::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}
.sc-range::-moz-range-thumb {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--sc-accent, #D4A574);
    cursor: pointer;
    border: none;
    box-shadow: 0 0 8px rgba(0,0,0,0.3);
}

/* Toggle control */
.sc-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
    padding: 6px 0;
}

.sc-toggle-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

.sc-toggle-switch {
    position: relative;
    width: 36px;
    height: 20px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.12);
    border: none;
    cursor: pointer;
    transition: background 0.2s;
    padding: 0;
    flex-shrink: 0;
}
.sc-toggle-switch::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transition: transform 0.2s, background 0.2s;
}
.sc-toggle-switch.sc-on {
    background: var(--sc-accent, #D4A574);
}
.sc-toggle-switch.sc-on::after {
    transform: translateX(16px);
    background: #fff;
}

/* Button */
.sc-button {
    width: 100%;
    padding: 6px 12px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.7);
    font-size: 11px;
    cursor: pointer;
    transition: background 0.2s;
}
.sc-button:hover {
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
}
.sc-button:active {
    background: var(--sc-accent, #D4A574);
    color: #fff;
}

/* Preset control */
.sc-preset-control {
    margin-bottom: 12px;
}

.sc-preset-select-row,
.sc-preset-save-row {
    display: flex;
    gap: 6px;
    align-items: center;
    margin-bottom: 6px;
}

.sc-preset-select {
    flex: 1;
    min-width: 0;
    max-width: 160px;
    height: 28px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 11px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    padding: 0 6px;
    cursor: pointer;
    outline: none;
}
.sc-preset-select option {
    background: #1a1a2e;
    color: #fff;
}

.sc-preset-name {
    flex: 1;
    height: 28px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 11px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    padding: 0 8px;
    outline: none;
}
.sc-preset-name::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.sc-button-danger {
    border-color: rgba(212, 64, 96, 0.4) !important;
    color: rgba(212, 64, 96, 0.8) !important;
}
.sc-button-danger:hover {
    background: rgba(212, 64, 96, 0.2) !important;
    color: #D44060 !important;
}

/* Color picker control */
.sc-color {
    margin-bottom: 12px;
}

.sc-color-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 5px;
}

.sc-color-header .sc-slider-label {
    flex: 1;
}

.sc-color-input {
    width: 28px;
    height: 22px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 4px;
    background: none;
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
}
.sc-color-input::-webkit-color-swatch-wrapper { padding: 1px; }
.sc-color-input::-webkit-color-swatch { border: none; border-radius: 2px; }
.sc-color-input::-moz-color-swatch { border: none; border-radius: 2px; }

/* Tooltip */
.sc-tip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.3);
    font-size: 9px;
    font-weight: 600;
    cursor: help;
    margin-left: 5px;
    flex-shrink: 0;
    line-height: 1;
    font-style: normal;
}
.sc-tip:hover {
    background: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.6);
}
.sc-tooltip {
    position: fixed;
    z-index: 9999;
    width: 200px;
    padding: 8px 10px;
    background: rgba(10, 14, 24, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 6px;
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 11px;
    font-weight: 400;
    line-height: 1.4;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.15s;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
.sc-tooltip.sc-tooltip-visible {
    opacity: 1;
}

/* ============================================
   Video Selection Screen
   ============================================ */
#video-select {
    background: radial-gradient(ellipse at 50% 40%, #0a1628 0%, #000 70%);
}
#video-select::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background:
        radial-gradient(circle at 30% 20%, rgba(0, 127, 127, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(155, 27, 48, 0.06) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.video-select-container {
    max-width: 420px;
    padding-top: 60px;
}

.video-back-btn {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 8px 16px;
    font-size: 13px;
    z-index: 10;
}

.video-cards {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 20px;
}

.video-card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 140px;
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.2s;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.video-card:active {
    transform: scale(0.97);
}

.video-card-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.video-card-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.75) 0%,
        rgba(0, 0, 0, 0.1) 60%,
        transparent 100%
    );
    z-index: 1;
}

.video-card-info {
    position: relative;
    z-index: 2;
    padding: 14px 16px;
}

.video-card-label {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
}

.video-card-desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    margin-top: 3px;
}

.video-card-duration {
    color: rgba(255, 255, 255, 0.45);
    font-size: 11px;
    margin-top: 4px;
}
