.dj-container {
    text-align: center;
    padding: 40px 20px;
}

.dj-title {
    font-size: 28px;
    margin-bottom: 30px;
    font-weight: bold;
}

/* GRID */
.dj-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

/* CARD */
.dj-card {
    width: 220px;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* IMAGEN */
.dj-card img {
    width: 100%;
    border-radius: 15px;
    display: block;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

/* HOVER SIMPLE PRO */
.dj-card:hover img {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

/* TITULO */
.dj-name {
    margin-top: 12px;
    font-size: 14px;
    color: #c40000;
    font-weight: bold;
}

.dj-pagination {
    margin-top: 30px;
    text-align: center;
}

.dj-btn {
    background: #111;
    color: #fff;
    padding: 10px 15px;
    margin: 0 10px;
    text-decoration: none;
    border-radius: 8px;
    transition: 0.3s;
}

.dj-btn:hover {
    background: #1db954;
}

.dj-page-info {
    margin: 0 15px;
    font-weight: bold;
}

.dj-search {
    width: 300px;
    max-width: 90%;
    padding: 10px;
    margin-bottom: 25px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 14px;
}