/* ================================
   TABS DE NAVEGAÇÃO - RESULTADOS
   ================================ */
.games-nav-tabs {
  display: flex;
  justify-content: center;
  background: var(--bg-secondary);
  border-radius: 10px;
  padding: 4px;
  margin: 0 auto 25px;
  max-width: 380px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.games-nav-tabs .game-tab {
  flex: 1;
  padding: 12px 20px;
  text-align: center;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  color: var(--game-text-secondary, #6c757d);
  background: transparent;
  border: none;
  border-radius: 8px;
  transition: all 0.25s ease;
  cursor: pointer;
}

.games-nav-tabs .game-tab:hover:not(.active) {
  color: var(--game-text-primary, #fff);
}

.games-nav-tabs .game-tab.active {
  color: #fff;
  background: var(--primary);
  font-weight: 600;
}

/* ================================
   LOTTERY RESULTS
   ================================ */
.lottery-results-content {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
}

.lottery-result-card {
  background: var(--bg-secondary, #1a1a2e);
  border-radius: 12px;
  padding: 20px 24px;
  border-left: 4px solid var(--primary);
  transition: transform 0.2s ease;
}

.lottery-result-card:hover {
  transform: translateY(-2px);
}

.lottery-result-card.pending {
  border-left-color: #e5b023;
}

.lottery-result-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  flex-wrap: wrap;
  gap: 8px;
}

.lottery-result-type {
  font-size: 18px;
  font-weight: 700;
  color: var(--game-text-primary, #fff);
  text-transform: uppercase;
  margin: 0;
  white-space: nowrap;
}

.lottery-result-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lottery-result-date {
  font-size: 13px;
  color: var(--game-text-secondary, #848688);
}

.lottery-result-status {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
}

.lottery-result-status.finished {
  background: rgba(86, 202, 152, 0.15);
  color: var(--primary);
}

.lottery-result-status.pending {
  background: rgba(229, 176, 35, 0.15);
  color: #e5b023;
}

.lottery-result-numbers {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 8px;
}

.lottery-result-ball {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(86, 202, 152, 0.3);
}

.lottery-result-pending {
  font-size: 14px;
  color: var(--game-text-secondary, #848688);
  font-style: italic;
  padding: 12px 0;
}

.lottery-no-results {
  text-align: center;
  color: var(--game-text-secondary, #848688);
  font-size: 15px;
  padding: 60px 20px;
}

/* Responsive */
@media only screen and (max-width: 600px) {
  .lottery-result-ball {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }

  .lottery-result-header {
    flex-direction: column;
    align-items: flex-start;
  }
}
