/* ============================================================
   MUNDIAL 2026 — Tema césped + dorado
   Activación: 10 jun – 20 jul (automático) o toggle manual
   ============================================================ */
body.worldcup-mode {
  --bg-body: #0d2818;
  --bg-card: #0a1f12;
  --bg-input: #0d2818;
  --border-color: rgba(255,215,0,0.12);
  --text-primary: #ffffff;
  --text-secondary: rgba(255,255,255,0.75);
  --text-tertiary: rgba(255,255,255,0.5);
  --accent: #ffd700;
  --accent-hover: #e6c200;
  --accent-text: #0d2818;
  --color-income: #ffd700;
  --color-expense: #ff6b6b;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.4);
  --nav-bg: rgba(10,31,18,0.65);
  --nav-border: rgba(255,215,0,0.1);
  background-color: #0d2818;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(255,255,255,0.02) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.02) 0%, transparent 50%);
}

body.worldcup-mode::before {
  content: "";
  position: fixed;
  inset: 0;
  opacity: 0.06;
  background-image:
    linear-gradient(90deg, rgba(255,255,255,0.1) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255,255,255,0.1) 1px, transparent 1px),
    linear-gradient(90deg, transparent 49.5%, rgba(255,215,0,0.08) 49.5%, rgba(255,215,0,0.08) 50.5%, transparent 50.5%);
  background-size: 60px 60px, 60px 60px, 100% 100%;
  pointer-events: none;
  z-index: 0;
}

body.worldcup-mode .bottom-nav {
  background: rgba(10,31,18,0.65);
  border-color: rgba(255,215,0,0.15);
}

body.worldcup-mode .bottom-nav::before {
  background: linear-gradient(180deg, rgba(255,215,0,0.12) 0%, transparent 30%);
}

body.worldcup-mode .card {
  background: rgba(10,31,18,0.85);
  border-color: rgba(255,215,0,0.1);
}

body.worldcup-mode .btn-primary {
  background: #ffd700;
  color: #0d2818;
  border-color: #ffd700;
}

body.worldcup-mode .btn-primary:hover {
  background: #e6c200;
}

/* ── Widget card ── */
.worldcup-card {
  border: 1px solid rgba(255,215,0,0.2) !important;
  background: linear-gradient(135deg, rgba(10,31,18,0.95) 0%, rgba(13,40,24,0.9) 100%) !important;
  overflow: hidden;
  position: relative;
}

.worldcup-card::after {
  content: "⚽";
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 3rem;
  opacity: 0.08;
  pointer-events: none;
}

.worldcup-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  font-weight: 700;
  font-size: 0.95rem;
  color: #ffd700;
}

.worldcup-badge {
  font-size: 0.7rem;
  padding: 2px 8px;
  border-radius: 10px;
  background: rgba(255,215,0,0.15);
  color: #ffd700;
  font-weight: 600;
}

.worldcup-match {
  margin-bottom: 10px;
}

.worldcup-today {
  font-size: 0.75rem;
  color: #ffd700;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.worldcup-soon {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 6px;
}

.worldcup-next {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 6px;
}

.worldcup-teams {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
}

.worldcup-vs {
  color: rgba(255,255,255,0.3);
  font-size: 0.8rem;
}

.worldcup-venue {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.35);
  text-align: center;
  margin-top: 4px;
}

.worldcup-btn {
  width: 100%;
  margin-top: 8px;
  font-weight: 700 !important;
}

/* Mini mode (más de 3 días para el partido) */
.worldcup-mini {
  opacity: 0.85;
  padding: 14px var(--space-lg) !important;
}

.worldcup-mini .worldcup-teams {
  font-size: 0.95rem;
}

.worldcup-mini .worldcup-btn {
  display: none;
}
