/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Roboto", Arial, sans-serif;
  background: #f5f5f5;
  color: #333;
  line-height: 1.4;
  margin: 0;
  padding: 0;
}

/* HEADER */
.mobile-header {
  background: linear-gradient(135deg, #4a148c 0%, #7b1fa2 100%);
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 12px;
  position: sticky;
  top: 0;
  z-index: 1600;
  margin: 0;
  margin-bottom: 0 !important;
  min-height: 40px;
  height: 40px;
  overflow: hidden;
  box-sizing: border-box;
}
.logo {
  font-size: 16px;
  font-weight: bold;
  text-align: left;
  height: 28px;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.header-right {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 100%;
}

/* Header para usuário autenticado */
.header-right.authenticated {
  gap: 4px;
  align-items: center;
}

/* Alinhamento específico do botão COMPRAR */
.header-right.authenticated .deposit-btn {
  align-self: center;
  margin: 0;
  vertical-align: middle;
}

.header-icons {
  display: flex;
  align-items: center;
  gap: 4px;
  height: 28px;
}

.icon-btn {
  background: none;
  border: none;
  color: white;
  font-size: 16px;
  cursor: pointer;
  padding: 6px;
  border-radius: 4px;
  transition: background 0.3s;
  position: relative;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.icon-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

.notification-btn {
  position: relative;
}

.notification-badge {
  position: absolute;
  top: 2px;
  right: 2px;
  background: #ff4444;
  color: white;
  font-size: 10px;
  padding: 2px 5px;
  border-radius: 10px;
  min-width: 16px;
  text-align: center;
  line-height: 1;
}

/* BOTÃO DEPOSITAR DO HEADER (TOPO) */
.deposit-top-btn {
  background: #ffcc00;
  color: #222;
  border: none;
  padding: 4px 10px;      /* 🔥 reduz altura */
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  line-height: 1.1;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.deposit-top-btn:hover {
  background: #e6b800;
}

.user-balance {
  background: #c82333;
  color: white;
  padding: 6px 8px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 6px;
  height: 28px;
  box-sizing: border-box;
}

.balance-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1px;
  justify-content: center;
  height: 100%;
}

.user-name {
  font-size: 9px;
  color: #ccc;
  font-weight: normal;
  line-height: 1;
}

.balance-amount {
  font-size: 11px;
  font-weight: bold;
  line-height: 1;
}

.user-profile {
  background: none;
  border: none;
  color: #32ff32;
  font-size: 16px;
  cursor: pointer;
  padding: 4px;
  border-radius: 50%;
  transition: background 0.3s;
}

.user-profile:hover {
  background: rgba(50, 255, 50, 0.2);
}

/* Menu do usuário */
.user-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2000;
  display: flex;
  justify-content: center;
  align-items: center;
}

.user-menu-content {
  background: white;
  border-radius: 8px;
  padding: 20px;
  max-width: 300px;
  width: 90%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.user-info {
  text-align: center;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
}

.user-info .user-name {
  font-size: 18px;
  font-weight: bold;
  color: #333;
  margin-bottom: 5px;
}

.user-info .user-balance {
  font-size: 14px;
  color: #666;
}

.user-menu-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.user-menu-options button {
  background: #dc3545;
  color: white;
  border: none;
  padding: 12px 16px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  transition: background 0.3s;
}

.user-menu-options button:hover {
  background: #c82333;
}

.user-menu-options button:last-child {
  background: #6c757d;
}

.user-menu-options button:last-child:hover {
  background: #5a6268;
}
.login-btn {
  background: white;
  color: #333;
  border: none;
  padding: 8px 14px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}
/* NOVO HEADER AUTENTICADO */
.hdr-main-content-bc {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  flex: 1;
  margin-right: 8px;
  min-width: 0;
  overflow: hidden;
  height: 100%;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 1;
  min-width: 0;
  overflow: hidden;
}

.logo-container .logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  font-size: 16px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}

.hdr-logo-bc {
  height: 24px;
  width: auto;
  object-fit: contain;
}

.header-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: #ff9800;
  border-radius: 4px;
  padding: 4px;
  transition: background 0.3s;
}

.header-icon:hover {
  background: #f57c00;
}

.header-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hdr-user-bc {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: nowrap;
  flex-shrink: 0;
  white-space: nowrap;
  height: 100%;
  align-self: stretch;
  vertical-align: middle;
}

/* Botões do header não autenticado */
.btn.s-small {
  padding: 5px 12px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.3s;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 26px;
  text-transform: uppercase;
  line-height: 1;
  flex-shrink: 0;
  box-sizing: border-box;
  vertical-align: middle;
  margin: 0;
  align-self: center;
}

.btn.s-small.sign-in {
  background: rgba(74, 20, 140, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.9);
}

.btn.s-small.sign-in span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.btn.s-small.sign-in:hover {
  background: rgba(74, 20, 140, 0.95);
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
}

.btn.s-small.register {
  background: #00ff41;
  color: #003d0f;
  font-weight: 700;
}

.btn.s-small.register span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.btn.s-small.register:hover {
  background: #00e639;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0, 255, 65, 0.3);
}

.btn-deposit-header {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #ff9800;
  color: #fff;
  border: none;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  white-space: nowrap;
}

.btn-deposit-header:hover {
  background: #f57c00;
  transform: translateY(-1px);
}

.deposit-icon-wrapper {
  display: flex;
  align-items: center;
  gap: 2px;
  position: relative;
}

.deposit-icon-wrapper i {
  font-size: 12px;
}

.deposit-arrow {
  font-size: 8px !important;
  margin-left: -4px;
}

.user-balance-display {
  display: flex;
  align-items: center;
}

.balance-text {
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}

.profile-avatar-wrapper {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid #03a9f4;
  box-shadow: 0 0 8px rgba(3, 169, 244, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #fff;
}

.profile-pic-home {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.notification-icon-wrapper {
  position: relative;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 6px;
  transition: background 0.3s;
}

.notification-icon-wrapper:hover {
  background: rgba(255, 255, 255, 0.1);
}

.hdr-toggle-button-bc {
  font-size: 18px;
  color: #fff;
}

.notification-icon-wrapper .notification-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  background: #ff9800;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 5px;
  border-radius: 10px;
  min-width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Responsivo para o novo header */
@media (max-width: 480px) {
  .hdr-main-content-bc {
    gap: 4px;
    min-width: 0;
  }
  
  .logo-container {
    gap: 6px;
    flex-shrink: 1;
    min-width: 0;
  }
  
  .hdr-logo-bc {
    height: 20px;
    max-width: 80px;
  }
  
  .header-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
  }
  
  .hdr-user-bc {
    gap: 4px;
    flex-wrap: nowrap;
    flex-shrink: 0;
  }
  
  .btn.s-small {
    padding: 4px 8px;
    font-size: 10px;
    height: 24px;
    flex-shrink: 0;
  }
  
  .btn-deposit-header {
    padding: 5px 8px;
    font-size: 10px;
    gap: 4px;
  }
  
  .balance-text {
    font-size: 12px;
  }
  
  .profile-avatar-wrapper {
    width: 28px;
    height: 28px;
  }
  
  .notification-icon-wrapper {
    width: 28px;
    height: 28px;
  }
}

.menu-toggle {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 4px;
  transition: background 0.3s;
}

.menu-toggle:hover {
  background: rgba(255, 255, 255, 0.1);
}

.theme-toggle {
  background: none;
  border: none;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  height: 26px;
  width: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 4px;
  transition: background 0.3s;
}

.theme-toggle:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* DROPDOWN MENU */
.dropdown-menu {
  position: fixed;
  top: -100vh;
  left: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background: #dc3545;
  z-index: 1500;
  transition: top 0.3s ease;
  padding-top: 140px;
  overflow-y: auto;
}
.dropdown-menu.open { top: 0; }
.dropdown-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1400;
  display: none;
}
.dropdown-overlay.show { display: block; }

/* THEME TOGGLE SECTION */
.theme-toggle-section {
  padding: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.theme-options {
  display: flex;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  padding: 3px;
}
.theme-option {
  flex: 1;
  background: transparent;
  border: none;
  color: white;
  padding: 10px;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 13px;
  transition: all 0.3s ease;
}
.theme-option.active {
  background: #2c5aa0;
  color: white;
}
.theme-option i { font-size: 14px; }

/* DROPDOWN NAVIGATION */
.dropdown-nav {
  padding: 15px 0;
}
.dropdown-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.menu-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  color: white;
  text-decoration: none;
  font-size: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 0.3s ease;
}
.menu-item:hover {
  background: rgba(255, 255, 255, 0.1);
  text-decoration: none;
}
.menu-item i { font-size: 16px; width: 18px; text-align: center; }

/* Botão de Logout */
.logout-item {
  background: rgba(220, 53, 69, 0.2);
  border-top: 2px solid #dc3545 !important;
  margin-top: 10px;
}

.logout-item:hover {
  background: rgba(220, 53, 69, 0.4);
}

.logout-item i {
  color: #ff6b6b;
}

/* BETTING BAR */
.betting-bar {
  background: #1a5f3f;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 15px;
  color: white;
  gap: 15px;
  position: sticky;
  top: 42px;
  z-index: 1550;
  margin: 0 !important;
  margin-top: 0 !important;
  border-top: none;
}
.bet-input {
  background: white;
  border: none;
  border-radius: 4px;
  padding: 8px 12px;
  font-size: 14px;
  color: #333;
  width: 80px;
  text-align: center;
}
.bet-amount { flex: 1; text-align: center; }
.bet-amount .amount { font-weight: bold; }
.finalize-btn {
  background: #dc3545;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 4px;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 8px;
}
.finalize-btn .badge {
  background: white;
  color: #2c5aa0;
  border-radius: 50%;
  font-size: 12px;
  padding: 2px 6px;
}

/* BANNER SECTION */
.banner-section {
    background: white;
    padding: 0;
    text-align: center;
    margin: 0;
}

.banner-section img {
    width: 100%;
    height: auto;
    border-radius: 0;
    box-shadow: none;
    display: block;
}

/* FEATURED MATCHES CAROUSEL */
.featured-matches {
  background: white;
  padding: 15px 0 20px 0;
  overflow: hidden;
  margin: 0;
}
.carousel-wrapper {
  overflow-x: auto;
  padding: 0;
}
.carousel-track {
  display: flex;
  gap: 15px;
  width: max-content;
  padding: 0 15px;
}
.featured-match {
  flex: 0 0 300px;
  background: white;
  border-radius: 0;
  border: 1px solid #e9ecef;
  box-shadow: none;
}
.featured-match .league-header {
  display: flex;
  align-items: center;
  background: #f8f9fa;
  padding: 12px 15px;
  border-radius: 0;
  border-bottom: 1px solid #e9ecef;
}
.featured-match .team {
  display: flex;
  align-items: center;
  gap: 8px;
}
.featured-match .odds-btn {
  background: #1a5f3f;
  color: white;
  border: none;
  border-radius: 6px;
  padding: 8px 12px;
  font-weight: 600;
  font-size: 12px;
}
.featured-match .odds-btn:hover { background: #2c5aa0; }

/* DATE TABS */
.date-tabs {
  display: flex;
  background: #dc3545;
}
.date-tab {
  flex: 1;
  background: #dc3545;
  color: white;
  border: 1px solid #c82333;
  font-weight: bold;
  padding: 10px;
  font-size: 13px;
  cursor: pointer;
}
.date-tab.active { background: #c82333; }
.date-tab:hover { background: #bd2130; }

/* SPORTS CATEGORIES - NOVA ESTRUTURA */
.modalities-nav {
  position: relative;
  margin: 0;
  display: flex;
  justify-content: flex-start;
  background: #fff;
  padding: 15px 0;
  overflow-x: auto;
  overflow-y: visible;
  min-height: 100px;
  max-height: none;
  -webkit-overflow-scrolling: touch;
  scroll-padding-left: 20px;
  scroll-padding-right: 20px;
}

.modalities-nav::-webkit-scrollbar {
  height: 4px;
}

.modalities-nav::-webkit-scrollbar-track {
  background: #f1f1f1;
  margin: 0 20px;
}

.modalities-nav::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 2px;
}

.modalities-nav::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.navbar-nav {
  padding-left: 0 !important;
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  width: 100%;
  height: auto;
  overflow: visible;
  min-width: 100%;
}

.btn-sport.container-modalities {
  max-width: none !important;
  display: flex;
  gap: 12px;
  overflow-x: visible;
  overflow-y: visible;
  padding: 10px 20px 10px 20px;
  width: auto;
  min-width: calc(100% - 40px);
  align-items: flex-start;
  min-height: 100px;
  height: auto;
  flex-wrap: nowrap;
  box-sizing: border-box;
}

.group-btn-sport {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  cursor: pointer;
  min-width: 70px;
  padding: 0;
  height: auto;
  overflow: visible;
  justify-content: flex-start;
  margin: 0;
}

.group-btn-sport:first-child {
  margin-left: 0;
}

.group-btn-sport:last-child {
  margin-right: 20px;
}

.btn-sport {
  width: 55px;
  height: 55px;
  min-width: 55px;
  min-height: 55px;
  max-width: 55px;
  max-height: 55px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px !important;
  transition: all 0.3s;
  background: #f0f0f0;
  border: 2px solid #e0e0e0;
  box-sizing: border-box;
  flex-shrink: 0;
  overflow: visible;
}

.btn-sport.border-website {
  border: 2px solid #e0e0e0;
}

.btn-sport.hover-btn-sport:hover {
  background: #e8e8e8;
  transform: translateY(-2px);
}

.btn-sport.active,
.btn-sport.live.active {
  background: #00a651;
  border-color: #00a651;
}

.btn-sport img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  max-width: 100%;
  max-height: 100%;
}

.btn-sport.live img.img-live.pisca {
  animation: piscar 1.5s infinite;
}

@keyframes piscar {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.sport-name {
  font-size: 11px;
  font-weight: 600;
  color: #333;
  text-align: center;
  white-space: nowrap;
  text-transform: uppercase;
  line-height: 1.4;
  height: auto;
  overflow: visible;
  padding: 0;
  margin: 0;
  display: block;
  width: 100%;
  max-width: 70px;
  word-break: keep-all;
}

.group-btn-sport:hover .sport-name,
.btn-sport.active ~ .sport-name {
  color: #00a651;
}

/* Scroll horizontal personalizado */
.modalities-nav::-webkit-scrollbar {
  height: 4px;
}

.modalities-nav::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.modalities-nav::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 2px;
}

.modalities-nav::-webkit-scrollbar-thumb:hover {
  background: #555;
}

/* GAMES SECTION */
.games-section {
  background: white;
  padding: 15px;
  text-align: center;
  border-bottom: 1px solid #eee;
}
.games-section h2 {
  font-size: 20px;
  color: #333;
}
.games-section p {
  color: #666;
  font-size: 14px;
}

/* ===== NOVO ESTILO DOS JOGOS ===== */
.matches-section {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  padding-bottom: 10px;
  font-family: "Roboto", sans-serif;
}

/* BLOCO DA LIGA */
.league-block {
  margin-bottom: 12px;
  border-radius: 6px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

/* Cabeçalho vermelho da liga */
.league-header {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #dc3545;
  color: #fff;
  font-weight: bold;
  font-size: 14px;
  padding: 8px 12px;
}

.match-block .league-header {
  background: #dc3545;
  color: white;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14px;
  margin: 0;
  border-radius: 0;
}
.league-header img {
  width: 20px;
  height: 14px;
  border-radius: 2px;
}

/* Cabeçalho de odds (Casa / Empate / Fora) */
.odds-header {
  background: #2c5aa0;
  color: #fff;
  display: flex;
  justify-content: space-around;
  align-items: center;
  font-weight: 600;
  font-size: 13px;
  padding: 8px 15px;
  letter-spacing: 0.5px;
  margin: 0;
}
@media (max-width: 600px) {
  .odds-header {
      font-size: 12px;
      padding: 6px 25px 6px 45px;
  }
}

/* Grupos de ligas - um abaixo do outro */
.league-group {
  margin-bottom: 15px;
  background: white;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  overflow: hidden;
}

/* Item de cada jogo */
.match-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 12px 15px;
  border-bottom: 1px solid #eee;
  background: white;
}

.match-item:last-child {
  border-bottom: none;
}

/* Informações do jogo */
.match-info { 
    flex: 1; 
    padding: 0;
}
.match-info .teams {
  display: flex;
  flex-direction: column;
  font-weight: 600;
  font-size: 14px;
  color: #222;
}
.match-info .details {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #777;
  margin-top: 4px;
}
.match-info .markets {
  color: #000;
  font-weight: bold;
}

/* Odds */
.odds {
  flex: 1.2;
  display: flex;
  justify-content: space-between;
  gap: 6px;
}
.odds button {
  flex: 1;
  border: none;
  border-radius: 4px;
  background: #1a5f3f;
  color: #fff;
  padding: 6px 0;
  font-weight: bold;
  font-size: 13px;
  cursor: pointer;
  transition: 0.3s;
}
.odds button:hover {
  background: #2c5aa0;
}

/* Ícone do gráfico */
.fa-signal { color: #28a745; }

/* Team Logo */
.team-logo {
    width: 20px;
    height: 20px;
    border-radius: 3px;
    object-fit: cover;
    flex-shrink: 0;
    margin-right: 8px;
}

.team {
    display: flex;
    align-items: center;
    margin-bottom: 6px;
}

.team-name {
    font-weight: bold;
    font-size: 14px;
    color: #333;
    line-height: 1.2;
}

.teams {
    display: flex;
    flex-direction: column;
    gap: 4px;
}


.odds-buttons {
    display: flex;
    gap: 6px;
    align-items: flex-start;
    margin: 0;
    padding: 0;
}

.odds-btn {
    background: #2c5aa0;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 8px 12px;
    font-weight: bold;
    cursor: pointer;
    font-size: 14px;
    min-width: 45px;
    text-align: center;
    flex: 1;
    margin: 0;
}

.odds-btn:hover {
    background: #1e3f73;
}

/* RESPONSIVE */
@media (max-width: 600px) {
  .matches-grid {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 10px;
  }
  
  .match-row {
      flex-direction: column;
      align-items: flex-start;
  }
  .odds {
      width: 100%;
      margin-top: 8px;
  }
  .odds button {
      padding: 8px 0;
      font-size: 14px;
  }
}

/* Footer principal */
.footer {
    background: #fff;
    color: #000;
    text-align: center;
    padding: 30px 15px;
    border-top: 4px solid #b30000;
    font-family: Arial, sans-serif;
}

/* Selo 18+ */
.footer-age {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.age-circle {
    width: 50px;
    height: 50px;
    border: 3px solid #b30000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b30000;
    font-weight: bold;
    font-size: 18px;
}

/* Seções principais */
.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 50px;
    margin-bottom: 25px;
}

.footer-section h4 {
    font-size: 15px;
    font-weight: bold;
    color: #000;
    margin-bottom: 10px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin: 5px 0;
}

.footer-section ul li a {
    color: #007bff;
    text-decoration: none;
    font-size: 14px;
}

.footer-section ul li a:hover {
    text-decoration: underline;
}

/* Texto sobre cookies */
.footer-info {
    max-width: 700px;
    margin: 0 auto 20px;
    font-size: 13px;
    color: #555;
    line-height: 1.5;
}

/* Linha de copyright */
.footer-bottom {
    border-top: 1px solid #ddd;
    padding-top: 10px;
    font-size: 13px;
    color: #000;
    font-weight: 500;
}


/* MODAL */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
  justify-content: center;
  align-items: center;
}
.modal-content {
  background: white;
  margin: 15px;
  padding: 0;
  border-radius: 8px;
  width: 100%;
  max-width: 400px;
  max-height: 80vh;
  overflow-y: auto;
}
.modal-header {
  background: #1a5f3f;
  color: white;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.close-btn {
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
}

/* COOKIE NOTICE */
.cookie-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #333;
  color: white;
  padding: 15px;
  z-index: 1500;
  display: flex;
  align-items: center;
  gap: 15px;
}
.cookie-notice p {
  flex: 1;
  font-size: 14px;
}
.cookie-notice button {
  background: #1a5f3f;
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
}

/* ===== MENU INFERIOR ===== */
.bottom-nav {
  position: fixed !important;
  bottom: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  background: linear-gradient(180deg, #1a1a1a 0%, #0d0d0d 100%) !important;
  border-top: 1px solid rgba(0, 166, 81, 0.3) !important;
  z-index: 9999 !important;
  padding: 8px 0 4px !important;
  backdrop-filter: blur(10px);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5) !important;
  animation: slideUpIn 0.5s ease-out;
  display: block !important;
  visibility: visible !important;
}

@keyframes slideUpIn {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.nav-container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 10px;
}

.nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #00a651;
  transition: all 0.3s ease;
  position: relative;
  padding: 4px 8px;
  border-radius: 8px;
  min-width: 50px;
}

.nav-item:hover {
  color: #00ff88;
  transform: translateY(-2px);
}

.nav-item:active {
  transform: translateY(0);
}

/* Item Ativo (Central) */
.nav-item-active {
  background: #4a5568;
  border-radius: 16px;
  padding: 10px 14px;
  margin: -6px -6px 0;
  box-shadow: 0 4px 12px rgba(74, 85, 104, 0.4);
}

.nav-item-active .nav-label {
  color: #ffffff;
  font-weight: bold;
}

/* Ícones */
.nav-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2px;
  transition: all 0.3s ease;
  animation: iconPulse 3s ease-in-out infinite;
}

