.sbc-showdown-nav-link {
  color: #fff !important;
  font-weight: 700 !important;
  letter-spacing: -0.01em;
  position: relative;
}
.sbc-showdown-nav-link .sbc-showdown-nav-icon {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.sbc-showdown-nav-link .sbc-showdown-nav-vs {
  display: inline-block;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.1em;
  color: #10b981;
  background: rgba(16,185,129,0.12);
  border: 1px solid rgba(16,185,129,0.3);
  border-radius: 3px;
  padding: 1px 4px;
  line-height: 1.3;
  vertical-align: middle;
  margin-left: 3px;
  transition: background 0.2s, color 0.2s;
}
.sbc-showdown-nav-link:hover .sbc-showdown-nav-vs,
.sbc-showdown-nav-link.sbc-nav-active .sbc-showdown-nav-vs {
  background: rgba(16,185,129,0.25);
  color: #fff;
}

.sbc-showdown-page {
  min-height: 100vh;
  background: var(--bg-main);
}

.sbc-showdown-hero {
  position: relative;
  overflow: hidden;
  padding: 80px 0 60px;
  background: #0a0a0a;
}
:root.light .sbc-showdown-hero {
  background: #0f172a;
}

.sbc-showdown-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.sbc-showdown-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(16,185,129,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16,185,129,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
}
.sbc-showdown-hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
}
.sbc-showdown-hero-orb--green {
  width: 600px; height: 600px;
  top: -200px; left: -100px;
  background: radial-gradient(circle, rgba(16,185,129,0.35), transparent 70%);
  animation: sbc-showdown-orb-drift 12s ease-in-out infinite alternate;
}
.sbc-showdown-hero-orb--blue {
  width: 500px; height: 500px;
  bottom: -150px; right: -80px;
  background: radial-gradient(circle, rgba(59,130,246,0.25), transparent 70%);
  animation: sbc-showdown-orb-drift 15s ease-in-out infinite alternate-reverse;
}
@keyframes sbc-showdown-orb-drift {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(40px, 30px) scale(1.1); }
}

.sbc-showdown-hero-sparks {
  position: absolute;
  inset: 0;
}
.sbc-showdown-spark {
  position: absolute;
  width: 2px; height: 2px;
  background: #10b981;
  border-radius: 50%;
  opacity: 0;
  animation: sbc-spark-float calc(4s + var(--i) * 0.5s) ease-in-out infinite;
  left: calc(var(--i) * 8.5%);
  top: calc(20% + (var(--i) % 3) * 25%);
}
@keyframes sbc-spark-float {
  0%   { opacity: 0; transform: translateY(0) scale(1); }
  30%  { opacity: 0.8; }
  70%  { opacity: 0.4; }
  100% { opacity: 0; transform: translateY(-60px) scale(0.3); }
}

.sbc-showdown-hero-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 28px;
}
.sbc-showdown-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.sbc-showdown-hero-title-wrap { max-width: 820px; }
.sbc-showdown-hero-title {
  font-family: var(--font-display);
  font-size: clamp(52px, 8vw, 96px);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: #fff;
  text-transform: uppercase;
  margin: 0 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}
.sbc-showdown-title-word { color: rgba(255,255,255,0.7); }
.sbc-showdown-title-accent {
  font-style: normal;
  color: #10b981;
  position: relative;
}
.sbc-showdown-title-accent::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 3px;
  background: linear-gradient(90deg, #10b981, rgba(16,185,129,0));
  border-radius: 2px;
}

