
/* SECTIONS */
.section {
    padding: 48px 0
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 12px
}

.section-title {
    font-size: 1.2rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 8px
}

.section-title i {
    color: var(--primary)
}

.section-title .accent {
    color: var(--primary);
    font-style: italic
}

/* CARDS GRID */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px
}

@media(max-width:1024px) {
    .cards-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(max-width:600px) {
    .cards-grid {
        grid-template-columns: 1fr
    }
}

/* REMIX CARD */
.remix-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    transition: border-color .2s
}

.remix-card:hover {
    border-color: rgba(245, 166, 35, .3)
}

.remix-card .thumb {
    position: relative;
    /*aspect-ratio: 1;*/
    height: 200px;
    overflow: hidden
}

.remix-card .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.tag-new {
    position: absolute;
    top: 8px;
    left: 8px;
    background: var(--red);
    color: #fff;
    font-size: .65rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 4px
}

.remix-card .info {
    padding: 12px
}

.remix-card .title {
    font-weight: 700;
    font-size: .9rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.remix-card .artist {
    color: var(--primary);
    font-size: .75rem
}

.remix-card .genre {
    color: var(--fg-muted);
    font-size: .7rem;
    margin-top: 2px
}

.remix-card .mini-player {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px
}

.play-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .75rem;
    flex-shrink: 0;
    transition: opacity .2s
}

.play-btn:hover {
    opacity: .85
}

.mini-progress {
    flex: 1;
    height: 4px;
    background: var(--border);
    border-radius: 2px;
    overflow: hidden;
    cursor: pointer;
    position: relative
}

.mini-progress .fill {
    height: 100%;
    background: var(--primary);
    border-radius: 2px;
    width: 0%;
    transition: width .3s
}

.mini-actions {
    display: flex;
    align-items: flex-end;
    height: 32px;
    gap: 8px
}

.mini-actions i {
    color: var(--fg-muted);
    font-size: 1.2rem;
    cursor: pointer;
    transition: color .2s
}

.mini-actions i:hover {
    color: var(--primary)
}

.remix-card .meta {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
    font-size: .7rem;
    color: var(--fg-dim)
}

/* PLAYLISTS */
.playlist-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 14px 16px;
    margin-bottom: 8px;
    transition: border-color .2s
}

.playlist-row:hover {
    border-color: rgba(245, 166, 35, .3)
}

.playlist-stats {
    display: flex;
    gap: 10px;
}

.playlist-column {
    display: flex;
    align-items: center;
    gap: 16px;
}

.playlist-rank {
    font-weight: 700;
    color: var(--fg-muted);
    font-size: 1.1rem;
    width: 30px;
    text-align: center
}

.playlist-imgs {
    display: flex
}

.playlist-imgs img {
    width: 40px;
    height: 40px;
    border-radius: 6px;
    object-fit: cover;
    border: 2px solid var(--card)
}

.playlist-imgs img+img {
    margin-left: -8px
}

.playlist-info {
    flex: 1;
    min-width: 0
}

.playlist-info h3 {
    font-weight: 700;
    font-size: .9rem
}

.playlist-info p {
    color: var(--fg-muted);
    font-size: .75rem
}

.playlist-tag {
    background: rgba(245, 166, 35, .15);
    color: var(--primary);
    padding: 2px 10px;
    border-radius: 4px;
    font-size: .7rem;
    font-weight: 600
}

.playlist-genre {
    font-weight: 500;
    font-size: .85rem
}

.playlist-bpm {
    color: var(--fg-muted);
    font-size: .75rem
}

.playlist-downloads {
    display: flex;
    align-items: center;
    gap: 4px;
    font-weight: 700;
    font-size: .9rem
}

.playlist-downloads i {
    color: var(--primary);
    font-size: .8rem
}

@media(max-width:768px) {

    .playlist-row {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
    }

    .playlist-column:nth-child(2) {
        justify-content: space-between;
        width: 100%;
    }
}

/* DJ CARDS */
.dj-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    transition: border-color .2s
}

.dj-card:hover {
    border-color: rgba(245, 166, 35, .3)
}

.dj-card .thumb {
    aspect-ratio: 4/3;
    overflow: hidden
}

.dj-card .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.dj-card .info {
    padding: 14px
}

.dj-card .name {
    font-weight: 700;
    font-style: italic;
    font-size: .95rem
}

.dj-card .genres {
    color: var(--fg-muted);
    font-size: .75rem;
    margin-top: 4px
}

.dj-card .actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 12px
}

/* GENRES */
.genres-scroll {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    padding-bottom: 8px
}

.genre-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    min-width: 80px;
    cursor: pointer
}

.genre-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 2px solid var(--border);
    background: var(--card);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--fg-muted);
    transition: all .2s
}

.genre-item:hover .genre-icon {
    border-color: var(--primary);
    color: var(--primary)
}

.genre-item span {
    font-size: .7rem;
    color: var(--fg-muted);
    font-weight: 500;
    text-align: center;
    transition: color .2s
}

.genre-item:hover span {
    color: var(--fg)
}

/* CTA */
.cta {
    position: relative;
    overflow: hidden;
    max-width: 9000px;
    width: 100%;
}

.cta-bg {
    position: absolute;
    width: 100%;
    inset: 0
}

.cta-bg img {
    width: 1200px;
    height: 100%;
    object-fit: cover;
    position: absolute;
    right: 0;
    opacity: .75
}

.cta-bg .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--bg) 20%, transparent), linear-gradient(0deg, var(--bg), transparent 20%)
}

.cta .container {
    position: relative;
    z-index: 2;
    padding: 60px 20px
}

.cta h2 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px
}

.cta h2 i {
    color: var(--primary)
}

.cta ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px
}

.cta li {
    color: var(--fg-muted);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .95rem
}

.cta li i {
    color: var(--primary)
}