@keyframes iconPulse {
  0%, 100% {
    filter: brightness(1);
  }
  50% {
    filter: brightness(1.2);
  }
}

.nav-item:hover .nav-icon {
  transform: scale(1.1);
}

.nav-item-active .nav-icon {
  transform: scale(1.15);
}

.nav-icon svg,
.nav-icon img {
  width: 100%;
  height: 100%;
  transition: all 0.3s ease;
}

/* Estilo específico para ícone do casino */
.nav-icon img {
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(100%);
}

/* Labels */
.nav-label {
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  text-align: center;
  line-height: 1.2;
}

.nav-item:hover .nav-label {
  font-weight: 600;
}

/* Efeitos especiais para item ativo */
.nav-item-active::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, rgba(0, 166, 81, 0.3), rgba(0, 255, 136, 0.3));
  border-radius: 18px;
  z-index: -1;
  animation: activeGlow 2s ease-in-out infinite alternate;
}

@keyframes activeGlow {
  from {
    opacity: 0.5;
    transform: scale(1);
  }
  to {
    opacity: 0.8;
    transform: scale(1.02);
  }
}

/* Efeito de hover global */
.nav-item::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(0, 166, 81, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
  z-index: -1;
}

.nav-item:hover::after {
  width: 60px;
  height: 60px;
}