.sbc-showdown-vs-burst {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px; height: 64px;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .sbc-showdown-vs-burst { width: 88px; height: 88px; }
}
.sbc-showdown-vs-inner {
  position: relative;
  z-index: 3;
  font-size: clamp(20px, 3vw, 32px);
  font-weight: 900;
  color: #0a0a0a;
  background: #10b981;
  border-radius: 50%;
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  letter-spacing: -0.02em;
  box-shadow: 0 0 24px rgba(16,185,129,0.5);
  animation: sbc-showdown-vs-spin 20s linear infinite;
}
@media (min-width: 768px) {
  .sbc-showdown-vs-inner { width: 72px; height: 72px; }
}
@keyframes sbc-showdown-vs-spin {
  0%   { box-shadow: 0 0 20px rgba(16,185,129,0.5); }
  50%  { box-shadow: 0 0 40px rgba(16,185,129,0.8), 0 0 80px rgba(16,185,129,0.3); }
  100% { box-shadow: 0 0 20px rgba(16,185,129,0.5); }
}
.sbc-showdown-vs-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(16,185,129,0.4);
  animation: sbc-showdown-ring-expand 2s ease-out infinite;
}
.sbc-showdown-vs-ring--2 {
  animation-delay: 1s;
}
@keyframes sbc-showdown-ring-expand {
  0%   { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(2.2); opacity: 0; }
}

.sbc-showdown-hero-sub {
  font-size: clamp(14px, 2vw, 17px);
  line-height: 1.65;
  color: rgba(255,255,255,0.45);
  max-width: 560px;
  margin: 0 auto;
}

.sbc-showdown-hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 16px 32px;
  flex-wrap: wrap;
  justify-content: center;
}
.sbc-showdown-hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 0 28px;
}
.sbc-showdown-hero-stat-n {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 900;
  color: #10b981;
  line-height: 1;
}
.sbc-showdown-hero-stat-l {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  white-space: nowrap;
}
.sbc-showdown-hero-stat-sep {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.1);
}
@media (max-width: 640px) {
  .sbc-showdown-hero-stat { padding: 8px 16px; }
  .sbc-showdown-hero-stat-sep { display: none; }
}

.sbc-showdown-body {
  padding: 48px 0 80px;
}
.sbc-showdown-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 1024px) {
  .sbc-showdown-layout {
    grid-template-columns: 1fr 320px;
    gap: 48px;
    align-items: start;
  }
}

.sbc-showdown-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
:root.light .sbc-showdown-section-header {
  border-bottom-color: rgba(0,0,0,0.08);
}
.sbc-showdown-section-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: var(--text-main);
  margin: 0;
}
.sbc-showdown-section-title svg { color: #10b981; }
.sbc-showdown-section-count {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 4px 12px;
}
:root.light .sbc-showdown-section-count {
  color: rgba(0,0,0,0.4);
  background: rgba(0,0,0,0.04);
  border-color: rgba(0,0,0,0.1);
}

.sbc-showdown-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 640px) {
  .sbc-showdown-grid { grid-template-columns: repeat(2, 1fr); }

  .sbc-showdown-grid .sbc-showdown-card-outer--featured {
    grid-column: 1 / -1 !important;
  }
}
@media (min-width: 1200px) {

  .sbc-showdown-layout:has(.sbc-showdown-sidebar) .sbc-showdown-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .sbc-showdown-grid .sbc-showdown-card-outer--featured {
    grid-column: 1 / -1 !important;
  }
}

