* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #060a1e;
  background-image: 
    radial-gradient(ellipse at 20% 50%, rgba(10, 30, 80, 0.3) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(30, 10, 50, 0.2) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 80%, rgba(10, 40, 60, 0.15) 0%, transparent 50%);
  min-height: 100vh;
}

::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: #060a1e;
}
::-webkit-scrollbar-thumb {
  background: #1a2150;
  border-radius: 3px;
}

@keyframes pulse-live {
  0%, 100% { opacity: 1; box-shadow: 0 0 4px #22c55e, 0 0 8px #22c55e; }
  50% { opacity: 0.5; box-shadow: 0 0 2px #22c55e; }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes numberPulse {
  0%, 100% { text-shadow: none; }
  50% { text-shadow: 0 0 8px currentColor; }
}

.live-dot {
  animation: pulse-live 1.5s ease-in-out infinite;
}

.card-fade-in {
  animation: fadeInUp 0.6s ease-out forwards;
  opacity: 0;
}

.number-tick {
  animation: numberPulse 2s ease-in-out infinite;
}

.glow-green { box-shadow: 0 0 20px rgba(34, 197, 94, 0.1), inset 0 1px 0 rgba(34, 197, 94, 0.1); border-color: rgba(34, 197, 94, 0.25); }
.glow-blue { box-shadow: 0 0 20px rgba(59, 130, 246, 0.1), inset 0 1px 0 rgba(59, 130, 246, 0.1); border-color: rgba(59, 130, 246, 0.25); }
.glow-cyan { box-shadow: 0 0 20px rgba(34, 211, 238, 0.1), inset 0 1px 0 rgba(34, 211, 238, 0.1); border-color: rgba(34, 211, 238, 0.25); }
.glow-amber { box-shadow: 0 0 20px rgba(245, 158, 11, 0.1), inset 0 1px 0 rgba(245, 158, 11, 0.1); border-color: rgba(245, 158, 11, 0.25); }
.glow-purple { box-shadow: 0 0 20px rgba(168, 85, 247, 0.1), inset 0 1px 0 rgba(168, 85, 247, 0.1); border-color: rgba(168, 85, 247, 0.25); }
.glow-red { box-shadow: 0 0 20px rgba(239, 68, 68, 0.1), inset 0 1px 0 rgba(239, 68, 68, 0.1); border-color: rgba(239, 68, 68, 0.25); }
.glow-teal { box-shadow: 0 0 20px rgba(20, 184, 166, 0.1), inset 0 1px 0 rgba(20, 184, 166, 0.1); border-color: rgba(20, 184, 166, 0.25); }
.glow-yellow { box-shadow: 0 0 20px rgba(234, 179, 8, 0.1), inset 0 1px 0 rgba(234, 179, 8, 0.1); border-color: rgba(234, 179, 8, 0.25); }

.flag-gradient {
  background: linear-gradient(90deg, #bf0a30 0%, #bf0a30 33%, #ffffff 33%, #ffffff 66%, #002868 66%, #002868 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.card-glass {
  background: linear-gradient(135deg, rgba(13, 18, 48, 0.9) 0%, rgba(10, 14, 39, 0.95) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(26, 33, 80, 0.6);
  border-radius: 12px;
}

.sparkline-container {
  position: relative;
  height: 40px;
  width: 100%;
}