/* SUPERBONK.IO - Game Styles */

/* Additional styles for the game interface can go here */
/* Currently most styling is handled in index.html */

/* Future UI elements like wallet buttons, leaderboards, etc. */
.wallet-button {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 10px 20px;
    background: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-family: Arial, sans-serif;
    font-size: 14px;
    z-index: 1000;
}

.wallet-button:hover {
    background: #45a049;
}

.leaderboard {
    position: fixed;
    top: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 15px;
    border-radius: 10px;
    font-family: Arial, sans-serif;
    font-size: 12px;
    max-width: 200px;
    z-index: 1000;
}

/* Responsive design for mobile */
@media (max-width: 768px) {
    .wallet-button, .leaderboard {
        position: relative;
        margin: 10px;
    }
} 