/* GRID DooPlay-style */
.discover-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
}

/* Card */
.discover-card {
    background-color: #0f0f0f;
    border: 1px solid #222;
    border-radius: 12px;
    overflow: hidden;
    transition: 0.2s;
}

.discover-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
}

.discover-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.discover-title {
    font-size: 13px;
    font-weight: 600;
    margin-top: 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.discover-rating {
    font-size: 12px;
    color: #f7d10d;
    font-weight: 700;
}
