/* ========================================
   Oracle of BOOE - World Cup 2026 Dashboard
   Theme: Ancient mysticism meets modern football
   ======================================== */

:root {
  /* BOOE Brand Colors */
  --booe-purple: #6B46C1;
  --booe-purple-dark: #553C9A;
  --booe-purple-light: #9F7AEA;
  --booe-gold: #F6AD55;
  --booe-gold-light: #FBD38D;
  
  /* World Cup Accents */
  --pitch-green: #22C55E;
  --pitch-dark: #166534;
  --trophy-gold: #EAB308;
  
  /* Neutral */
  --bg-dark: #0F0A1F;
  --bg-card: #1A1033;
  --bg-card-hover: #251845;
  --text-primary: #F5F3FF;
  --text-secondary: #A0AEC0;
  --text-muted: #718096;
  
  /* Status */
  --success: #48BB78;
  --error: #F56565;
  --warning: #ED8936;
  
  /* Spacing */
  --container-width: 1200px;
  --section-padding: 80px;
  --card-radius: 16px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ========== Typography ========== */
h1, h2, h3, h4, h5 {
  font-family: 'Cinzel', serif;
  font-weight: 600;
  line-height: 1.2;
}

/* ========== Layout ========== */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: var(--section-padding) 0;
}

.section-dark {
  background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-dark) 100%);
}

/* ========== Ambient Background ========== */
.bg-ambient {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
  animation: float 20s ease-in-out infinite;
}

.orb-1 {
  width: 600px;
  height: 600px;
  background: var(--booe-purple);
  top: -200px;
  right: -200px;
  animation-delay: 0s;
}

.orb-2 {
  width: 400px;
  height: 400px;
  background: var(--pitch-green);
  bottom: 20%;
  left: -100px;
  animation-delay: -7s;
}

.orb-3 {
  width: 300px;
  height: 300px;
  background: var(--booe-gold);
  top: 50%;
  right: 10%;
  animation-delay: -14s;
}

.pitch-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(90deg, rgba(34, 197, 94, 0.03) 1px, transparent 1px),
    linear-gradient(rgba(34, 197, 94, 0.03) 1px, transparent 1px);
  background-size: 100px 100px;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -30px) scale(1.05); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}

/* ========== Header ========== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  background: rgba(15, 10, 31, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(107, 70, 193, 0.2);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  font-size: 32px;
  animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { filter: drop-shadow(0 0 8px var(--booe-purple)); }
  50% { filter: drop-shadow(0 0 20px var(--booe-gold)); }
}

.logo-text h1 {
  font-size: 20px;
  background: linear-gradient(135deg, var(--booe-purple-light), var(--booe-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tagline {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-link:hover {
  color: var(--booe-purple-light);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
}

.btn-chain {
  background: linear-gradient(135deg, var(--booe-purple), var(--booe-purple-dark));
  color: white;
}

.btn-chain:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(107, 70, 193, 0.4);
}

.chain-dot {
  width: 8px;
  height: 8px;
  background: var(--success);
  border-radius: 50%;
  animation: blink 2s infinite;
}

@keyframes blink {
  0%, 50%, 100% { opacity: 1; }
  25%, 75% { opacity: 0.4; }
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-menu-btn span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: all 0.3s;
}

/* ========== Hero ========== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.world-cup-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: linear-gradient(135deg, rgba(234, 179, 8, 0.2), rgba(34, 197, 94, 0.2));
  border: 1px solid rgba(234, 179, 8, 0.3);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  color: var(--trophy-gold);
  margin-bottom: 24px;
}

.trophy {
  font-size: 18px;
}

.hero-title {
  font-size: clamp(36px, 5vw, 56px);
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--text-primary) 0%, var(--booe-purple-light) 50%, var(--booe-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 500px;
  margin-bottom: 40px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.hero-stat {
  text-align: center;
  padding: 20px;
  background: rgba(107, 70, 193, 0.1);
  border: 1px solid rgba(107, 70, 193, 0.2);
  border-radius: 12px;
  transition: all 0.3s;
}

.hero-stat:hover {
  background: rgba(107, 70, 193, 0.2);
  transform: translateY(-4px);
}

.hero-stat-value {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--booe-gold);
}

.hero-stat-label {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

/* Crystal Ball Visual */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.crystal-ball {
  position: relative;
  width: 300px;
  height: 300px;
}

