.wrp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 25px;
}

/* Card */
.wrp-card {
    position: relative;
    border: 1px solid #000;
    background: #fff;
    border-radius: 10px;
    cursor: pointer;
    transition: all .25s ease;
    overflow: hidden;
}

.wrp-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.wrp-card.playing {
    border: 2px solid #ff0000;
}

/* Favorite */
.wrp-favorite {
    position: absolute;
    top: 10px;
    right: 12px;
    font-size: 16px;
    cursor: pointer;
    z-index: 3;
    opacity: .5;
    transition: .2s;
}

.wrp-favorite.active {
    color: red;
    opacity: 1;
}

/* Inner */
.wrp-card-inner {
    padding: 5px;
    text-align: center;
}

/* Logo */
.wrp-logo {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 20px auto;
}

.wrp-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
    background: #f5f5f5;
    padding: 10px;
}

/* Overlay */
.wrp-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
    border-radius: 50%;
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .25s ease;
}

.wrp-card:hover .wrp-overlay {
    opacity: 1;
}

.wrp-play-icon {
    color: #fff;
    font-size: 26px;
}

/* Title */
.wrp-title {
    font-size: 14px;
    font-weight: 600;
    color: #000;
}

/* Floating Player */
#wrp-floating {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #000;
    color: #fff;
    padding: 18px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 9999;
}

#wrp-floating span {
    font-weight: 500;
}

#wrp-station {
    font-weight: 600;
}

#wrp-now-playing {
    font-size: 13px;
    opacity: .8;
}


body.wrp-dark {
    background:#111;
    color:#fff;
}

body.wrp-dark .wrp-card {
    background:#1c1c1c;
    border:2px solid #fff;
}

body.wrp-dark .wrp-title {
    color:#fff;
}

body.wrp-dark .wrp-filter {
    background:#1c1c1c;
    border:2px solid #fff;
    color:#fff;
}

body.wrp-dark .wrp-filter.active {
    background:#fff;
    color:#000;
}

#wrp-volume {
    width: 140px;
    margin-top: 10px;
    accent-color: #000;
}

.wrp-volume-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Icon */
.wrp-volume-icon {
    cursor: pointer;
    font-size: 18px;
}

/* Slider hidden by default */
#wrp-volume {
    width: 0;
    opacity: 0;
    transition: all 0.25s ease;
    accent-color: red;
}

/* Show on hover */
.wrp-volume-wrapper:hover #wrp-volume {
    width: 120px;
    opacity: 1;
}

.wrp-volume-wrapper {
    flex-direction: row-reverse;
}

.wrp-volume-icon {
    cursor: pointer;
    font-size: 18px;
}

.wrp-volume-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

/* Icon */
.wrp-volume-icon {
    font-size: 18px;
    cursor: pointer;
}

/* Slider ALWAYS visible */
#wrp-volume {
    width: 140px;
    accent-color: #ff0000;
    opacity: 1;
}