:root {
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --accent-color: #ff6b6b;
    --text-primary: #1a1a1a;
    --text-secondary: #666;
    --bg-primary: #ffffff;
    --bg-secondary: #f8f9fa;
    --border-color: #e0e0e0;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.2);
    --border-radius: 16px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: #000;
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    width: 100%;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.header {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 100;
    padding: 0;
    width: auto;
    height: auto;
}

.logo-image {
    height: 40px;
    width: auto;
    max-width: 150px;
    max-height: 40px;
    object-fit: contain;
    opacity: 0.9;
    transition: var(--transition);
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
    display: block;
    margin: 0;
    padding: 0;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: auto;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
    will-change: transform;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.logo-image:hover {
    opacity: 1;
    transform: translateZ(0) scale(1.05);
    filter: drop-shadow(0 4px 12px rgba(102, 126, 234, 0.4));
}

.main-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    max-width: 1400px;
    min-height: 100vh;
    padding: 20px;
    padding-top: 80px;
    margin: 0 auto;
}

/* Video view specific layout */
.main-content:has(.metadata-section) {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.video-section {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    max-width: 380px;
}

.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 380px;
    background: #000;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 0 40px rgba(102, 126, 234, 0.3);
    aspect-ratio: 9 / 16;
    max-height: 95vh;
    border: 8px solid rgba(255, 255, 255, 0.1);
}

.video-player {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #000;
    border-radius: 20px;
}

.loading-indicator {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 24px;
}

.scan-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 24px;
}

.scan-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(102, 126, 234, 0.8) 20%,
        rgba(118, 75, 162, 1) 50%,
        rgba(102, 126, 234, 0.8) 80%,
        transparent
    );
    box-shadow: 0 0 20px rgba(102, 126, 234, 0.8),
                0 0 40px rgba(118, 75, 162, 0.6);
    animation: scanUpDown 3s ease-in-out infinite;
    transform-origin: center;
}

.scan-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(102, 126, 234, 0.4) 20%,
        rgba(118, 75, 162, 0.6) 50%,
        rgba(102, 126, 234, 0.4) 80%,
        transparent
    );
    filter: blur(8px);
    animation: scanUpDown 3s ease-in-out infinite;
    transform-origin: center;
}

@keyframes scanUpDown {
    0% {
        top: 0;
        opacity: 0;
    }
    5% {
        opacity: 1;
    }
    45% {
        opacity: 1;
    }
    50% {
        top: 100%;
        opacity: 0;
    }
    55% {
        opacity: 1;
    }
    95% {
        opacity: 1;
    }
    100% {
        top: 0;
        opacity: 0;
    }
}

.loading-text {
    position: relative;
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
    margin-top: 20px;
    text-shadow: 0 0 20px rgba(102, 126, 234, 0.8);
    animation: pulse 2s ease-in-out infinite;
    z-index: 11;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.7;
    }
    50% {
        opacity: 1;
    }
}

.error-message {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 107, 107, 0.95);
    color: white;
    padding: 20px 30px;
    border-radius: var(--border-radius);
    text-align: center;
    z-index: 10;
    box-shadow: var(--shadow-md);
}

.metadata-section {
    flex: 0 0 400px;
    height: 100%;
    display: flex;
    align-items: center;
    padding-right: 20px;
    width: 100%;
}

.metadata-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    overflow: hidden;
}

.metadata-card.loading::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.08) 20%,
        rgba(255, 255, 255, 0.15) 50%,
        rgba(255, 255, 255, 0.08) 80%,
        transparent 100%
    );
    animation: shimmer 2.5s ease-in-out infinite;
    z-index: 1;
    pointer-events: none;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.metadata-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.metadata-card::-webkit-scrollbar {
    width: 6px;
}

.metadata-card::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.metadata-card::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
}

.metadata-card::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}

.video-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 30px;
    color: #ffffff;
    line-height: 1.2;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 2;
}

.metadata-stats {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.2rem;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: var(--transition);
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.stat-icon {
    width: 20px;
    height: 20px;
    color: rgba(255, 255, 255, 0.9);
    flex-shrink: 0;
    transition: var(--transition);
}

.stat-item:hover .stat-icon {
    color: rgba(102, 126, 234, 1);
    transform: scale(1.1);
}

.stat-value {
    font-weight: 700;
    color: #ffffff;
    font-size: 1.3rem;
}

.video-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.metadata-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    position: relative;
    z-index: 2;
}

.tag {
    background: var(--primary-gradient);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.tag:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
}

/* Home View Styles */
.home-container {
    width: 100%;
    max-width: 1400px;
    padding: 40px 20px;
    padding-top: 100px;
}

.home-header {
    text-align: center;
    margin-bottom: 50px;
}

.home-header h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.home-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
}

/* Videos Grid */
.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    width: 100%;
}

