/* Estilos para o gerenciador de saves */
.save-manager {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000000;
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(10px);
}

.save-manager-content {
    width: 600px;
    max-width: 90%;
    max-height: 80vh;
    background: #1a1a1a;
    border: 3px solid #8b1e3f;
    padding: 2rem;
    overflow-y: auto;
}

.save-manager h2 {
    color: #f0e68c;
    margin-bottom: 2rem;
    text-align: center;
}

.save-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.save-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: #2a2a2a;
    border: 1px solid #8b1e3f;
    color: #f0e68c;
}

.save-item button {
    background: #8b1e3f;
    border: none;
    color: #f0e68c;
    padding: 0.5rem 1rem;
    cursor: pointer;
    font-family: 'VT323', monospace;
}

.save-item button:hover {
    background: #f0e68c;
    color: #8b1e3f;
}

/* Estilo para notificações do Windows */
.windows-notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #1a1a1a;
    border-left: 4px solid #8b1e3f;
    color: #f0e68c;
    padding: 1rem;
    z-index: 10000000;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}