/* Responsivo */
@media (max-width: 480px) {
  .nav-container {
    padding: 0 5px;
  }
  
  .nav-item {
    padding: 2px 4px;
    min-width: 45px;
  }
  
  .nav-icon {
    width: 22px;
    height: 22px;
  }
  
  .nav-label {
    font-size: 9px;
  }
  
  .nav-item-active {
    padding: 6px 8px;
  }
}

@media (max-width: 360px) {
  .nav-label {
    font-size: 8px;
  }
  
  .nav-icon {
    width: 20px;
    height: 20px;
  }
}

/* Ajustar padding do body para o menu fixo */
body {
  padding-bottom: 70px !important;
}

/* Forçar exibição do menu em mobile */
@media (max-width: 768px) {
  .bottom-nav {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: fixed !important;
    bottom: 0 !important;
    z-index: 9999 !important;
  }
  
  body {
    padding-bottom: 80px !important;
  }
  
  .nav-container {
    display: flex !important;
    justify-content: space-around !important;
    align-items: center !important;
  }
}

/* Debug - temporário para verificar se o menu está sendo renderizado */
.bottom-nav {
  border: 2px solid red !important;
  min-height: 60px !important;
}

/* BOTÃO DEPOSIT-BTN RESPONSIVO */
.deposit-btn {
  background: #ffcc00;
  color: #222;
  border: none;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  max-width: 80px;
  min-width: 60px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  flex-shrink: 0;
  margin: 0;
  vertical-align: middle;
}

.deposit-btn:hover {
  background: #e6b800;
  transform: translateY(-1px);
}

/* Responsivo para mobile */
@media (max-width: 480px) {
  .deposit-btn {
    padding: 3px 6px;
    font-size: 9px;
    max-width: 70px;
    min-width: 50px;
    height: 26px;
    letter-spacing: 0.2px;
    margin: 0;
    vertical-align: middle;
  }
}

@media (max-width: 360px) {
  .deposit-btn {
    padding: 2px 4px;
    font-size: 8px;
    max-width: 60px;
    min-width: 45px;
    height: 24px;
    letter-spacing: 0.1px;
    margin: 0;
    vertical-align: middle;
  }
}

/* Ajuste específico para telas muito pequenas */
@media (max-width: 320px) {
  .deposit-btn {
    padding: 2px 3px;
    font-size: 7px;
    max-width: 55px;
    min-width: 40px;
    height: 22px;
    margin: 0;
    vertical-align: middle;
  }
}
