/* ===========================
   DJ Teststream speler
=========================== */
.dj-test-player-box {
    margin: 20px 0;
    padding: 20px;
    border-radius: 18px;
    background:
        radial-gradient(circle at top left, rgba(0, 160, 255, 0.18), transparent 50%),
        linear-gradient(135deg, rgba(255, 204, 0, 0.13), rgba(0, 0, 0, 0.64)),
        rgba(0, 0, 0, 0.62);
    border: 1px solid rgba(255, 204, 0, 0.28);
    box-shadow:
        0 16px 35px rgba(0, 0, 0, 0.38),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(4px);
}

.dj-test-player-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.dj-test-player-icon {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    font-size: 30px;
    background: linear-gradient(135deg, #ffcc00, #fff2a8);
    box-shadow: 0 0 18px rgba(255, 204, 0, 0.32);
    flex: 0 0 auto;
}

.dj-test-player-head h2 {
    color: #ffcc00;
    margin: 0;
    line-height: 1.15;
}

.dj-test-player-head p {
    margin: 4px 0 0;
    color: #e5d3ba;
}

.dj-test-player-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    margin-bottom: 14px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.075);
    border: 1px solid rgba(255, 255, 255, 0.11);
}

.dj-test-live-dot {
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: #20ff75;
    box-shadow: 0 0 12px rgba(32, 255, 117, 0.85);
    flex: 0 0 auto;
    animation: djTestPulse 1.2s infinite;
}

@keyframes djTestPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.35);
        opacity: 0.55;
    }
}

.dj-test-player-info {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.dj-test-player-info strong {
    color: #ffffff;
    font-size: 1.05rem;
}

.dj-test-player-info span {
    color: #cfe8ff;
    font-size: 0.92rem;
    margin-top: 2px;
}

.dj-test-audio {
    width: 100%;
    display: block;
    border-radius: 999px;
}

@media (max-width: 600px) {
    .dj-test-player-box {
        padding: 15px;
        border-radius: 15px;
    }

    .dj-test-player-head {
        align-items: flex-start;
        gap: 11px;
    }

    .dj-test-player-icon {
        width: 46px;
        height: 46px;
        font-size: 25px;
    }

    .dj-test-player-head h2 {
        font-size: 1.18rem;
    }

    .dj-test-player-card {
        padding: 12px;
    }
}