.mshp-player-wrapper {
    background: #0f172a;
    color: #e2e8f0;
    border-radius: 14px;
    overflow: hidden;
    max-width: 100%;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    margin: 20px 0;
}

.mshp-player-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 18px;
    background: #161f30;
    border-bottom: 1px solid #1e293b;
    flex-wrap: wrap;
    gap: 10px;
}

.mshp-player-title {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    min-width: 200px;
}

.mshp-live-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.mshp-live-badge.mshp-live {
    background: #ef4444;
    color: #fff;
    animation: mshp-pulse 2s infinite;
}

.mshp-live-badge.mshp-offline {
    background: #64748b;
    color: #fff;
}

@keyframes mshp-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.mshp-title-text {
    color: #e2e8f0;
    font-size: 15px;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mshp-header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.mshp-time-remaining {
    color: #94a3b8;
    font-size: 13px;
    font-weight: 500;
}

.mshp-btn-pa {
    background: #3b82f6;
    color: #fff;
    border: none;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.2s;
}

.mshp-btn-pa:hover {
    background: #2563eb;
}

.mshp-btn-pa.mshp-paused {
    background: #ef4444;
}

.mshp-btn-expire {
    background: #dc2626;
    color: #fff;
    border: none;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.2s;
}

.mshp-btn-expire:hover {
    background: #b91c1c;
}

.mshp-player-stage {
    position: relative;
    background: #000;
    aspect-ratio: 16/9;
}

.mshp-iframe-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

.mshp-iframe-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.mshp-player-note {
    padding: 10px 18px;
    background: #1e293b;
    color: #cbd5e1;
    font-size: 12px;
    border-top: 1px solid #334155;
}

.mshp-player-note strong {
    color: #60a5fa;
}

.mshp-player-footer {
    padding: 14px 18px;
    background: #0f172a;
}

.mshp-server-list-label {
    color: #94a3b8;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.mshp-server-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.mshp-server-btn {
    background: #1e293b;
    color: #e2e8f0;
    border: 1px solid #334155;
    padding: 8px 12px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s;
}

.mshp-server-btn:hover {
    background: #334155;
    border-color: #475569;
}

.mshp-server-btn.mshp-active {
    background: #3b82f6;
    border-color: #3b82f6;
    color: #fff;
}

.mshp-server-quality {
    background: rgba(255,255,255,0.1);
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
}

.mshp-server-btn.mshp-active .mshp-server-quality {
    background: rgba(255,255,255,0.2);
}

@media (max-width: 600px) {
    .mshp-player-header { flex-direction: column; align-items: flex-start; }
    .mshp-title-text { font-size: 13px; }
    .mshp-btn-pa, .mshp-btn-expire { font-size: 11px; padding: 5px 10px; }
}