.sbc-showdown-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.28s cubic-bezier(0.34,1.56,0.64,1),
              box-shadow 0.28s ease,
              border-color 0.2s ease;
  animation: sbc-showdown-card-in 0.5s ease both;
  animation-delay: var(--card-delay, 0ms);
  cursor: pointer;
}
@keyframes sbc-showdown-card-in {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

:root.light .sbc-showdown-card {
  background: #ffffff;
  border-color: rgba(0,0,0,0.07);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.sbc-showdown-card:hover {
  transform: translateY(-6px) scale(1.01);
  border-color: rgba(16,185,129,0.4);
  box-shadow:
    0 12px 40px rgba(0,0,0,0.35),
    0 0 0 1px rgba(16,185,129,0.2),
    0 0 30px rgba(16,185,129,0.08);
}
:root.light .sbc-showdown-card:hover {
  box-shadow:
    0 12px 40px rgba(0,0,0,0.12),
    0 0 0 1px rgba(5,150,105,0.3),
    0 0 20px rgba(5,150,105,0.06);
}

.sbc-showdown-card-border {
  position: absolute;
  inset: -1px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(16,185,129,0) 0%, rgba(16,185,129,0.6) 50%, rgba(59,130,246,0.4) 100%);
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 0;
  pointer-events: none;
}
.sbc-showdown-card-border::after {
  content: '';
  position: absolute;
  inset: 1px;
  border-radius: 19px;
  background: #0c0c0c;
}
:root.light .sbc-showdown-card-border::after { background: #ffffff; }
.sbc-showdown-card:hover .sbc-showdown-card-border { opacity: 1; }

.sbc-showdown-card-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(16,185,129,0.06), transparent 70%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
  z-index: 1;
}
.sbc-showdown-card:hover .sbc-showdown-card-glow { opacity: 1; }

.sbc-showdown-card-header {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: stretch;
  gap: 0;
  background: rgba(0,0,0,0.2);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 20px 16px;
}
:root.light .sbc-showdown-card-header {
  background: rgba(0,0,0,0.03);
  border-bottom-color: rgba(0,0,0,0.06);
}

.sbc-showdown-card-book {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.sbc-showdown-card-book--right {
  align-items: flex-end;
}

.sbc-showdown-card-logo {
  position: relative;
  width: 60px; height: 60px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  flex-shrink: 0;
  transition: transform 0.25s cubic-bezier(0.34,1.56,0.64,1),
              box-shadow 0.25s ease;
}
.sbc-showdown-card:hover .sbc-showdown-card-book--winner .sbc-showdown-card-logo {
  transform: scale(1.08);
  box-shadow: 0 4px 20px rgba(16,185,129,0.3);
}
.sbc-showdown-card-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 12px;
  padding: 6px;
}
.sbc-showdown-card-logo-initial {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 900;
  color: #10b981;
}

.sbc-showdown-card-crown {
  position: absolute;
  top: -10px;
  right: -8px;
  font-size: 16px;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
  animation: sbc-showdown-crown-bob 2.5s ease-in-out infinite;
  z-index: 5;
}
@keyframes sbc-showdown-crown-bob {
  0%, 100% { transform: translateY(0) rotate(-5deg); }
  50%       { transform: translateY(-3px) rotate(5deg); }
}

.sbc-showdown-card-book-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.sbc-showdown-card-book-info--right {
  align-items: flex-end;
  text-align: right;
}
.sbc-showdown-card-book-name {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.2;
}
.sbc-showdown-card-book-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 800;
  color: var(--text-main);
}
.sbc-showdown-rating-stars {
  display: inline-flex;
  gap: 1px;
  font-size: 10px;
}
.sbc-showdown-rating-stars .on  { color: #f59e0b; }
.sbc-showdown-rating-stars .off { color: rgba(255,255,255,0.15); }
:root.light .sbc-showdown-rating-stars .off { color: rgba(0,0,0,0.12); }

.sbc-showdown-card-book--winner .sbc-showdown-card-book-name {
  color: #10b981;
}
:root.light .sbc-showdown-card-book--winner .sbc-showdown-card-book-name {
  color: #059669;
}

.sbc-showdown-card-vs {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  flex-shrink: 0;
}
.sbc-showdown-card-vs span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.5);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
:root.light .sbc-showdown-card-vs span {
  background: rgba(0,0,0,0.04);
  border-color: rgba(0,0,0,0.1);
  color: rgba(0,0,0,0.35);
}
.sbc-showdown-card:hover .sbc-showdown-card-vs span {
  background: rgba(16,185,129,0.15);
  border-color: rgba(16,185,129,0.4);
  color: #10b981;
}

