/* Merge Modal Styles */
.merge-modal {
    animation: slideIn 0.3s ease-out;
}

.merge-modal button {
    transition: all 0.3s ease;
    font-family: 'Orbitron', sans-serif;
}

.merge-modal button:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 255, 136, 0.3);
}

#merge-combine:hover {
    background: #00ffaa !important;
    box-shadow: 0 4px 12px rgba(0, 255, 136, 0.5);
}

#merge-keep-guest:hover {
    background: #ffcc00 !important;
    box-shadow: 0 4px 12px rgba(255, 170, 0, 0.5);
}

#merge-keep-account:hover {
    background: #00ccff !important;
    box-shadow: 0 4px 12px rgba(0, 170, 255, 0.5);
}

.guest-info-banner {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    border: 1px solid #ffaa00;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { border-color: #ffaa00; }
    50% { border-color: #ffcc00; }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}