/* =========================================
   Player Error Overlay
   ========================================= */
.player-error-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 3000;
    color: #fff;
    text-align: center;
}

.player-error-overlay h3 {
    margin-bottom: 15px;
    font-size: 18px;
    color: #ff5555;
}

.player-error-overlay p {
    margin-bottom: 20px;
    font-size: 14px;
    color: #ddd;
}

.player-error-overlay .retry-btn {
    padding: 10px 20px;
    background: var(--accent-primary);
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.player-error-overlay .retry-btn:hover {
    background: var(--accent-hover);
}
