.ccs-grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.ccs-grid-card {
    position: relative;
    overflow: hidden;
    border-bottom: 4px solid transparent;
    border-radius: 12px;
    transition: all 0.3s ease;
    transform: scale(1);
}

.ccs-grid-card:hover {
    border-bottom: 5px solid #e50914; /* Bold red */
    transform: scale(1.10);
    z-index: 2;
}

.ccs-card-thumb {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    background: #000;
    overflow: hidden;
    border-radius: 12px;
}

.ccs-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 12px;
}

/* Overlay appears on hover */
.ccs-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.9));
    opacity: 0;
    transition: opacity 0.3s ease;
    color: #fff;
    border-radius: 12px;
}

.ccs-grid-card:hover .ccs-card-overlay {
    opacity: 1;
}

/* Overlay inner layout */
.ccs-overlay-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
    padding: 16px;
    gap: 6px;
}

.ccs-play-button {
    font-size: 32px;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Text styles */
.ccs-title {
    font-size: 16px;
    font-weight: bold;
    margin: 0;
    text-align: left;
    color: #fff;
}

.ccs-artist {
    font-size: 13px;
    color: #ccc;
    text-align: left;
}

.ccs-access {
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
    padding: 2px 6px;
    border-radius: 4px;
    text-transform: uppercase;
    text-align: left;
    width: fit-content;
}

.ccs-access.free {
    background-color: #2ecc71;
    color: #fff;
}

.ccs-access.premium {
    background-color: #e74c3c;
    color: #fff;
}

.ccs-stats {
    display: flex;
    gap: 10px;
    font-size: 12px;
    color: #bbb;
}

.ccs-stats i {
    margin-right: 4px;
}
