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

:root {
    --bg-gradient: radial-gradient(circle at top left, #1a2a3a, #050505);
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --accent: #00d1b2;
    --text: #ffffff;
}

html { scroll-behavior: smooth; }

body {
    margin: 0;
    background: var(--bg-gradient);
    color: var(--text);
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
    overflow-x: hidden;
}

/* --- Liquid Entrance Animation --- */
@keyframes liquidEntrance {
    from { opacity: 0; transform: scale(1.02); filter: blur(10px); }
    to { opacity: 1; transform: scale(1); filter: blur(0); }
}

.page-wrapper {
    animation: liquidEntrance 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* --- Skeleton Shimmer Effect --- */
@keyframes shimmer {
    0% { background-position: -468px 0; }
    100% { background-position: 468px 0; }
}

.poster {
    width: 100%; height: 100%;
    background-color: #111;
    background-image: linear-gradient(to right, #111 0%, #1a1a1a 20%, #111 40%, #111 100%);
    background-repeat: no-repeat;
    background-size: 800px 100%;
    background-size: cover;
    background-position: center;
    transition: 0.4s;
}

.container { max-width: 1400px; margin: 0 auto; padding: 40px 20px; }
.header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 60px; }
.site-title { font-weight: 200; letter-spacing: 8px; margin: 0; font-size: 2em; }
.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 30px; }
.video-card {
    position: relative; display: block; aspect-ratio: 2 / 3;
    border-radius: 16px; overflow: hidden; text-decoration: none;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: var(--glass-bg); border: 1px solid var(--glass-border);
    backdrop-filter: blur(15px);
}
.video-card:hover { transform: scale(1.05) translateY(-5px); border-color: var(--accent); }
.card-info {
    position: absolute; bottom: 0; left: 0; width: 100%; padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    transform: translateY(100%); transition: 0.3s;
}
.video-card:hover .card-info { transform: translateY(0); }
.video-title { margin: 0; font-weight: 600; font-size: 1.1em; color: #fff; }
