/* Glassmorphism utility */
.glass {
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Hide scrollbar for TV/Netflix style rows */
.scrollbar-hide::-webkit-scrollbar {
    display: none;
}
.scrollbar-hide {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Smart TV Focus States (D-Pad Navigation) */
.focusable {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
    outline: none;
}

.focusable:focus, .focusable.focused {
    transform: scale(1.05);
    box-shadow: 0 0 0 4px #3b82f6; /* Blue Accent Ring */
    z-index: 10;
}

/* Channel Card Styling */
.channel-card {
    min-width: 200px;
    height: 120px;
    background: #1e293b;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
}

.channel-card img {
    max-width: 80%;
    max-height: 60%;
    object-fit: contain;
}

/* Video Player Overrides */
.video-js .vjs-big-play-button {
    background-color: rgba(59, 130, 246, 0.8) !important;
    border: none !important;
}