/* ==========================================================================
   TEMA: VERDE, PRETO E AZUL
   Sobrescrições e ajustes finais para o tema
   ========================================================================== */

/* ===================================
   FUNDOS E BACKGROUNDS
   =================================== */

body {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%) !important;
}

html {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%) !important;
}

.background-overlay {
    background: radial-gradient(circle at 50% 50%, rgba(85, 122, 192, 0.05) 0%, transparent 50%),
                linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

/* ===================================
   CARDS E CONTAINERS
   =================================== */

.card, .game-card, .news-card, .stats-card {
    background: linear-gradient(145deg, #1a1a1a, #0f0f0f) !important;
    border: 1px solid rgba(85, 122, 192, 0.2);
    box-shadow: 0 4px 20px rgba(85, 122, 192, 0.1);
}

.card:hover {
    border-color: rgba(85, 122, 192, 0.4);
    box-shadow: 0 8px 30px rgba(85, 122, 192, 0.2);
}

/* ===================================
   BOTÕES
   =================================== */

.btn-primary {
    background: linear-gradient(135deg, #557AC0, #44629A) !important;
    border: none;
    box-shadow: 0 4px 15px rgba(85, 122, 192, 0.4);
    color: #fff !important;
    font-weight: 700;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #6B8FD0, #557AC0) !important;
    box-shadow: 0 6px 25px rgba(85, 122, 192, 0.6);
    transform: translateY(-2px);
}

.btn-secondary {
    background: linear-gradient(135deg, #557AC0, #44629A) !important;
    border: none;
    box-shadow: 0 4px 15px rgba(85, 122, 192, 0.3);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #6B8FD0, #557AC0) !important;
    box-shadow: 0 6px 25px rgba(85, 122, 192, 0.5);
}

/* ===================================
   HEADER E NAVEGAÇÃO
   =================================== */

.header {
    background: rgba(10, 10, 10, 0.95) !important;
    border-bottom: 1px solid rgba(85, 122, 192, 0.3);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 10px rgba(85, 122, 192, 0.1);
}

.menu-item.active {
    background: linear-gradient(135deg, rgba(85, 122, 192, 0.15), rgba(68, 98, 154, 0.15));
    border-left: 3px solid #557AC0;
}

.menu-item:hover {
    background: rgba(85, 122, 192, 0.1);
}

/* ===================================
   BADGES E LABELS
   =================================== */

.badge-premium, .badge-gold {
    background: linear-gradient(135deg, #557AC0, #44629A);
    color: #fff;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.badge-success, .badge-green {
    background: linear-gradient(135deg, #557AC0, #44629A);
}

/* ===================================
   INPUTS E FORMS
   =================================== */

input:focus, textarea:focus, select:focus {
    border-color: #557AC0 !important;
    box-shadow: 0 0 0 3px rgba(85, 122, 192, 0.1) !important;
}

.form-input:focus {
    border-color: #557AC0;
}

/* ===================================
   PROGRESS BARS E LOADERS
   =================================== */

.progress-bar {
    background: linear-gradient(90deg, #557AC0, #6B8FD0);
}

.loading-spinner i {
    color: #557AC0;
}

/* ===================================
   NOTIFICAÇÕES E ALERTAS
   =================================== */

.alert-success {
    background: rgba(85, 122, 192, 0.1);
    border-left: 4px solid #557AC0;
    color: #6B8FD0;
}

.alert-warning {
    background: rgba(85, 122, 192, 0.1);
    border-left: 4px solid #557AC0;
    color: #6B8FD0;
}

.alert-error {
    background: rgba(239, 68, 68, 0.1);
    border-left: 4px solid #ef4444;
    color: #ff6b7a;
}

/* ===================================
   TOOLTIPS E POPOVERS
   =================================== */

.tooltip {
    background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
    border: 1px solid rgba(85, 122, 192, 0.3);
}

/* ===================================
   SCROLLBARS
   =================================== */

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #557AC0, #44629A);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #6B8FD0, #557AC0);
}

::-webkit-scrollbar-track {
    background: #0a0a0a;
}

/* ===================================
   FOOTER
   =================================== */

.site-footer {
    background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
    border-top: 1px solid rgba(85, 122, 192, 0.2);
}

/* ===================================
   DESTAQUE E ANIMAÇÕES
   =================================== */

@keyframes gold-glow {
    0%, 100% {
        box-shadow: 0 0 10px rgba(85, 122, 192, 0.4);
    }
    50% {
        box-shadow: 0 0 20px rgba(85, 122, 192, 0.8);
    }
}

.glow-gold {
    animation: gold-glow 2s ease-in-out infinite;
}

@keyframes green-glow {
    0%, 100% {
        box-shadow: 0 0 10px rgba(85, 122, 192, 0.3);
    }
    50% {
        box-shadow: 0 0 20px rgba(85, 122, 192, 0.6);
    }
}

.glow-green {
    animation: green-glow 2s ease-in-out infinite;
}

/* ===================================
   GRADIENTES DE TEXTO
   =================================== */

.text-gradient-gold {
    background: linear-gradient(135deg, #6B8FD0, #557AC0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.text-gradient-green {
    background: linear-gradient(135deg, #6B8FD0, #557AC0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===================================
   AJUSTES ESPECÍFICOS
   =================================== */

/* Botão depositar no header */
.btn-deposit {
    background: linear-gradient(135deg, #557AC0, #44629A) !important;
    box-shadow: 0 4px 15px rgba(85, 122, 192, 0.5);
    color: #fff !important;
    font-weight: 700;
}

.btn-deposit:hover {
    background: linear-gradient(135deg, #6B8FD0, #557AC0) !important;
    box-shadow: 0 6px 25px rgba(85, 122, 192, 0.7);
}

/* User balance */
.user-balance {
    background: rgba(10, 10, 10, 0.8) !important;
    border: 1px solid rgba(85, 122, 192, 0.4);
    color: #557AC0 !important;
}

.user-balance:hover {
    background: rgba(15, 15, 15, 0.9) !important;
    border-color: rgba(85, 122, 192, 0.6);
    box-shadow: 0 0 15px rgba(85, 122, 192, 0.3);
}

.balance-toggle {
    color: #557AC0 !important;
}

.balance-toggle:hover {
    color: #6B8FD0 !important;
}

/* Logo e branding */
.login-logo, .header-logo {
    filter: drop-shadow(0 0 10px rgba(85, 122, 192, 0.4));
}

/* Menu inferior mobile */
.bottom-menu-item.active {
    color: #557AC0 !important;
}

.bottom-menu-item.active i {
    color: #557AC0 !important;
}

/* Ícones e destaques dourados */
i.fa-star, i.fa-crown, i.fa-trophy, i.fa-coins {
    color: #557AC0 !important;
}

/* Texto dourado */
.text-gold, .gold-text {
    color: #557AC0 !important;
}

/* Border dourado */
.border-gold {
    border-color: rgba(85, 122, 192, 0.4) !important;
}

