.debug-panel {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 300px;
    background: rgba(0, 0, 0, 0.9);
    border: 2px solid var(--accent-purple);
    border-radius: 8px;
    color: var(--text-light);
    font-family: monospace;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.debug-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background: rgba(155, 89, 182, 0.3);
    border-bottom: 1px solid var(--accent-purple);
}

.debug-header h3 {
    margin: 0;
    font-size: 14px;
}

.debug-close {
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 20px;
    cursor: pointer;
    padding: 0 5px;
}

.debug-close:hover {
    color: var(--accent-pink);
}

.debug-content {
    padding: 10px;
}

.debug-section {
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.debug-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.debug-section h4 {
    margin: 0 0 8px 0;
    font-size: 12px;
    color: var(--accent-purple);
}

.debug-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
    font-size: 11px;
}

.debug-button {
    background: var(--accent-purple);
    color: white;
    border: none;
    padding: 4px 8px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 10px;
    margin-right: 5px;
}

.debug-button:hover {
    background: var(--accent-pink);
}

.debug-notification {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(46, 204, 113, 0.9);
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    font-family: monospace;
    font-size: 14px;
    z-index: 1001;
    animation: fadeInOut 2s ease-in-out;
}

@keyframes fadeInOut {
    0% { opacity: 0; transform: translate(-50%, -50%) scale(0.8); }
    20% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
    80% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
    100% { opacity: 0; transform: translate(-50%, -50%) scale(0.8); }
}

