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

body {
    background: radial-gradient(circle at 20% 20%, #ffffff 0, #f7f7f7 35%, #f3f3f3 65%, #fdfdfd 100%);
    color: #0b0b0b;
    min-height: 100vh;
    font-family: 'Space Grotesk', 'Inter', system-ui, -apple-system, sans-serif;
}
.navbar-brand {
    font-weight: 700;
    letter-spacing: 0.5px;
}
.glass-card {
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    border-radius: 18px;
    color: #0b0b0b;
}
.glass-card .form-control,
.glass-card .form-select {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.12);
    color: #0b0b0b;
}
.glass-card .form-control:focus,
.glass-card .form-select:focus {
    box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.08);
    border-color: rgba(0, 0, 0, 0.35);
}
.glass-btn {
    background: linear-gradient(120deg, #0b0b0b, #1a1a1a);
    border: none;
    color: #f7f7f7;
    font-weight: 700;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.glass-btn:hover {
    background: linear-gradient(135deg, #1c1c1c, #2a2a2a);
    color: #f7f7f7;
    transform: translateY(-1px);
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.25);
}
.floating-dot {
    position: absolute;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    z-index: 0;
    animation: floaty 10s ease-in-out infinite alternate;
}
.floating-dot.dot-1 { background: #dcdcdc; top: -60px; right: 12%; }
.floating-dot.dot-2 { background: #e8e8e8; bottom: -70px; left: 8%; animation-duration: 12s; }
.floating-dot.dot-3 { background: #f2f2f2; top: 30%; left: -40px; animation-duration: 11s; }
.movie-card img {
    object-fit: cover;
    height: 240px;
}
.video-js {
    width: 100%;
    height: 60vh;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
    background: radial-gradient(circle at 20% 20%, #f7f7f7 0, #ededed 45%, #e5e5e5 90%);
}
.form-label {
    font-weight: 600;
}
::placeholder {
    color: rgba(11, 11, 11, 0.55) !important;
}
@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}
@keyframes floaty {
    from { transform: translateY(-8px) scale(1); }
    to { transform: translateY(12px) scale(1.03); }
}
.shimmer {
    background: linear-gradient(120deg, rgba(0,0,0,0.06), rgba(0,0,0,0.12), rgba(0,0,0,0.06));
    background-size: 200% 100%;
    animation: shimmer 2.8s ease-in-out infinite;
    border-radius: 16px;
}
.pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.04);
    font-weight: 600;
    color: #0b0b0b;
    border: 1px solid rgba(0, 0, 0, 0.06);
}
.player-shell {
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-radius: 22px;
    padding: 16px;
}
.meta-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.06);
    font-weight: 600;
    color: #0b0b0b;
}
.info-block {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 18px;
    padding: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
@media (max-width: 576px) {
    .floating-dot { display: none; }
}
