@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;700;900&display=swap');

body {
    font-family: 'Nunito', sans-serif;
    background: radial-gradient(circle at top right, #002171, #161825); /* Cores do Grupo JB */
    color: #f8f9fa;
    min-height: 100vh;
}

.game-card {
    background: rgba(22, 24, 37, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 193, 7, 0.2);
    border-radius: 20px;
    color: white;
    transition: all 0.3s ease;
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    border-color: #ffc107;
}

.btn-game {
    border-radius: 50px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.2s;
    border: none;
}
.btn-game:hover { transform: scale(1.05); }

.btn-primary-game { background: #002171; color: #fff; box-shadow: 0 4px 15px rgba(0, 33, 113, 0.6); border: 1px solid rgba(255,255,255,0.2); }
.btn-primary-game:hover { background: #0033a0; color: #fff; }
.btn-success-game { background: #3c6e91; color: #fff; box-shadow: 0 4px 15px rgba(60, 110, 145, 0.4); }
.btn-warning-game { background: #ffc107; color: #161825; box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4); }

.btn-action-circle { width: 40px; height: 40px; border-radius: 50%; font-weight: bold; font-size: 1.2rem; display: flex; align-items: center; justify-content: center; }

.money-text { color: #ffc107; font-weight: 900; text-shadow: 0 0 10px rgba(255, 193, 7, 0.3); }
.title-glow { font-weight: 900; color: #ffffff; text-shadow: 2px 2px 4px rgba(0,0,0,0.5); }
.navbar-game { background: #161825 !important; border-bottom: 2px solid #002171; }

/* CORREÇÃO DE LEGIBILIDADE DOS TEXTOS */
.text-muted { color: rgba(255, 255, 255, 0.7) !important; }
.text-dark { color: #f8f9fa !important; }