.ball-glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(circle, rgba(107, 70, 193, 0.4) 0%, transparent 70%);
  border-radius: 50%;
  animation: glow-pulse 3s ease-in-out infinite;
}

@keyframes glow-pulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.1); }
}

.ball-inner {
  position: absolute;
  inset: 40px;
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--booe-purple-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 
    inset 0 -20px 40px rgba(0,0,0,0.4),
    inset 0 20px 40px rgba(159, 122, 234, 0.2),
    0 0 60px rgba(107, 70, 193, 0.3);
}

.ball-icon {
  font-size: 80px;
  animation: float-ball 4s ease-in-out infinite;
}

@keyframes float-ball {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(10deg); }
}

.ball-ring {
  position: absolute;
  border: 2px solid var(--booe-purple-light);
  border-radius: 50%;
  opacity: 0.3;
  animation: ring-spin 10s linear infinite;
}

.ring-1 {
  inset: 10px;
  animation-duration: 8s;
}

.ring-2 {
  inset: 0;
  animation-duration: 12s;
  animation-direction: reverse;
}

.ring-3 {
  inset: -10px;
  border-color: var(--booe-gold);
  animation-duration: 15s;
}

@keyframes ring-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ========== Section Headers ========== */
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 16px;
}

.section-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 28px;
}

.title-icon {
  font-size: 32px;
}

.section-date {
  color: var(--text-muted);
  font-size: 14px;
}

/* ========== Match Cards ========== */
.matches-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 24px;
}

.match-card {
  background: var(--bg-card);
  border: 1px solid rgba(107, 70, 193, 0.2);
  border-radius: var(--card-radius);
  padding: 24px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.match-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--booe-purple), var(--booe-gold));
  opacity: 0;
  transition: opacity 0.3s;
}

.match-card:hover {
  transform: translateY(-4px);
  border-color: var(--booe-purple);
  box-shadow: 0 20px 40px rgba(107, 70, 193, 0.2);
}

.match-card:hover::before {
  opacity: 1;
}

.match-card.correct {
  border-color: var(--success);
}

.match-card.correct::before {
  background: var(--success);
  opacity: 1;
}

.match-card.wrong {
  border-color: var(--error);
}

.match-card.wrong::before {
  background: var(--error);
  opacity: 1;
}

.match-card.upcoming {
  border-color: var(--accent);
  border-style: dashed;
}

.match-card.upcoming::before {
  background: linear-gradient(135deg, var(--accent), var(--primary));
  opacity: 0.3;
}