.sbc-showdown-card-bar-wrap {
  position: relative;
  z-index: 2;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
:root.light .sbc-showdown-card-bar-wrap {
  border-bottom-color: rgba(0,0,0,0.05);
}

.sbc-showdown-card-bar {
  position: relative;
  height: 10px;
  border-radius: 8px;
  overflow: visible;
  background: rgba(255,255,255,0.06);
}
:root.light .sbc-showdown-card-bar {
  background: rgba(0,0,0,0.06);
}

.sbc-showdown-card-bar-a {
  position: absolute;
  top: 0; left: 0;
  height: 100%;
  width: 0%;
  border-radius: 6px 2px 2px 6px;
  overflow: visible;
  background: linear-gradient(90deg,
    #047857 0%,
    #059669 20%,
    #10b981 50%,
    #34d399 78%,
    #a7f3d0 92%,
    #fff    100%
  );
  background-size: 200% 100%;
  animation: sbc-sd-volt-green 1.6s linear infinite;
  box-shadow:
    0 0 8px  rgba(16,185,129,0.9),
    0 0 20px rgba(16,185,129,0.5),
    0 0 40px rgba(16,185,129,0.25);
  z-index: 2;
}

.sbc-showdown-card-bar-a::before {
  content: '';
  position: absolute;
  top: -1px; left: -20px;
  width: 20px; height: calc(100% + 2px);
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(255,255,255,0.15) 40%,
    rgba(255,255,255,0.55) 60%,
    rgba(255,255,255,0.15) 80%,
    transparent 100%
  );
  border-radius: 4px;
  opacity: 0;
  pointer-events: none;
}
.sbc-showdown-card-bar-a.sbc-sd-charging::before {
  opacity: 1;
  animation: sbc-sd-scanline-ltr 0.35s linear infinite;
}
.sbc-showdown-card-bar-a.sbc-sd-done::before { opacity: 0; }

