/* ============================================================
   tips.co.za - National Team Watch banner styling
   Sits at the top of the homepage when an SA national side
   has an upcoming match. Premium card, no rainbow.
   ============================================================ */
.nat-team-watch{
  margin: 0 0 20px;
  padding: 0;
  background: #0F1F2E;
  color: #fff;
  position: relative;
  overflow: hidden;
  border-bottom: 2px solid #C8541C; /* terracotta accent */
}
.nat-team-watch::before{
  content: '';
  position: absolute;
  top: 0; right: 0; width: 60%; height: 100%;
  background: radial-gradient(ellipse at 100% 50%, rgba(200,84,28,0.12) 0%, transparent 60%);
  pointer-events: none;
}
.nat-team-watch-inner{
  position: relative;
  max-width: 920px;
  margin: 0 auto;
  padding: 18px 18px 16px;
}

/* Header row -- flag + title block */
.nat-team-watch-header{
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 14px;
}
.nat-team-watch-flag{
  font-size: 38px;
  line-height: 1;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}
.nat-team-watch-titleblock{ flex: 1; min-width: 0; }

.nat-team-watch-eyebrow{
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 6px;
}
.nat-chip{
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 3px 9px;
  border-radius: 999px;
  text-transform: uppercase;
  white-space: nowrap;
}
.nat-chip-when{
  background: #C8541C;
  color: #fff;
}
.nat-chip-comp{
  background: rgba(255,255,255,0.18);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.30);
}
.nat-chip-venue{
  background: rgba(0,0,0,0.25);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.20);
}

.nat-team-watch-title{
  font-size: 24px;
  line-height: 1.2;
  font-weight: 800;
  margin: 0;
  color: #fff;
  letter-spacing: -0.01em;
}
.nat-team-watch-meta{
  font-size: 13px;
  color: rgba(255,255,255,0.85);
  margin-top: 4px;
  font-weight: 500;
}

/* Betting angle card -- white panel inside the green band */
.nat-team-watch-angle{
  background: #fff;
  color: #1f2937;
  border-radius: 12px;
  padding: 14px 14px 12px;
  margin: 12px 0 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.18);
}
.nat-angle-head{
  font-size: 16px;
  font-weight: 800;
  color: #0F1F2E;
  margin-bottom: 6px;
  line-height: 1.3;
}
.nat-angle-body{
  font-size: 15px;
  line-height: 1.55;
  color: #374151;
  margin: 0 0 10px;
}
.nat-angle-value{
  font-size: 14px;
  line-height: 1.5;
  background: rgba(200,84,28,0.08);
  border-left: 3px solid #C8541C;
  padding: 9px 12px;
  border-radius: 6px;
  color: #0F1F2E;
}
.nat-angle-value strong{ color: #C8541C; }

/* CTA row */
.nat-team-watch-cta-row{
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
}
.nat-cta-primary,
.nat-cta-secondary{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex: 1;
  min-height: 44px;
  padding: 0 14px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: transform 120ms ease, background 150ms ease;
  letter-spacing: 0.01em;
}
.nat-cta-primary{
  background: #C8541C;
  color: #fff;
}
.nat-cta-primary:hover{ background: #B04617; transform: translateY(-1px); }
.nat-cta-secondary{
  background: rgba(0,0,0,0.25);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.4);
}
.nat-cta-secondary:hover{ background: rgba(0,0,0,0.35); }

.nat-team-watch-compliance{
  font-size: 11px;
  line-height: 1.5;
  color: rgba(255,255,255,0.85);
  text-align: left;
}

/* Tablet+ */
@media (min-width: 720px){
  .nat-team-watch-inner{ padding: 22px 22px 18px; }
  .nat-team-watch-flag{ font-size: 48px; }
  .nat-team-watch-title{ font-size: 30px; }
  .nat-team-watch-meta{ font-size: 14px; }
  .nat-angle-head{ font-size: 18px; }
  .nat-angle-body{ font-size: 16px; }
  .nat-team-watch-cta-row .nat-cta-primary,
  .nat-team-watch-cta-row .nat-cta-secondary{ flex: 0 0 auto; min-width: 200px; }
}

/* Dark mode (matches site dark mode token usage) */
.dark .nat-team-watch-angle,
[data-theme="dark"] .nat-team-watch-angle{
  background: #1a2030;
  color: #e8eaed;
}
.dark .nat-angle-head,
[data-theme="dark"] .nat-angle-head{ color: #4ADE80; }
.dark .nat-angle-body,
[data-theme="dark"] .nat-angle-body{ color: #cbd5e1; }
.dark .nat-angle-value,
[data-theme="dark"] .nat-angle-value{
  background: rgba(251,191,36,0.10);
  color: #f3f4f6;
}
.dark .nat-angle-value strong,
[data-theme="dark"] .nat-angle-value strong{ color: #fbbf24; }
.dark .nat-cta-primary,
[data-theme="dark"] .nat-cta-primary{
  background: #4ADE80;
  color: #04230f;
}