.match-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.match-group {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.match-time {
  font-size: 12px;
  color: var(--booe-purple-light);
  font-weight: 600;
}

.match-teams {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.team {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 1;
}

.team-flag {
  font-size: 40px;
  line-height: 1;
}

.team-name {
  font-size: 14px;
  font-weight: 600;
  text-align: center;
}

.match-vs {
  font-size: 14px;
  color: var(--text-muted);
  padding: 0 16px;
}

.match-prediction {
  background: rgba(107, 70, 193, 0.1);
  border-radius: 12px;
  padding: 16px;
  text-align: center;
  margin-bottom: 16px;
}

.prediction-label {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.prediction-value {
  font-family: 'Cinzel', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--booe-gold);
}

.prediction-score {
  font-size: 13px;
  color: var(--text-secondary);
  margin-top: 4px;
}

.match-result {
  background: rgba(72, 187, 120, 0.1);
  border-radius: 8px;
  padding: 12px;
  text-align: center;
  margin-bottom: 16px;
}

.match-result.wrong-result {
  background: rgba(245, 101, 101, 0.1);
}

.result-label {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.result-value {
  font-size: 16px;
  font-weight: 700;
  color: var(--success);
}

.match-result.wrong-result .result-value {
  color: var(--error);
}

.match-footer {
  display: flex;
  justify-content: center;
}

.proof-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--booe-purple-light);
  text-decoration: none;
  transition: color 0.2s;
}

.proof-link:hover {
  color: var(--booe-gold);
}

/* ========== Predictions Table ========== */
.predictions-table-wrap {
  overflow-x: auto;
}

.predictions-table {
  width: 100%;
  border-collapse: collapse;
}

.predictions-table th,
.predictions-table td {
  padding: 16px;
  text-align: left;
  border-bottom: 1px solid rgba(107, 70, 193, 0.1);
}

.predictions-table th {
  font-family: 'Cinzel', serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  background: rgba(107, 70, 193, 0.05);
}

.predictions-table tr:hover td {
  background: rgba(107, 70, 193, 0.05);
}

.table-match {
  display: flex;
  align-items: center;
  gap: 8px;
}

.table-flag {
  font-size: 20px;
}

.table-teams {
  font-weight: 500;
}

.table-prediction {
  color: var(--booe-gold);
  font-weight: 600;
}

.table-score {
  color: var(--text-secondary);
}

.table-result {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
}

.table-result.correct {
  background: rgba(72, 187, 120, 0.2);
  color: var(--success);
}

.table-result.wrong {
  background: rgba(245, 101, 101, 0.2);
  color: var(--error);
}

.table-result.pending {
  background: rgba(237, 137, 54, 0.2);
  color: var(--warning);
}

.table-result.exact {
  background: linear-gradient(135deg, rgba(234, 179, 8, 0.3), rgba(107, 70, 193, 0.3));
  color: var(--trophy-gold);
}

.table-proof {
  color: var(--booe-purple-light);
  text-decoration: none;
  font-size: 13px;
}

.table-proof:hover {
  color: var(--booe-gold);
  text-decoration: underline;
}

/* Filter Tabs */
.filter-tabs {
  display: flex;
  gap: 8px;
}

.filter-tab {
  padding: 8px 16px;
  background: transparent;
  border: 1px solid rgba(107, 70, 193, 0.3);
  border-radius: 100px;
  color: var(--text-secondary);
  font-size: 13px;
  cursor: pointer;
  transition: all 0.2s;
}

.filter-tab:hover {
  border-color: var(--booe-purple);
  color: var(--text-primary);
}

.filter-tab.active {
  background: var(--booe-purple);
  border-color: var(--booe-purple);
  color: white;
}

/* ========== Stats Section ========== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

.stat-card {
  background: var(--bg-card);
  border: 1px solid rgba(107, 70, 193, 0.2);
  border-radius: var(--card-radius);
  padding: 24px;
  text-align: center;
  transition: all 0.3s;
}

.stat-card:hover {
  transform: translateY(-4px);
  border-color: var(--booe-purple);
}

.stat-icon {
  font-size: 40px;
  margin-bottom: 12px;
}

.stat-value {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--booe-gold);
  margin-bottom: 4px;
}

.stat-label {
  font-size: 13px;
  color: var(--text-muted);
}

.stat-bar {
  height: 4px;
  background: rgba(107, 70, 193, 0.2);
  border-radius: 2px;
  margin-top: 16px;
  overflow: hidden;
}

.stat-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--booe-purple), var(--booe-gold));
  border-radius: 2px;
  transition: width 1s ease-out;
}

.breakdown-section {
  background: var(--bg-card);
  border-radius: var(--card-radius);
  padding: 32px;
}

.breakdown-title {
  font-size: 18px;
  margin-bottom: 24px;
  color: var(--text-secondary);
}

.breakdown-grid {
  display: grid;
  gap: 20px;
}

.breakdown-item {
  display: grid;
  grid-template-columns: 120px 1fr 60px;
  align-items: center;
  gap: 16px;
}

.breakdown-label {
  font-size: 14px;
  color: var(--text-secondary);
}

.breakdown-bar {
  height: 8px;
  background: rgba(107, 70, 193, 0.2);
  border-radius: 4px;
  overflow: hidden;
}

.breakdown-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--booe-purple), var(--pitch-green));
  border-radius: 4px;
  transition: width 1s ease-out;
}

.breakdown-value {
  font-weight: 600;
  color: var(--booe-gold);
  text-align: right;
}

/* ========== How It Works ========== */
.how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.how-card {
  background: var(--bg-card);
  border: 1px solid rgba(107, 70, 193, 0.2);
  border-radius: var(--card-radius);
  padding: 32px 24px;
  text-align: center;
  position: relative;
  transition: all 0.3s;
}

.how-card:hover {
  transform: translateY(-4px);
  border-color: var(--booe-purple);
}

.how-number {
  position: absolute;
  top: -12px;
  left: 24px;
  width: 24px;
  height: 24px;
  background: var(--booe-purple);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.how-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.how-card h4 {
  font-size: 18px;
  margin-bottom: 12px;
  color: var(--booe-gold);
}

.how-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ========== Footer ========== */
.footer {
  background: var(--bg-card);
  border-top: 1px solid rgba(107, 70, 193, 0.2);
  padding: 60px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  margin-bottom: 40px;
}

.footer-logo {
  font-family: 'Cinzel', serif;
  font-size: 24px;
  margin-bottom: 12px;
  background: linear-gradient(135deg, var(--booe-purple-light), var(--booe-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-brand p {
  color: var(--text-secondary);
  font-size: 14px;
  max-width: 400px;
  margin-bottom: 20px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(107, 70, 193, 0.2);
  border-radius: 10px;
  color: var(--text-secondary);
  transition: all 0.2s;
}

.social-link:hover {
  background: var(--booe-purple);
  color: white;
  transform: translateY(-2px);
}

.social-link svg {
  width: 18px;
  height: 18px;
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 40px;
}

.footer-col h5 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.footer-col a {
  display: block;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 10px;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--booe-purple-light);
}

.footer-bottom {
  border-top: 1px solid rgba(107, 70, 193, 0.1);
  padding-top: 24px;
  text-align: center;
}

.footer-bottom p {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.contract-address code {
  font-size: 11px;
  background: rgba(107, 70, 193, 0.1);
  padding: 4px 8px;
  border-radius: 4px;
  color: var(--booe-purple-light);
}

.disclaimer {
  margin-top: 20px;
  padding: 16px;
  background: rgba(255, 193, 7, 0.05);
  border: 1px solid rgba(255, 193, 7, 0.2);
  border-radius: 8px;
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.disclaimer strong {
  color: rgba(255, 193, 7, 0.9);
}

/* ========== Loading States ========== */
.loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px;
  gap: 16px;
  color: var(--text-muted);
}

.loading-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(107, 70, 193, 0.2);
  border-top-color: var(--booe-purple);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.loading-cell {
  text-align: center;
  padding: 40px !important;
}

/* ========== Empty States ========== */
.empty-state {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-muted);
}

.empty-state-icon {
  font-size: 48px;
  margin-bottom: 16px;
  opacity: 0.5;
}

/* ========== Responsive ========== */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-subtitle {
    margin: 0 auto 40px;
  }
  
  .hero-visual {
    order: -1;
  }
  
  .crystal-ball {
    width: 200px;
    height: 200px;
  }
  
  .ball-icon {
    font-size: 50px;
  }
  
  .stats-grid,
  .how-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 60px;
  }
  
  .nav {
    display: none;
  }
  
  .mobile-menu-btn {
    display: flex;
  }
  
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .matches-grid {
    grid-template-columns: 1fr;
  }
  
  .section-header {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .filter-tabs {
    flex-wrap: wrap;
  }
  
  .breakdown-item {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  
  .breakdown-value {
    text-align: left;
  }
}

@media (max-width: 480px) {
  .stats-grid,
  .how-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-stats {
    grid-template-columns: 1fr;
  }
  
  .predictions-table th,
  .predictions-table td {
    padding: 12px 8px;
    font-size: 13px;
  }
}

/* Flag images */
.flag-img {
  width: 40px;
  height: 30px;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.flag-img-small {
  width: 20px;
  height: 15px;
  object-fit: cover;
  border-radius: 2px;
  vertical-align: middle;
  margin-right: 4px;
}

.team-flag .flag-img {
  width: 48px;
  height: 36px;
}

.table-flag .flag-img-small {
  width: 24px;
  height: 18px;
}

.prediction-value .flag-img,
.prediction-value .flag-img-small {
  vertical-align: middle;
  margin-right: 6px;
}

/* Ecosystem footer styling */
.ecosystem-col h5 {
  margin-bottom: 16px;
}

.ecosystem-tokens {
  display: flex;
  gap: 16px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.ecosystem-tokens a {
  color: var(--booe-gold) !important;
  font-weight: 600;
}

.ecosystem-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 12px;
}

.ecosystem-links a {
  color: var(--text-muted) !important;
  font-size: 12px;
}

.ecosystem-links a:hover {
  color: var(--booe-purple-light) !important;
}
