.card-img-wrapper {
    position: relative;
    overflow: hidden;
}

.watched-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: rgba(255,255,255,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.watched-badge {
    background-color: #6c757d;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.footer-bg {
    background-color: #f8f9fa;
}

.footer-link {
    color: #6c757d;
    text-decoration: none;
    font-size: 0.9em;
    cursor: pointer;
}

.footer-link:hover {
    color: #0d6efd;
    text-decoration: underline;
}

.modal-body h6 {
    font-weight: bold;
    margin-top: 10px;
}

.desc-clamp {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}