/* Video Card */
.video-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.video-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 12px 40px rgba(102, 126, 234, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.video-card-thumbnail {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #1a1a1a;
}

.video-card-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.video-card:hover .video-card-thumbnail img {
    transform: scale(1.05);
}

.video-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-card:hover .video-card-overlay {
    opacity: 1;
}

.play-button {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}

.video-card:hover .play-button {
    transform: scale(1.1);
}

.video-card-info {
    padding: 20px;
}

.video-card-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    margin: 0 0 8px 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.video-card-stats {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 8px;
}

.video-card-likes {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    gap: 4px;
}

.video-card-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    display: inline-block;
    vertical-align: middle;
    color: inherit;
}

.video-card-icon path {
    stroke: rgba(255, 255, 255, 0.7);
    fill: none;
    stroke-width: 1.5;
}

.video-card-views-stat {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: auto;
}

.video-card-views-stat .video-card-icon path {
    stroke: rgba(255, 255, 255, 0.7);
    fill: none;
    stroke-width: 1.5;
}

/* Loading State */
.loading-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    color: rgba(255, 255, 255, 0.7);
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 255, 255, 0.1);
    border-top-color: rgba(102, 126, 234, 1);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
}

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

.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .home-header h1 {
        font-size: 2.5rem;
    }
    
    .home-subtitle {
        font-size: 1rem;
    }
    
    .videos-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 16px;
    }
    
    .home-container {
        padding: 20px 15px;
        padding-top: 80px;
    }
}

@media (max-width: 480px) {
    .videos-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .video-card-info {
        padding: 16px;
    }
}

/* Video Modal Styles */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.video-modal.modal-open {
    opacity: 1;
    pointer-events: all;
}

.video-modal.modal-closing {
    opacity: 0;
}

.video-modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
}

.video-modal-container {
    position: relative;
    width: 100%;
    height: 100%;
    max-width: 1400px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    z-index: 1;
}

.video-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
    background: rgba(0, 0, 0, 0.7);
    border: none;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: white;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.video-modal-close:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: scale(1.1);
}

.video-modal-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    height: 100%;
    padding: 20px;
}

.video-modal-video-wrapper {
    position: relative;
    width: 100%;
    max-width: 400px;
    background: #000;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    aspect-ratio: 9 / 16;
    max-height: 90vh;
}

.modal-video-player {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #000;
    border-radius: 16px;
}

.modal-loading-indicator {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 16px;
}

.modal-error-message {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 107, 107, 0.95);
    color: white;
    padding: 20px 30px;
    border-radius: var(--border-radius);
    text-align: center;
    z-index: 10;
    box-shadow: var(--shadow-md);
}

.video-modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: transparent;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.2s ease;
    padding: 0;
    pointer-events: none;
}

.video-modal-video-wrapper:hover .video-modal-nav {
    opacity: 0.9;
    pointer-events: all;
}

.video-modal-nav:hover {
    opacity: 1;
    transform: translateY(-50%) scale(1.15);
}

.video-modal-nav svg {
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5));
}

.video-modal-nav svg circle {
    fill: rgba(255, 255, 255, 0.95);
}

.video-modal-nav:hover svg circle {
    fill: rgba(255, 255, 255, 1);
}

.video-modal-prev {
    left: 0px;
    padding-left: 10px;
}

.video-modal-next {
    right: 0px;
    padding-right: 10px;
}

.video-modal-nav:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.video-modal-metadata {
    position: absolute;
    bottom: 40px;
    right: 5px;
    background: transparent;
    padding: 0;
    z-index: 3;
    text-align: right;
    max-width: 300px;
}

.modal-video-title-wrapper {
    position: absolute;
    top: 10px;
    left: 25px;
    right: 25px;
    overflow: hidden;
    z-index: 3;
    height: 1.3em;
}

.modal-video-title {
    position: relative;
    display: inline-block;
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
}

.modal-video-title.scrolling {
    text-overflow: clip;
    animation: scroll-title linear infinite;
    width: auto;
    min-width: 100%;
}

.modal-video-title.scrolling:hover {
    animation-play-state: paused;
}

@keyframes scroll-title {
    0%, 10% {
        transform: translateX(0);
    }
    40% {
        transform: translateX(var(--scroll-distance, -100px));
    }
    50%, 60% {
        transform: translateX(var(--scroll-distance, -100px));
    }
    90% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(0);
    }
}

.modal-metadata-stats {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}

.modal-stat-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    transition: var(--transition);
    flex-direction: row-reverse;
}

.modal-stat-item:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.05);
}

.modal-stat-icon {
    width: 20px;
    height: 20px;
    color: rgba(255, 255, 255, 0.9);
    flex-shrink: 0;
    transition: var(--transition);
}

.modal-stat-item:hover .modal-stat-icon {
    color: rgba(102, 126, 234, 1);
    transform: scale(1.1);
}

