/* Custom styles that extend Tailwind */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #0f0f0f;
    color: #f1f1f1;
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

.container {
    max-width: 1400px;
}

.video-card {
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    background: #1e1e1e;
}

.video-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
}
.thumbnail-container {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: #2d2d2d;
}

.thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    background: linear-gradient(45deg, #2d2d2d, #1e1e1e);
}

.thumbnail-error {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 14px;
    text-align: center;
    padding: 20px;
}
.video-card:hover .thumbnail {
    transform: scale(1.08);
}
.category-card {
    min-height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    overflow: hidden;
    cursor: pointer;
    border-radius: 12px;
    position: relative;
    background: #1e1e1e;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, #ff4b81, #8a2be2);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.category-card:hover::before {
    opacity: 0.9;
}

.category-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 14px 28px rgba(0,0,0,0.25);
}

.category-card img {
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    z-index: 1;
}

.category-card:hover img {
    transform: scale(1.1);
}

.category-card span {
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.category-card:hover span {
    color: white;
    transform: scale(1.05);
}
/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
    background: #4a4a4a;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #6b6b6b;
}