@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&family=Rubik:wght@400;500;600;700&display=swap');

/* Base styles */
body {
    font-family: 'Rubik', sans-serif;
}

/* Game title font */
.game-title {
    font-family: 'Press Start 2P', cursive;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #1a1a2e;
}

::-webkit-scrollbar-thumb {
    background: #4f46e5;
    border-radius: 4px;
}

/* Animation for buttons */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.pulse:hover {
    animation: pulse 1.5s infinite;
}

/* Tower cards */
.tower-card {
    transition: all 0.3s ease;
}

.tower-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(159, 122, 234, 0.3);
}