/* 11ka — design tokens & components (extends Tailwind CDN) */

:root {
  --11-bg: #0b111b;
  --11-card: #151c2c;
  --11-accent: #2dd4bf;
  --11-muted: #94a3b8;
}

body {
  background-color: var(--11-bg);
}

.card-11 {
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background-color: var(--11-card);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04) inset;
}

.scoreboard-11 {
  background: linear-gradient(135deg, rgba(45, 212, 191, 0.12) 0%, #151c2c 45%, #0f1729 100%);
  border: 1px solid rgba(45, 212, 191, 0.15);
  box-shadow: 0 0 40px rgba(45, 212, 191, 0.06);
}

.quote-11 {
  background: linear-gradient(180deg, rgba(45, 212, 191, 0.08) 0%, #151c2c 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.quote-mark {
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 4rem;
  line-height: 1;
  color: rgba(45, 212, 191, 0.35);
  pointer-events: none;
}

@media (min-width: 640px) {
  .quote-mark {
    left: 1.5rem;
    font-size: 5rem;
  }
}

.social-btn,
.share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  background: rgba(17, 24, 39, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--11-accent);
  transition:
    background 0.15s ease,
    border-color 0.15s ease,
    color 0.15s ease;
}

.share-btn {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.5rem;
  color: #cbd5e1;
}

.social-btn:hover,
.share-btn:hover {
  background: rgba(45, 212, 191, 0.12);
  border-color: rgba(45, 212, 191, 0.35);
  color: #5eead4;
}

.input-11:focus {
  box-shadow: 0 0 0 3px rgba(45, 212, 191, 0.15);
}

.hero-credit-wrap figcaption.hero-credit-pill {
  position: absolute;
  right: 0.75rem;
  bottom: 0.75rem;
  left: auto;
  margin: 0;
  text-align: right;
}

.article-body img,
.article-body video {
  max-width: 100%;
  height: auto;
  border-radius: 0.75rem;
}

.article-body .embed-card {
  margin: 1.25rem 0;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(21, 28, 44, 0.9);
  overflow: hidden;
}

.article-body .embed-card iframe {
  max-width: 100%;
}

.article-body blockquote {
  border-left: 3px solid var(--11-accent);
  margin: 1rem 0;
  padding-left: 1rem;
  color: #cbd5e1;
}

.live-pill {
  display: inline-flex;
  align-items: center;
  border-radius: 9999px;
  border: 1px solid rgba(45, 212, 191, 0.35);
  background: rgba(45, 212, 191, 0.1);
  color: #99f6e4;
  font-size: 0.7rem;
  font-weight: 600;
  line-height: 1;
  padding: 0.28rem 0.5rem;
}

.live-empty {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