.modal-stat-value {
    font-weight: 600;
    color: #ffffff;
    font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 768px) {
    .video-modal-video-wrapper {
        max-width: 100%;
        max-height: 100vh;
        border-radius: 0;
        box-shadow: none;
    }

    .video-modal-content {
        padding: 0;
        flex-direction: column;
    }

    .video-modal-metadata {
        bottom: 40px;
        right: 5px;
        max-width: calc(100% - 40px);
    }

    .modal-video-title-wrapper {
        top: 10px;
        left: 15px;
        right: 15px;
    }
    
    .modal-video-title {
        font-size: 1.1rem;
    }

    .video-modal-close {
        top: 15px;
        right: 15px;
        width: 44px;
        height: 44px;
        background: rgba(0, 0, 0, 0.5);
    }

    .video-modal-nav {
        opacity: 0.9 !important;
        pointer-events: all !important;
        background: rgba(0, 0, 0, 0.5) !important;
        backdrop-filter: blur(8px) !important;
    }

    .video-modal-video-wrapper:hover .video-modal-nav {
        opacity: 0.9 !important;
        pointer-events: all !important;
    }

    .video-modal-prev {
        left: 0px;
        padding-left: 10px;
    }

    .video-modal-next {
        right: 0px;
        padding-right: 10px;
    }
}

@media (max-width: 1024px) {
    .header {
        top: 15px;
        left: 15px;
    }
    
    .logo-image {
        height: 35px;
    }
    
    .main-content {
        flex-direction: column;
        gap: 20px;
        padding: 15px;
        padding-top: 70px;
        height: auto;
        min-height: 100vh;
    }
    
    .main-content:has(.metadata-section) {
        flex-direction: column;
        gap: 20px;
    }
    
    .metadata-section {
        flex: 0 0 auto;
        width: 100%;
        max-width: 600px;
        padding-right: 0;
        order: 2;
    }
    
    .video-section {
        flex: 0 0 auto;
        width: 100%;
        max-width: 380px;
        order: 1;
    }
    
    .video-wrapper {
        max-width: 380px;
        border: 6px solid rgba(255, 255, 255, 0.1);
        border-radius: 20px;
    }
    
    .metadata-card {
        max-height: none;
        padding: 25px;
    }
    
    .video-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .main-content {
        padding: 10px;
        padding-top: 60px;
    }
    
    .video-title {
        font-size: 1.5rem;
    }
    
    .metadata-card {
        padding: 20px;
    }
    
    .stat-item {
        font-size: 1rem;
    }
    
    .stat-value {
        font-size: 1.1rem;
    }
    
    .video-section {
        width: 100%;
        max-width: 100%;
    }
    
    .video-section {
        width: 100%;
        max-width: 100%;
        padding: 0;
    }
    
    .video-wrapper {
        max-width: 100%;
        width: 100%;
        max-height: 70vh;
        border: 4px solid rgba(255, 255, 255, 0.1);
        border-radius: 16px;
        margin: 0 auto;
    }
    
    .video-wrapper .video-js {
        border-radius: 12px;
    }
    
    .video-wrapper .video-js video,
    .video-wrapper .video-js .vjs-tech {
        border-radius: 12px;
    }
    
    .loading-indicator {
        border-radius: 16px;
    }
    
    .scan-container {
        border-radius: 16px;
    }
    
    .metadata-section {
        width: 100%;
        max-width: 100%;
        padding: 0;
    }
    
    .metadata-card {
        width: 100%;
        max-width: 100%;
        margin: 0;
    }
    
    .metadata-stats {
        gap: 12px;
    }
    
    .stat-item {
        padding: 10px;
    }
}

@media (max-width: 480px) {
    .main-content {
        padding: 8px;
        padding-top: 55px;
    }
    
    .video-wrapper {
        max-height: 65vh;
        border: 3px solid rgba(255, 255, 255, 0.1);
        border-radius: 12px;
    }
    
    .video-wrapper .video-js {
        border-radius: 9px;
    }
    
    .video-wrapper .video-js video,
    .video-wrapper .video-js .vjs-tech {
        border-radius: 9px;
    }
    
    .loading-indicator {
        border-radius: 12px;
    }
    
    .scan-container {
        border-radius: 12px;
    }
    
    .metadata-card {
        padding: 16px;
    }
    
    .video-title {
        font-size: 1.25rem;
        margin-bottom: 20px;
    }
    
    .metadata-stats {
        gap: 10px;
        margin-bottom: 20px;
        padding-bottom: 20px;
    }
    
    .stat-item {
        padding: 8px;
        font-size: 0.9rem;
    }
    
    .stat-value {
        font-size: 1rem;
    }
    
    .video-description {
        font-size: 1rem;
        margin-bottom: 20px;
    }
}