.sbc-showdown-card-bar-a::after {
  content: '';
  position: absolute;
  right: -6px; top: 50%;
  transform: translateY(-50%);
  width: 12px; height: 12px;
  border-radius: 50%;
  background: radial-gradient(circle, #fff 0%, #a7f3d0 30%, transparent 70%);
  box-shadow:
    0 0 0 2px rgba(52,211,153,0.4),
    0 0 8px  #fff,
    0 0 16px #34d399,
    0 0 32px #10b981,
    0 0 56px rgba(16,185,129,0.8);
  opacity: 0;
  transition: opacity 0.08s;
  z-index: 10;
}
.sbc-showdown-card-bar-a.sbc-sd-charging::after {
  opacity: 1;
  animation: sbc-sd-crackle-green 0.1s steps(3) infinite;
}
.sbc-showdown-card-bar-a.sbc-sd-done::after { opacity: 0; }

.sbc-showdown-card-bar-a.sbc-sd-done {
  background: linear-gradient(90deg,
    #047857 0%, #059669 25%, #10b981 55%, #34d399 85%, #6ee7b7 100%
  );
  background-size: 100% 100%;
  animation: sbc-sd-pulse-green 2.8s ease-in-out 0.2s infinite;
}

.sbc-showdown-card-bar-b {
  position: absolute;
  top: 0; right: 0;
  height: 100%;
  width: 0%;
  border-radius: 2px 6px 6px 2px;
  overflow: visible;
  background: linear-gradient(270deg,
    #1d4ed8 0%,
    #2563eb 20%,
    #3b82f6 50%,
    #60a5fa 78%,
    #bae6fd 92%,
    #fff    100%
  );
  background-size: 200% 100%;
  animation: sbc-sd-volt-blue 1.6s linear infinite;
  box-shadow:
    0 0 8px  rgba(59,130,246,0.9),
    0 0 20px rgba(59,130,246,0.5),
    0 0 40px rgba(59,130,246,0.25);
  z-index: 2;
}

.sbc-showdown-card-bar-b::before {
  content: '';
  position: absolute;
  top: -1px; right: -20px;
  width: 20px; height: calc(100% + 2px);
  background: linear-gradient(270deg,
    transparent 0%,
    rgba(255,255,255,0.15) 40%,
    rgba(255,255,255,0.55) 60%,
    rgba(255,255,255,0.15) 80%,
    transparent 100%
  );
  border-radius: 4px;
  opacity: 0;
  pointer-events: none;
}
.sbc-showdown-card-bar-b.sbc-sd-charging::before {
  opacity: 1;
  animation: sbc-sd-scanline-rtl 0.35s linear infinite;
}
.sbc-showdown-card-bar-b.sbc-sd-done::before { opacity: 0; }

.sbc-showdown-card-bar-b::after {
  content: '';
  position: absolute;
  left: -6px; top: 50%;
  transform: translateY(-50%);
  width: 12px; height: 12px;
  border-radius: 50%;
  background: radial-gradient(circle, #fff 0%, #bae6fd 30%, transparent 70%);
  box-shadow:
    0 0 0 2px rgba(96,165,250,0.4),
    0 0 8px  #fff,
    0 0 16px #60a5fa,
    0 0 32px #3b82f6,
    0 0 56px rgba(59,130,246,0.8);
  opacity: 0;
  transition: opacity 0.08s;
  z-index: 10;
}
.sbc-showdown-card-bar-b.sbc-sd-charging::after {
  opacity: 1;
  animation: sbc-sd-crackle-blue 0.1s steps(3) infinite;
}
.sbc-showdown-card-bar-b.sbc-sd-done::after { opacity: 0; }

.sbc-showdown-card-bar-b.sbc-sd-done {
  background: linear-gradient(270deg,
    #1d4ed8 0%, #2563eb 25%, #3b82f6 55%, #60a5fa 85%, #93c5fd 100%
  );
  background-size: 100% 100%;
  animation: sbc-sd-pulse-blue 2.8s ease-in-out 0.2s infinite;
}

@keyframes sbc-sd-volt-green {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
@keyframes sbc-sd-volt-blue {
  0%   { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
@keyframes sbc-sd-scanline-ltr {
  0%   { left: -20px;  opacity: 0.8; }
  50%  { opacity: 1; }
  100% { left: 110%;   opacity: 0.8; }
}
@keyframes sbc-sd-scanline-rtl {
  0%   { right: -20px; opacity: 0.8; }
  50%  { opacity: 1; }
  100% { right: 110%;  opacity: 0.8; }
}
@keyframes sbc-sd-crackle-green {
  0%   { box-shadow: 0 0 0 2px rgba(52,211,153,0.5), 0 0 10px #fff, 0 0 20px #34d399, 0 0 40px #10b981, 0 0 64px rgba(16,185,129,0.9);  transform: translateY(-50%) scale(1.3); }
  33%  { box-shadow: 0 0 0 1px rgba(52,211,153,0.2), 0 0 4px  #fff, 0 0 8px  #34d399, 0 0 16px #10b981, 0 0 28px rgba(16,185,129,0.5);  transform: translateY(-50%) scale(0.85); }
  66%  { box-shadow: 0 0 0 3px rgba(52,211,153,0.6), 0 0 14px #fff, 0 0 28px #34d399, 0 0 48px #10b981, 0 0 72px rgba(16,185,129,1.0);  transform: translateY(-50%) scale(1.15); }
  100% { box-shadow: 0 0 0 2px rgba(52,211,153,0.5), 0 0 10px #fff, 0 0 20px #34d399, 0 0 40px #10b981, 0 0 64px rgba(16,185,129,0.9);  transform: translateY(-50%) scale(1.3); }
}
@keyframes sbc-sd-crackle-blue {
  0%   { box-shadow: 0 0 0 2px rgba(96,165,250,0.5), 0 0 10px #fff, 0 0 20px #60a5fa, 0 0 40px #3b82f6, 0 0 64px rgba(59,130,246,0.9);  transform: translateY(-50%) scale(1.3); }
  33%  { box-shadow: 0 0 0 1px rgba(96,165,250,0.2), 0 0 4px  #fff, 0 0 8px  #60a5fa, 0 0 16px #3b82f6, 0 0 28px rgba(59,130,246,0.5);  transform: translateY(-50%) scale(0.85); }
  66%  { box-shadow: 0 0 0 3px rgba(96,165,250,0.6), 0 0 14px #fff, 0 0 28px #60a5fa, 0 0 48px #3b82f6, 0 0 72px rgba(59,130,246,1.0);  transform: translateY(-50%) scale(1.15); }
  100% { box-shadow: 0 0 0 2px rgba(96,165,250,0.5), 0 0 10px #fff, 0 0 20px #60a5fa, 0 0 40px #3b82f6, 0 0 64px rgba(59,130,246,0.9);  transform: translateY(-50%) scale(1.3); }
}
@keyframes sbc-sd-pulse-green {
  0%   { box-shadow: 0 0 6px  rgba(16,185,129,0.6), 0 0 14px rgba(16,185,129,0.3); filter: brightness(1); }
  50%  { box-shadow: 0 0 12px rgba(16,185,129,1.0), 0 0 28px rgba(16,185,129,0.6), 0 0 48px rgba(16,185,129,0.25); filter: brightness(1.25) saturate(1.15); }
  100% { box-shadow: 0 0 6px  rgba(16,185,129,0.6), 0 0 14px rgba(16,185,129,0.3); filter: brightness(1); }
}
@keyframes sbc-sd-pulse-blue {
  0%   { box-shadow: 0 0 6px  rgba(59,130,246,0.6), 0 0 14px rgba(59,130,246,0.3); filter: brightness(1); }
  50%  { box-shadow: 0 0 12px rgba(59,130,246,1.0), 0 0 28px rgba(59,130,246,0.6), 0 0 48px rgba(59,130,246,0.25); filter: brightness(1.25) saturate(1.15); }
  100% { box-shadow: 0 0 6px  rgba(59,130,246,0.6), 0 0 14px rgba(59,130,246,0.3); filter: brightness(1); }
}

@media (prefers-reduced-motion: reduce) {
  .sbc-showdown-card-bar-a,
  .sbc-showdown-card-bar-b { animation: none !important; box-shadow: none !important; }
  .sbc-showdown-card-bar-a { background: #10b981; transition: width 0.6s ease; }
  .sbc-showdown-card-bar-b { background: #3b82f6; transition: width 0.6s ease; }
}

.sbc-showdown-card-outer {
  position: relative;

}
.sbc-showdown-card-outer--featured {
  grid-column: 1 / -1 !important;
  position: relative;
  padding-top: 16px;
}

.sbc-showdown-card--featured {
  border-color: rgba(245,158,11,0.3);
  background: rgba(245,158,11,0.03);
  position: relative;
}
.sbc-showdown-card--featured:hover {
  border-color: rgba(245,158,11,0.55);
  box-shadow:
    0 12px 48px rgba(0,0,0,0.4),
    0 0 0 1px rgba(245,158,11,0.25),
    0 0 40px rgba(245,158,11,0.06);
}
:root.light .sbc-showdown-card--featured {
  background: rgba(251,191,36,0.03);
  border-color: rgba(245,158,11,0.25);
}

.sbc-showdown-card--featured .sbc-showdown-card-logo {
  width: 80px;
  height: 80px;
}
.sbc-showdown-card--featured .sbc-showdown-card-book-name {
  font-size: 15px;
}
.sbc-showdown-card--featured .sbc-showdown-card-book-rating {
  font-size: 16px;
}
.sbc-showdown-card--featured .sbc-showdown-card-bar-wrap {
  padding: 16px 20px;
}
.sbc-showdown-card--featured .sbc-showdown-card-bar {
  height: 14px;
  border-radius: 10px;
}

.sbc-showdown-featured-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #f59e0b;
  color: #000;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 20px;
  border-radius: 20px;
  white-space: nowrap;
  box-shadow: 0 2px 14px rgba(245,158,11,0.45);
}

.sbc-showdown-card--featured::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #f59e0b 30%, #f59e0b 70%, transparent);
  border-radius: 20px 20px 0 0;
  z-index: 2;
}

.sbc-showdown-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 8px;
  min-width: 0;
}
.sbc-showdown-chips--right {
  justify-content: flex-end;
}
.sbc-showdown-chip {
  display: inline-flex;
  align-items: center;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 3px 8px;
  border-radius: 20px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.5);
  white-space: nowrap;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
:root.light .sbc-showdown-chip {
  background: rgba(0,0,0,0.04);
  border-color: rgba(0,0,0,0.1);
  color: rgba(0,0,0,0.45);
}
.sbc-showdown-card:hover .sbc-showdown-chip {
  background: rgba(16,185,129,0.1);
  border-color: rgba(16,185,129,0.2);
  color: #10b981;
}
:root.light .sbc-showdown-card:hover .sbc-showdown-chip {
  color: #059669;
  background: rgba(5,150,105,0.07);
}

.sbc-showdown-card--featured .sbc-showdown-chip {
  background: rgba(245,158,11,0.08);
  border-color: rgba(245,158,11,0.18);
  color: rgba(245,158,11,0.7);
}
.sbc-showdown-card--featured:hover .sbc-showdown-chip {
  background: rgba(245,158,11,0.15);
  border-color: rgba(245,158,11,0.3);
  color: #f59e0b;
}

.sbc-showdown-card-footer {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  gap: 8px;
}
.sbc-showdown-card-verdict {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
}
:root.light .sbc-showdown-card-verdict { color: rgba(0,0,0,0.45); }
.sbc-showdown-card-verdict svg { color: #f59e0b; }
.sbc-showdown-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.03em;
  color: #10b981;
  transition: gap 0.2s;
}
:root.light .sbc-showdown-card-cta { color: #059669; }
.sbc-showdown-card:hover .sbc-showdown-card-cta { gap: 8px; }

.sbc-showdown-empty {
  text-align: center;
  padding: 80px 32px;
  background: rgba(255,255,255,0.03);
  border: 1px dashed rgba(255,255,255,0.1);
  border-radius: 20px;
}
:root.light .sbc-showdown-empty {
  background: rgba(0,0,0,0.02);
  border-color: rgba(0,0,0,0.1);
}
.sbc-showdown-empty-icon { font-size: 48px; margin-bottom: 16px; }
.sbc-showdown-empty h2 { color: var(--text-main); font-size: 22px; margin-bottom: 12px; }
.sbc-showdown-empty p  { color: rgba(255,255,255,0.4); font-size: 14px; line-height: 1.6; max-width: 400px; margin: 0 auto; }
:root.light .sbc-showdown-empty p { color: rgba(0,0,0,0.45); }

.sbc-showdown-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: 80px;
}

.sbc-showdown-widget {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
}
:root.light .sbc-showdown-widget {
  background: #ffffff;
  border-color: rgba(0,0,0,0.07);
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}
.sbc-showdown-widget-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
:root.light .sbc-showdown-widget-header {
  border-bottom-color: rgba(0,0,0,0.06);
  color: rgba(0,0,0,0.4);
}
.sbc-showdown-widget-header svg { color: #10b981; }
.sbc-showdown-widget-body { padding: 18px; }

.sbc-showdown-widget-body .sbc-trn-widget {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
}

.sbc-showdown-howto {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 16px 18px;
}
.sbc-showdown-howto-step {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.sbc-showdown-howto-num {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 900;
  color: #10b981;
  line-height: 1;
  flex-shrink: 0;
  width: 28px;
}
:root.light .sbc-showdown-howto-num { color: #059669; }
.sbc-showdown-howto-step strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 3px;
}
.sbc-showdown-howto-step p {
  font-size: 12px;
  line-height: 1.5;
  color: rgba(255,255,255,0.4);
  margin: 0;
}
:root.light .sbc-showdown-howto-step p { color: rgba(0,0,0,0.45); }

.sbc-showdown-province-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.sbc-showdown-prov-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-main);
  background: rgba(255,255,255,0.03);
  border: 1px solid transparent;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
:root.light .sbc-showdown-prov-link { background: rgba(0,0,0,0.02); }
.sbc-showdown-prov-link:hover {
  background: rgba(16,185,129,0.08);
  border-color: rgba(16,185,129,0.2);
  color: #10b981;
}
:root.light .sbc-showdown-prov-link:hover {
  color: #059669;
  background: rgba(5,150,105,0.06);
}
.sbc-showdown-prov-link svg { margin-left: auto; color: rgba(255,255,255,0.2); }
:root.light .sbc-showdown-prov-link svg { color: rgba(0,0,0,0.2); }
.sbc-showdown-prov-link:hover svg { color: #10b981; }
:root.light .sbc-showdown-prov-link:hover svg { color: #059669; }

.sbc-showdown-prov-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.sbc-showdown-prov-dot--on { background: #10b981; box-shadow: 0 0 6px rgba(16,185,129,0.5); }
.sbc-showdown-prov-dot--ab { background: #f59e0b; box-shadow: 0 0 6px rgba(245,158,11,0.5); }
.sbc-showdown-prov-dot--ca { background: #ef4444; box-shadow: 0 0 6px rgba(239,68,68,0.5); }

.sbc-showdown-widget--methodology {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  cursor: pointer;
}
.sbc-showdown-widget--methodology:hover {
  background: rgba(16,185,129,0.06);
  border-color: rgba(16,185,129,0.25);
  transform: translateY(-2px);
}
.sbc-showdown-methodology-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(16,185,129,0.12);
  border: 1px solid rgba(16,185,129,0.2);
  display: flex; align-items: center; justify-content: center;
  color: #10b981;
  flex-shrink: 0;
}
:root.light .sbc-showdown-methodology-icon { background: rgba(5,150,105,0.1); border-color: rgba(5,150,105,0.2); color: #059669; }
.sbc-showdown-widget--methodology strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 3px;
}
.sbc-showdown-widget--methodology p {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  margin: 0;
  line-height: 1.4;
}
:root.light .sbc-showdown-widget--methodology p { color: rgba(0,0,0,0.4); }
.sbc-showdown-methodology-arrow {
  margin-left: auto;
  color: rgba(255,255,255,0.2);
  flex-shrink: 0;
  transition: color 0.2s, transform 0.2s;
}
.sbc-showdown-widget--methodology:hover .sbc-showdown-methodology-arrow {
  color: #10b981;
  transform: translateX(3px);
}

.sbc-showdown-cta-banner {
  background: linear-gradient(135deg, rgba(16,185,129,0.12) 0%, rgba(59,130,246,0.08) 100%);
  border-top: 1px solid rgba(16,185,129,0.15);
  padding: 48px 0;
}
:root.light .sbc-showdown-cta-banner {
  background: linear-gradient(135deg, rgba(5,150,105,0.06), rgba(59,130,246,0.04));
  border-top-color: rgba(5,150,105,0.15);
}
.sbc-showdown-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.sbc-showdown-cta-text h2 {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 900;
  color: var(--text-main);
  margin: 0 0 8px;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}
.sbc-showdown-cta-text p {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  margin: 0;
}
:root.light .sbc-showdown-cta-text p { color: rgba(0,0,0,0.45); }
.sbc-showdown-cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  flex-shrink: 0;
}
.sbc-showdown-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}
.sbc-showdown-cta-btn:hover { transform: translateY(-2px); }
.sbc-showdown-cta-btn--primary {
  background: #10b981;
  color: #000;
  box-shadow: 0 4px 16px rgba(16,185,129,0.3);
}
.sbc-showdown-cta-btn--primary:hover {
  box-shadow: 0 8px 24px rgba(16,185,129,0.45);
}
.sbc-showdown-cta-btn--ghost {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--text-main);
}
:root.light .sbc-showdown-cta-btn--ghost {
  background: rgba(0,0,0,0.04);
  border-color: rgba(0,0,0,0.1);
}
.sbc-showdown-cta-btn--ghost:hover { background: rgba(255,255,255,0.1); }

@media (max-width: 1023px) {
  .sbc-showdown-sidebar { position: static; }
}
@media (max-width: 639px) {
  .sbc-showdown-hero { padding: 56px 0 44px; }
  .sbc-showdown-hero-stats { padding: 12px 16px; }
  .sbc-showdown-body { padding: 32px 0 60px; }
  .sbc-showdown-cta-inner { flex-direction: column; align-items: flex-start; }
  .sbc-showdown-card-logo { width: 52px; height: 52px; }
}

@media (prefers-reduced-motion: reduce) {
  .sbc-showdown-hero-orb,
  .sbc-showdown-spark,
  .sbc-showdown-vs-ring,
  .sbc-showdown-card-crown,
  .sbc-showdown-vs-inner {
    animation: none;
  }
  .sbc-showdown-card {
    transition: border-color 0.15s;
  }
  .sbc-showdown-card:hover { transform: none; }
}