:root {
  --bg: #0d1016;
  --bg-soft: #111622;
  --text: #f8fafc;
  --muted: #9aa4b2;
  --accent: #fbbf24;
  --accent-strong: #f97316;
  --accent-cool: #22d3ee;
  --line: rgba(255, 255, 255, 0.08);
  --card: #141a26;
  --shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.6);
  --font-head: "Space Grotesk", sans-serif;
  --font-body: "Manrope", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background:
    radial-gradient(900px circle at 12% 10%, rgba(34, 211, 238, 0.16), transparent 55%),
    radial-gradient(800px circle at 88% 15%, rgba(251, 191, 36, 0.18), transparent 50%),
    linear-gradient(180deg, #0b0f16 0%, #0d1016 100%);
  line-height: 1.6;
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.site-header {
  border-bottom: 1px solid var(--line);
  background: rgba(13, 16, 22, 0.86);
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(18px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.02em;
}

.brand-mark {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 24px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  align-items: center;
}

.nav-links a {
  position: relative;
  color: var(--text);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-cool), var(--accent));
  transition: width 0.2s ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  width: 100%;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 13px;
}

.auth-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.auth-badge.auth-offline {
  background: rgba(239, 68, 68, 0.12);
  border-color: rgba(239, 68, 68, 0.35);
  color: #fecaca;
}

.auth-badge.auth-online {
  background: rgba(34, 211, 238, 0.12);
  border-color: rgba(34, 211, 238, 0.35);
  color: #a5f3fc;
}

.auth-logout {
  min-height: 34px;
  padding: 6px 12px;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.auth-logout.is-hidden {
  display: none;
}

.ruleta-subscribe-btn.is-hidden {
  display: none;
}

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

.social-link {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.02);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.social-link:hover {
  transform: translateY(-2px);
  border-color: rgba(251, 191, 36, 0.4);
}

.social-link img {
  width: 18px;
  height: 18px;
  display: block;
}

.btn {
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.btn.primary {
  background: linear-gradient(120deg, var(--accent), var(--accent-strong));
  color: #151515;
  box-shadow: 0 14px 24px -14px rgba(251, 191, 36, 0.7);
}

.btn.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 30px -18px rgba(251, 191, 36, 0.8);
}

.btn.ghost {
  border: 1px solid var(--line);
  color: var(--text);
  background: rgba(255, 255, 255, 0.02);
}

.btn.ghost:hover {
  border-color: rgba(251, 191, 36, 0.4);
}

.btn.is-disabled {
  opacity: 0.65;
  pointer-events: none;
}

.hero {
  padding: 80px 0 40px;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 36px;
  align-items: center;
}

.hero-copy h1 {
  font-family: var(--font-head);
  font-size: clamp(32px, 4vw, 48px);
  margin: 10px 0 16px;
}

.lead {
  color: var(--muted);
  max-width: 520px;
}

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

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.hero-meta {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-status {
  margin-top: 18px;
  color: #d6e3f0;
  font-size: 13px;
}

.meta-chip {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.hero-card {
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.08));
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 22px;
  width: min(420px, 90vw);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
  display: grid;
  gap: 18px;
  animation: float 6s ease-in-out infinite;
}

.hero-card.overlay-card {
  background: transparent;
  border: none;
  padding: 0;
  width: min(560px, 94vw);
  box-shadow: none;
}

.hero-card.overlay-card .overlay-preview {
  --overlay-a: #4aa3ff;
  --overlay-b: #ff4fb3;
  --overlay-win: #38d97b;
  --overlay-lose: #ff4d4d;
  --overlay-pos-offset: 0px;
  --overlay-scale: 1;
}

.hero-card-top,
.hero-card-footer {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--muted);
}

.pill {
  background: rgba(34, 211, 238, 0.15);
  color: var(--accent-cool);
  border-radius: 999px;
  padding: 2px 10px;
  font-size: 11px;
}

.hero-card-body {
  display: grid;
  gap: 10px;
}

.hero-line {
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
}

.hero-line.short {
  width: 70%;
}

.hero-bar {
  height: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.hero-bar-fill {
  height: 100%;
  width: 72%;
  background: linear-gradient(90deg, var(--accent-cool), var(--accent));
}

.hero-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
}

.panel-section {
  padding: 40px 0 60px;
}

.panel {
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 32px;
  box-shadow: var(--shadow);
}

.panel-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 26px;
}

.panel-head h2 {
  font-family: var(--font-head);
  font-size: clamp(24px, 3vw, 34px);
  margin: 8px 0 10px;
}

.panel-head p {
  color: var(--muted);
  max-width: 520px;
}

.panel-label {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 11px;
  color: var(--accent-cool);
}

.panel-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 22px;
}

.panel-preview {
  background: #0c111c;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 22px;
  display: grid;
  gap: 16px;
}

.preview-title {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 11px;
  color: var(--muted);
}

.preview-options {
  display: grid;
  gap: 10px;
}

.preview-option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
}

.preview-progress {
  height: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.preview-fill {
  height: 100%;
  width: 58%;
  background: linear-gradient(90deg, var(--accent), var(--accent-strong));
}

.preview-footer {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--muted);
}

.panel-details {
  display: grid;
  gap: 14px;
}

.detail-card {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 14px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.detail-card h3 {
  margin: 0 0 8px;
  font-size: 16px;
}

.detail-card p {
  margin: 0;
  color: var(--muted);
}

.section {
  padding: 40px 0 60px;
}

.section-head {
  display: grid;
  gap: 8px;
}

.section-head h2 {
  font-family: var(--font-head);
  margin: 0 0 6px;
}

.section-head p {
  margin: 0;
  color: var(--muted);
}

.auth-hooks {
  display: none;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 22px;
}

.widget-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 18px;
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.widget-card-copy {
  display: grid;
  gap: 4px;
}

.widget-card h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.widget-card p {
  margin: 0;
  color: var(--muted);
}

.widget-card .status {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.widget-card.is-live {
  border-color: rgba(34, 211, 238, 0.5);
  background: linear-gradient(140deg, rgba(34, 211, 238, 0.12), rgba(255, 255, 255, 0.02));
  cursor: pointer;
}

.widget-card.is-live:hover {
  transform: translateY(-3px);
  border-color: rgba(251, 191, 36, 0.6);
}

.widget-card.is-live .status {
  color: var(--accent-cool);
}

.widget-card.is-locked {
  opacity: 0.72;
  filter: grayscale(0.25);
}

.widget-card.is-soon {
  opacity: 0.85;
}

.widget-card-pred {
  grid-column: span 2;
  gap: 14px;
}

.widget-card-ruleta {
  grid-column: span 2;
  gap: 14px;
}

.pricing-section {
  padding-top: 12px;
}

.pricing-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.plan-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 24px;
  display: grid;
  gap: 10px;
}

.plan-kicker {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 11px;
  color: var(--muted);
}

.plan-card h3 {
  margin: 0;
  font-family: var(--font-head);
  font-size: 28px;
  line-height: 1.15;
}

.plan-price {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: #f8fafc;
}

.plan-caption {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.plan-list {
  margin: 6px 0 8px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.plan-list li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  font-size: 14px;
}

.plan-list li::before {
  content: "+";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent-cool);
  font-weight: 700;
}

.plan-card .btn {
  width: fit-content;
  margin-top: 4px;
}

.plan-pro {
  border-color: rgba(251, 191, 36, 0.5);
  background:
    radial-gradient(500px circle at 95% -10%, rgba(251, 191, 36, 0.18), transparent 56%),
    linear-gradient(150deg, rgba(251, 191, 36, 0.08), rgba(255, 255, 255, 0.02));
}

.plan-free {
  border-color: rgba(34, 211, 238, 0.35);
  background:
    radial-gradient(500px circle at 0% 0%, rgba(34, 211, 238, 0.16), transparent 58%),
    rgba(255, 255, 255, 0.02);
}

.dev-access-panel {
  background: rgba(20, 26, 38, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 20px;
  display: grid;
  gap: 14px;
}

.dev-access-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.dev-access-head h2 {
  margin: 4px 0 0;
  font-family: var(--font-head);
  font-size: clamp(20px, 2.3vw, 28px);
}

.dev-access-status {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.dev-access-status.is-error {
  color: #fecaca;
}

.dev-access-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr)) minmax(0, 1.6fr) auto auto;
  gap: 10px;
  align-items: end;
}

.dev-access-form label {
  display: grid;
  gap: 6px;
  font-size: 12px;
  color: var(--muted);
}

.dev-access-form input {
  width: 100%;
  min-height: 38px;
  padding: 8px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(12, 17, 28, 0.82);
  color: var(--text);
  outline: none;
}

.dev-access-form input:focus-visible {
  border-color: rgba(34, 211, 238, 0.8);
  box-shadow: 0 0 0 2px rgba(34, 211, 238, 0.2);
}

.dev-access-note-field {
  min-width: 220px;
}

.dev-btn-small {
  min-height: 38px;
  padding: 8px 14px;
  font-size: 12px;
}

.dev-access-table-wrap {
  overflow-x: auto;
}

.dev-access-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.dev-access-table th,
.dev-access-table td {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 10px 8px;
  text-align: left;
  vertical-align: middle;
}

.dev-access-table th {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.steps-section {
  padding-top: 20px;
}

.steps-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 28px;
  align-items: start;
}

.steps-grid h2 {
  font-family: var(--font-head);
  margin-top: 0;
}

.steps-grid p {
  color: var(--muted);
}

.steps-cards {
  display: grid;
  gap: 14px;
}

.step-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 16px;
}

.step-card span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
}

.step-card h3 {
  margin: 10px 0 6px;
}

.step-card p {
  margin: 0;
  color: var(--muted);
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 30px 0 36px;
  background: rgba(13, 16, 22, 0.9);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  color: var(--muted);
}

.brand-text {
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--accent);
}

.footer-links {
  display: flex;
  gap: 14px;
}

.footer-bottom {
  margin-top: 16px;
  color: var(--muted);
  font-size: 12px;
}

.auth-gate {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(720px circle at 50% -20%, rgba(34, 211, 238, 0.2), transparent 60%),
    rgba(4, 7, 12, 0.92);
  backdrop-filter: blur(6px);
}

.auth-gate.is-hidden {
  display: none;
}

.auth-gate-card {
  width: min(520px, 92vw);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(170deg, rgba(20, 26, 38, 0.96), rgba(13, 16, 22, 0.96));
  box-shadow: var(--shadow);
  padding: 26px;
  text-align: center;
}

.auth-gate-kicker {
  margin: 0 0 10px;
  color: var(--accent-cool);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 11px;
  font-weight: 700;
}

.auth-gate-card h2 {
  margin: 0 0 10px;
  font-family: var(--font-head);
  font-size: clamp(26px, 4vw, 34px);
}

.auth-gate-card p {
  margin: 0;
  color: var(--muted);
}

.auth-gate-actions {
  margin-top: 18px;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.delay-1 {
  animation: fadeUp 0.6s ease forwards;
  animation-delay: 0.05s;
  opacity: 0;
  transform: translateY(14px);
}

.delay-2 {
  animation: fadeUp 0.6s ease forwards;
  animation-delay: 0.12s;
  opacity: 0;
  transform: translateY(14px);
}

.delay-3 {
  animation: fadeUp 0.6s ease forwards;
  animation-delay: 0.2s;
  opacity: 0;
  transform: translateY(14px);
}

.delay-4 {
  animation: fadeUp 0.6s ease forwards;
  animation-delay: 0.28s;
  opacity: 0;
  transform: translateY(14px);
}

.delay-5 {
  animation: fadeUp 0.6s ease forwards;
  animation-delay: 0.36s;
  opacity: 0;
  transform: translateY(14px);
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@media (max-width: 980px) {
  .nav-links {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .panel-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .panel-body {
    grid-template-columns: 1fr;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .dev-access-form {
    grid-template-columns: 1fr 1fr;
  }

  .dev-access-note-field {
    grid-column: 1 / -1;
  }

  .widget-card-pred {
    grid-column: span 1;
  }

  .widget-card-ruleta {
    grid-column: span 1;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-right {
    width: 100%;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .hero {
    padding-top: 60px;
  }

  .ruleta-preview-tag {
    font-size: 9px;
    letter-spacing: 0.06em;
  }

  .ruleta-preview-state {
    font-size: 9px;
  }

  .plan-card .btn {
    width: 100%;
  }

  .dev-access-form {
    grid-template-columns: 1fr;
  }

  .killer-prediction-card {
    padding: 12px 14px;
  }

  .killer-prediction-card-header {
    font-size: 16px;
  }

  .killer-prediction-card-percent {
    font-size: 18px;
  }

  .killer-prediction-card-title {
    font-size: 14px;
  }
}


/* Overlay preview (bars theme) */
.overlay-preview{
  position: relative;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 10px;
  padding: 18px 20px;
  overflow: hidden;
  zoom: 0.85;
}
.overlay-preview::before{
  content: "";
  position: absolute;
  inset: 6px;
  background: #24292e;
  border-radius: 8px;
  z-index: 0;
}
.overlay-preview > *{
  position: relative;
  z-index: 1;
}
.overlay-preview .killer-prediction-card{
  margin: 0;
  background: transparent;
}
.overlay-preview .killer-prediction-bars-timer{
  font-size: 12px;
  line-height: 1.2;
  max-width: 140px;
}
@supports not (zoom: 1) {
  .overlay-preview {
    transform: scale(0.85);
    transform-origin: top left;
  }
}
.killer-prediction-widget{
  position: fixed;
  left: 50%;
  top: calc(50% + 60px);
  bottom: auto;
  transform: translate(-50%, -50%) scale(var(--overlay-scale, 1.5)) translateY(8px);
  transform-origin: center;
  --overlay-pos-offset: 1px;
  width: min(420px, 84vw);
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  z-index: 1200;
  display: flex;
  flex-direction: column;
  gap: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.killer-prediction-widget.is-hidden{
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0s linear 0.35s, transform 0.35s ease;
}
.killer-prediction-widget.is-visible{
  opacity: 1;
  visibility: visible;
  transition: opacity 0.35s ease, visibility 0s linear 0s, transform 0.35s ease;
  transform: translate(-50%, -50%) scale(var(--overlay-scale, 1.5));
}
body.overlay-pos-top .killer-prediction-widget{
  top: var(--overlay-pos-offset);
  bottom: auto;
  transform: translate(-50%, 0) scale(var(--overlay-scale, 1.5));
  transform-origin: top center;
}
body.overlay-pos-bottom .killer-prediction-widget{
  top: auto;
  bottom: var(--overlay-pos-offset);
  transform: translate(-50%, 0) scale(var(--overlay-scale, 1.5));
  transform-origin: bottom center;
}
body.overlay-pos-top .killer-prediction-widget.is-visible,
body.overlay-pos-bottom .killer-prediction-widget.is-visible{
  transform: translate(-50%, 0) scale(var(--overlay-scale, 1.5));
}
body:not(.killer-active) .killer-prediction-widget{
  display: none;
}
.killer-prediction-card{
  background: transparent;
  border: none;
  border-radius: 14px;
  padding: 14px 18px;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  font-variant-numeric: tabular-nums;
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: #ffffff;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  position: relative;
  overflow: visible;
}
.killer-prediction-card::before{
  content: "";
  position: absolute;
  left: -24px;
  right: -24px;
  top: -90px;
  bottom: -90px;
  background:
    url("assets/killperks/fondohumo.png") center center/100% 80% no-repeat,
    url("assets/killperks/fondohumo.png") center center/100% 80% no-repeat;
  filter: contrast(1.15) brightness(1.08);
  pointer-events: none;
  z-index: 0;
}
.killer-prediction-card > *{
  position: relative;
  z-index: 1;
}
.killer-prediction-card :where(.killer-prediction-card-header,
.killer-prediction-card-option,
.killer-prediction-card-timer,
.killer-prediction-bars-title,
.killer-prediction-bars-option,
.killer-prediction-bars-value,
.killer-prediction-bars-timer,
.killer-prediction-bars-percent,
.killer-prediction-bars-multiplier,
.killer-prediction-card-percent,
.killer-prediction-card-points,
.killer-prediction-card-multiplier,
.killer-prediction-card-users,
.killer-prediction-card-top,
.killer-prediction-card-title,
.killer-prediction-card-entry-name,
.killer-prediction-card-entry-points){
  text-shadow: none;
  -webkit-text-stroke: 1.5px #000;
  paint-order: stroke fill;
}
.killer-prediction-card.is-active,
.killer-prediction-card.is-locked,
.killer-prediction-card.is-resolved,
.killer-prediction-card.is-canceled{
  border-color: transparent;
}
.killer-prediction-card-header{
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  font-size: 18px;
  font-weight: 700;
  gap: 8px;
}
.killer-prediction-card-option{
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.killer-prediction-card-option.is-winner::after,
.killer-prediction-card-option.is-loser::after{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 6px;
  padding: 1px 4px;
  border-radius: 8px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-shadow: none;
}
.killer-prediction-card-option.is-winner::after{
  content: "OK";
  color: #0d2b18;
  background: var(--overlay-win);
}
.killer-prediction-card-option.is-loser::after{
  content: "X";
  color: #2b0d0d;
  background: var(--overlay-lose);
}
.killer-prediction-card-option-a{
  color: var(--overlay-a);
  justify-self: start;
}
.killer-prediction-card-option-b{
  color: var(--overlay-b);
  text-align: right;
  justify-self: end;
}
.killer-prediction-card.is-resolved.winner-a .killer-prediction-card-bar-fill-b{
  opacity: 0.45;
  filter: saturate(0.55);
}
.killer-prediction-card.is-resolved.winner-a .killer-prediction-bars-chip-b{
  opacity: 0.45;
  filter: saturate(0.55);
}
.killer-prediction-card.is-resolved.winner-a .killer-prediction-bars-percent-b{
  opacity: 0.45;
  filter: saturate(0.55);
}
.killer-prediction-card.is-resolved.winner-a .killer-prediction-card-percent-b{
  opacity: 0.45;
  filter: saturate(0.55);
}
.killer-prediction-card.is-resolved.winner-a :is(.killer-prediction-bars-option-b,
.killer-prediction-card-option-b){
  opacity: 0.45;
  filter: saturate(0.55);
}
.killer-prediction-card.is-resolved.winner-b .killer-prediction-card-bar-fill-a{
  opacity: 0.45;
  filter: saturate(0.55);
}
.killer-prediction-card.is-resolved.winner-b .killer-prediction-bars-chip-a{
  opacity: 0.45;
  filter: saturate(0.55);
}
.killer-prediction-card.is-resolved.winner-b .killer-prediction-bars-percent-a{
  opacity: 0.45;
  filter: saturate(0.55);
}
.killer-prediction-card.is-resolved.winner-b .killer-prediction-card-percent-a{
  opacity: 0.45;
  filter: saturate(0.55);
}
.killer-prediction-card.is-resolved.winner-b :is(.killer-prediction-bars-option-a,
.killer-prediction-card-option-a){
  opacity: 0.45;
  filter: saturate(0.55);
}
.killer-prediction-card-timer{
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #ffffff;
  text-align: center;
  min-width: 64px;
  line-height: 1.1;
  white-space: pre-line;
}
.killer-prediction-card.is-locked .killer-prediction-card-timer{
  font-size: 11.5px;
}
.killer-prediction-card-bar{
  position: relative;
  height: 5px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  overflow: hidden;
  box-shadow: 0 0 0 1.5px #000;
}
.killer-prediction-card-bar-fill{
  position: absolute;
  top: 0;
  bottom: 0;
  width: 0%;
  transition: width 0.35s ease;
  z-index: 1;
}
.killer-prediction-card-bar-fill-a{
  left: 0;
  background: linear-gradient(90deg, rgba(74, 163, 255, 0.95), rgba(74, 163, 255, 0.55));
}
.killer-prediction-card-bar-fill-b{
  right: 0;
  background: linear-gradient(270deg, rgba(255, 79, 179, 0.95), rgba(255, 79, 179, 0.55));
}
.killer-prediction-bars-top{
  display: none;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 6px;
}
.killer-prediction-bars-heading{
  display: none;
  grid-template-columns: 1fr auto 1fr;
  grid-template-areas: "left title right";
  align-items: center;
  gap: 8px;
}
.killer-prediction-bars-col{
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.killer-prediction-bars-col-b{
  align-items: flex-end;
}
.killer-prediction-bars-title{
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  padding: 0 2px;
  line-height: 1.1;
  grid-area: title;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 260px;
}
.killer-prediction-bars-option{
  font-size: 13px;
  font-weight: 700;
  padding: 0 2px;
  line-height: 1.1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.killer-prediction-bars-col-a{
  grid-area: left;
}
.killer-prediction-bars-col-b{
  grid-area: right;
}
.killer-prediction-bars-heading.is-stacked{
  grid-template-columns: 1fr 1fr;
  grid-template-areas:
    "title title"
    "left right";
  row-gap: 4px;
}
.killer-prediction-bars-heading.is-stacked .killer-prediction-bars-title{
  max-width: none;
}
.killer-prediction-bars-option-a{
  text-align: left;
}
.killer-prediction-bars-option-b{
  text-align: right;
}
.killer-prediction-bars-toplist{
  min-height: 12px;
}
.killer-prediction-bars-chip{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 4px 6px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}
.killer-prediction-bars-chip-a{
  background: linear-gradient(90deg, #3b7bf5, #4c8dfd);
}
.killer-prediction-bars-chip-b{
  background: linear-gradient(90deg, #ff1aa7, #ff3fb8);
}
.killer-prediction-bars-sep{
  font-weight: 800;
  opacity: 0.85;
}
.killer-prediction-bars-icon{
  width: 14px;
  height: 14px;
  object-fit: contain;
}
.killer-prediction-bars-timer{
  padding: 0;
  border-radius: 0;
  background: none;
  border: none;
  font-size: 14px;
  letter-spacing: 0;
  text-transform: none;
  text-align: center;
  min-width: 0;
  white-space: pre-line;
}
.killer-prediction-card.is-locked .killer-prediction-bars-timer{
  font-size: 12.5px;
}
.killer-prediction-bars-percents{
  position: absolute;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px;
  z-index: 2;
  pointer-events: none;
}
.killer-prediction-bars-side{
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.killer-prediction-bars-multiplier{
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
}
.killer-prediction-bars-percent{
  font-size: 18px;
  font-weight: 800;
  color: #ffffff;
}
.killer-prediction-card-stats{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  position: relative;
}
.killer-prediction-card-stats::after{
  content: "";
  position: absolute;
  top: 4px;
  bottom: 4px;
  left: 50%;
  width: 1px;
  background: #ffffff;
  transform: translateX(-0.5px);
  pointer-events: none;
}
.killer-prediction-card-body{
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 6px 8px 4px;
  border-radius: 12px;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.killer-prediction-card-body > *{
  position: relative;
  z-index: 1;
}
.killer-prediction-card-side{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}
.killer-prediction-card-main{
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.killer-prediction-card-metrics{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  text-align: center;
}
.killer-prediction-card-meta{
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.killer-prediction-card-side-right{
  align-items: flex-end;
  text-align: right;
}
.killer-prediction-card-side-right .killer-prediction-card-main{
  flex-direction: row-reverse;
  justify-content: flex-start;
  gap: 4px;
}
.killer-prediction-card-side-right .killer-prediction-card-meta{
  align-items: flex-end;
  text-align: right;
}
.killer-prediction-card-side:not(.killer-prediction-card-side-right) .killer-prediction-card-points,
.killer-prediction-card-side:not(.killer-prediction-card-side-right) .killer-prediction-card-multiplier{
  flex-direction: row;
  justify-content: flex-start;
  gap: 4px;
}
.killer-prediction-card-side-right .killer-prediction-card-points{
  justify-content: flex-end;
  flex-direction: row;
  gap: 4px;
  width: 100%;
  text-align: right;
}
.killer-prediction-card-side-right .killer-prediction-card-multiplier{
  flex-direction: row;
  justify-content: flex-end;
  gap: 4px;
  width: 100%;
  text-align: right;
}
.killer-prediction-card-metrics .killer-prediction-card-users{
  justify-content: center;
  width: 100%;
  text-align: center;
}
.killer-prediction-card-percent{
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.killer-prediction-card-percent-a{
  color: var(--overlay-a);
}
.killer-prediction-card-percent-b{
  color: var(--overlay-b);
}
.killer-prediction-value{
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.killer-prediction-value.is-pulse{
  animation: prediction-value-pulse 0.6s ease;
}
.killer-prediction-card-percent.killer-prediction-value{
  font-weight: 800;
}
.killer-prediction-card-points{
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12.5px;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  font-weight: 600;
}
.killer-prediction-points-icon{
  width: 14px;
  height: 14px;
  object-fit: contain;
}
.killer-prediction-card-multiplier{
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12.5px;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  font-weight: 600;
}
.killer-prediction-multiplier-icon{
  width: 14px;
  height: 14px;
  object-fit: contain;
}
.killer-prediction-card-users{
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12.5px;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  font-weight: 600;
}
.killer-prediction-users-icon{
  width: 14px;
  height: 14px;
  object-fit: contain;
}
.killer-prediction-card-top{
  font-size: 11.5px;
  opacity: 1;
  white-space: normal;
  overflow: visible;
  text-overflow: initial;
  max-width: none;
}
.killer-prediction-card.is-resolved .killer-prediction-card-top{
  white-space: normal;
  overflow: visible;
  text-overflow: initial;
  max-width: none;
}
.killer-prediction-card-list{
  --prediction-entry-height: 14px;
  --prediction-visible-lines: 3;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 2px;
  max-height: calc(var(--prediction-entry-height) * var(--prediction-visible-lines));
  overflow: hidden;
  mask-image: linear-gradient(to bottom, black 65%, transparent);
  -webkit-mask-image: linear-gradient(to bottom, black 65%, transparent);
}
.killer-prediction-card-list-inner{
  display: flex;
  flex-direction: column;
  gap: 0;
}
.killer-prediction-card-list.is-scroll{
  animation: prediction-list-scroll var(--prediction-scroll-duration, 10s) ease-in-out infinite;
}
.killer-prediction-card-list-inner.is-scroll{
  animation: prediction-list-scroll var(--prediction-scroll-duration, 10s) ease-in-out infinite;
}
body.overlay-pos-top .killer-prediction-card-list.is-scroll,
body.overlay-pos-top .killer-prediction-card-list-inner.is-scroll{
  animation-name: prediction-list-scroll-down;
}
.killer-prediction-card-list.is-compact{
  mask-image: linear-gradient(to bottom, black 45%, transparent);
  -webkit-mask-image: linear-gradient(to bottom, black 45%, transparent);
}
body.overlay-pos-top .killer-prediction-card-list{
  mask-image: linear-gradient(to top, black 65%, transparent);
  -webkit-mask-image: linear-gradient(to top, black 65%, transparent);
}
body.overlay-pos-top .killer-prediction-card-list.is-compact{
  mask-image: linear-gradient(to top, black 45%, transparent);
  -webkit-mask-image: linear-gradient(to top, black 45%, transparent);
}
.killer-prediction-card-entry{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-size: 11.5px;
  font-weight: 600;
  line-height: var(--prediction-entry-height);
  opacity: 0;
  transform: translateY(6px);
  animation: prediction-roll-in 0.5s ease forwards;
}
.killer-prediction-card-entry-name{
  flex: 1;
  min-width: 0;
  font-size: 13.5px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.killer-prediction-card-entry-points{
  flex-shrink: 0;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}
.killer-prediction-card-entry-points.is-win{
  color: var(--overlay-win);
}
.killer-prediction-card-entry-points.is-lose{
  color: var(--overlay-lose);
}
.killer-prediction-card-divider{
  height: 1px;
  width: 100%;
  background: #ffffff;
  margin-top: 2px;
}
.killer-prediction-card-title{
  text-align: center;
  font-size: 17.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #ffffff;
  background: none;
  -webkit-text-fill-color: #ffffff;
  text-shadow: none;
  margin-top: -6px;
}
:is(body.overlay-theme-bars, .overlay-preview.overlay-theme-bars) .killer-prediction-card{
  gap: 4px;
  padding: 10px 12px;
}
:is(body.overlay-theme-bars, .overlay-preview.overlay-theme-bars) .killer-prediction-card::before{
  background: none;
  filter: none;
  opacity: 0;
}
:is(body.overlay-theme-bars, .overlay-preview.overlay-theme-bars) .killer-prediction-card :where(.killer-prediction-bars-heading,
.killer-prediction-bars-title,
.killer-prediction-bars-option,
.killer-prediction-bars-value,
.killer-prediction-bars-timer,
.killer-prediction-bars-percent,
.killer-prediction-bars-multiplier){
  -webkit-text-stroke: 0;
  text-shadow: 0 2px 0 rgba(0, 0, 0, 0.9), 0 3px 6px rgba(0, 0, 0, 0.85);
}
:is(body.overlay-theme-bars, .overlay-preview.overlay-theme-bars) .killer-prediction-bars-toplist .killer-prediction-card-list{
  --prediction-entry-height: 12px;
}
:is(body.overlay-theme-bars, .overlay-preview.overlay-theme-bars) .killer-prediction-bars-toplist .killer-prediction-card-entry{
  font-size: 10.5px;
}
:is(body.overlay-theme-bars, .overlay-preview.overlay-theme-bars) .killer-prediction-bars-toplist .killer-prediction-card-entry-name{
  font-size: 11px;
}
:is(body.overlay-theme-bars, .overlay-preview.overlay-theme-bars) .killer-prediction-bars-multiplier{
  display: none;
}
:is(body.overlay-theme-bars, .overlay-preview.overlay-theme-bars) .killer-prediction-bars-top{
  display: grid;
  margin-bottom: 2px;
}
:is(body.overlay-theme-bars, .overlay-preview.overlay-theme-bars) .killer-prediction-bars-heading{
  display: grid;
  margin-bottom: 1px;
  grid-template-columns: 1fr 1fr;
  grid-template-areas:
    "title title"
    "left right";
  row-gap: 4px;
}
:is(body.overlay-theme-bars, .overlay-preview.overlay-theme-bars) .killer-prediction-bars-title,
:is(body.overlay-theme-bars, .overlay-preview.overlay-theme-bars) .killer-prediction-bars-option{
  overflow: visible;
  text-overflow: clip;
}
:is(body.overlay-theme-bars, .overlay-preview.overlay-theme-bars) .killer-prediction-bars-title{
  justify-self: center;
  max-width: none;
  width: 100%;
}
:is(body.overlay-theme-bars, .overlay-preview.overlay-theme-bars) .killer-prediction-card-header,
:is(body.overlay-theme-bars, .overlay-preview.overlay-theme-bars) .killer-prediction-card-body{
  display: none;
}
:is(body.overlay-theme-bars, .overlay-preview.overlay-theme-bars) .killer-prediction-card-bar{
  height: 32px;
  background: transparent;
  border-radius: 12px;
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.25);
  overflow: visible;
}
:is(body.overlay-theme-bars, .overlay-preview.overlay-theme-bars) .killer-prediction-card-bar-fill-a{
  background: #3b7bf5;
  border-radius: 12px;
}
:is(body.overlay-theme-bars, .overlay-preview.overlay-theme-bars) .killer-prediction-card-bar-fill-b{
  background: #ff1aa7;
  border-radius: 12px;
}
:is(body.overlay-theme-bars, .overlay-preview.overlay-theme-bars) .killer-prediction-bars-percents{
  display: flex;
  padding: 0 12px;
}
:is(body.overlay-theme-bars, .overlay-preview.overlay-theme-bars) .killer-prediction-tops-panel{
  display: none;
}
.killer-prediction-tops{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 6px;
}
.killer-prediction-tops.is-hidden{
  display: none;
}
.killer-prediction-tops-heading{
  text-align: center;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.killer-prediction-tops-col{
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.killer-prediction-tops-title{
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.killer-prediction-tops-list{
  font-size: 11px;
  min-height: 14px;
}
.killer-prediction-tops-list-inner{
  --prediction-entry-height: 14px;
  display: flex;
  flex-direction: column;
  gap: 0;
  max-height: calc(var(--prediction-entry-height) * 10);
  overflow: hidden;
}
body.overlay-tops .killer-prediction-card-list,
body.overlay-tops .killer-prediction-tops-list-inner{
  max-height: none;
  overflow: visible;
  mask-image: none;
  -webkit-mask-image: none;
  animation: none;
}
.killer-prediction-tops-panel{
  position: fixed;
  right: 16px;
  bottom: calc(var(--killer-prediction-widget-bottom, 10px) + var(--killer-prediction-safe-bottom, 0px));
  width: min(360px, 80vw);
  background: transparent;
  border: none;
  border-radius: 0;
  z-index: 1200;
  pointer-events: none;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.killer-prediction-tops-panel.hidden{
  opacity: 0;
}
.killer-prediction-tops-panel.is-visible{
  opacity: 1;
  transform: translateY(0);
}
body:not(.killer-active) .killer-prediction-tops-panel{
  display: none;
}
.killer-prediction-tops-card{
  background: transparent;
  border: none;
  border-radius: 14px;
  padding: 14px 18px;
  color: #f5f7ff;
}


@keyframes prediction-list-scroll{
  0%{
    transform: translateY(0);
  }
  15%{
    transform: translateY(0);
  }
  85%{
    transform: translateY(calc(var(--prediction-scroll-lines, 0) * -1 * var(--prediction-entry-height)));
  }
  100%{
    transform: translateY(calc(var(--prediction-scroll-lines, 0) * -1 * var(--prediction-entry-height)));
  }
}

@keyframes prediction-list-scroll-down{
  0%{
    transform: translateY(0);
  }
  15%{
    transform: translateY(0);
  }
  85%{
    transform: translateY(calc(var(--prediction-scroll-lines, 0) * var(--prediction-entry-height)));
  }
  100%{
    transform: translateY(calc(var(--prediction-scroll-lines, 0) * var(--prediction-entry-height)));
  }
}

@keyframes prediction-value-pulse{
  0%{
    transform: scale(1);
  }
  40%{
    transform: scale(1.03);
  }
  100%{
    transform: scale(1);
  }
}

@keyframes prediction-roll-in{
  from{
    opacity: 0;
    transform: translateY(6px);
  }
  to{
    opacity: 1;
    transform: translateY(0);
  }
}


/* Overlay preview (other themes) */
:is(body.overlay-theme-default, .overlay-preview.overlay-theme-default) .killer-prediction-card :where(.killer-prediction-card-header,
.killer-prediction-card-option,
.killer-prediction-card-timer,
.killer-prediction-card-percent,
.killer-prediction-card-points,
.killer-prediction-card-multiplier,
.killer-prediction-card-users,
.killer-prediction-card-top,
.killer-prediction-card-title,
.killer-prediction-card-entry-name,
.killer-prediction-card-entry-points,
.killer-prediction-bars-percent,
.killer-prediction-bars-multiplier){
  -webkit-text-stroke: 0;
  text-shadow: 0 2px 0 rgba(0, 0, 0, 0.9), 0 3px 6px rgba(0, 0, 0, 0.85);
}
:is(body.overlay-theme-default, .overlay-preview.overlay-theme-default) .killer-prediction-bars-heading,
:is(body.overlay-theme-default, .overlay-preview.overlay-theme-default) .killer-prediction-bars-top{
  display: none;
}
:is(body.overlay-theme-default, .overlay-preview.overlay-theme-default) .killer-prediction-card{
  gap: 6px;
}
:is(body.overlay-theme-default, .overlay-preview.overlay-theme-default) .killer-prediction-card-header{
  margin-bottom: 2px;
}
:is(body.overlay-theme-default, .overlay-preview.overlay-theme-default) .killer-prediction-card-bar{
  height: 32px;
  background: transparent;
  border-radius: 12px;
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.25);
  overflow: visible;
}
:is(body.overlay-theme-default, .overlay-preview.overlay-theme-default) .killer-prediction-card-bar-fill-a{
  background: #3b7bf5;
  border-radius: 12px;
}
:is(body.overlay-theme-default, .overlay-preview.overlay-theme-default) .killer-prediction-card-bar-fill-b{
  background: #ff1aa7;
  border-radius: 12px;
}
:is(body.overlay-theme-default, .overlay-preview.overlay-theme-default) .killer-prediction-bars-percents{
  display: flex;
  padding: 0 12px;
}
:is(body.overlay-theme-default, .overlay-preview.overlay-theme-default) .killer-prediction-card-percent{
  display: none;
}
:is(body.overlay-theme-default, .overlay-preview.overlay-theme-default) .killer-prediction-card-metrics{
  gap: 2px;
}
:is(body.overlay-theme-default, .overlay-preview.overlay-theme-default) .killer-prediction-card-multiplier{
  display: none;
}
:is(body.overlay-theme-default, .overlay-preview.overlay-theme-default) .killer-prediction-card-top{
  margin-top: 2px;
}
:is(body.overlay-theme-default, .overlay-preview.overlay-theme-default) .killer-prediction-tops-panel{
  display: none;
}
:is(body.overlay-theme-leagueoflegends, .overlay-preview.overlay-theme-leagueoflegends){
  --lol-gold: #c8aa6e;
  --lol-gold-soft: rgba(200, 170, 110, 0.35);
  --lol-blue: #3b86ff;
  --lol-red: #ff4f8e;
  --lol-ink: rgba(8, 14, 22, 0.92);
}
:is(body.overlay-theme-leagueoflegends, .overlay-preview.overlay-theme-leagueoflegends) .killer-prediction-card{
  background: linear-gradient(180deg, rgba(8, 14, 22, 0.92), rgba(10, 18, 28, 0.7));
  border: 1px solid rgba(200, 170, 110, 0.6);
  border-radius: 16px;
  padding: 12px 14px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.55), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(6px) saturate(120%);
  -webkit-backdrop-filter: blur(6px) saturate(120%);
  font-family: "Cinzel", "Manrope", "Segoe UI", serif;
  gap: 6px;
}
:is(body.overlay-theme-leagueoflegends, .overlay-preview.overlay-theme-leagueoflegends) .killer-prediction-card::before{
  background: none;
  filter: none;
  opacity: 0;
}
:is(body.overlay-theme-leagueoflegends, .overlay-preview.overlay-theme-leagueoflegends) .killer-prediction-card :where(.killer-prediction-card-header,
.killer-prediction-card-option,
.killer-prediction-card-timer,
.killer-prediction-bars-title,
.killer-prediction-bars-option,
.killer-prediction-bars-value,
.killer-prediction-bars-timer,
.killer-prediction-bars-percent,
.killer-prediction-bars-multiplier,
.killer-prediction-card-percent,
.killer-prediction-card-points,
.killer-prediction-card-multiplier,
.killer-prediction-card-users,
.killer-prediction-card-top,
.killer-prediction-card-title,
.killer-prediction-card-entry-name,
.killer-prediction-card-entry-points){
  -webkit-text-stroke: 0;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
}
:is(body.overlay-theme-leagueoflegends, .overlay-preview.overlay-theme-leagueoflegends) .killer-prediction-bars-heading,
:is(body.overlay-theme-leagueoflegends, .overlay-preview.overlay-theme-leagueoflegends) .killer-prediction-bars-top{
  display: grid;
}
:is(body.overlay-theme-leagueoflegends, .overlay-preview.overlay-theme-leagueoflegends) .killer-prediction-bars-heading{
  grid-template-columns: 1fr 1fr;
  grid-template-areas:
    "title title"
    "left right";
  row-gap: 3px;
}
:is(body.overlay-theme-leagueoflegends, .overlay-preview.overlay-theme-leagueoflegends) .killer-prediction-card-header,
:is(body.overlay-theme-leagueoflegends, .overlay-preview.overlay-theme-leagueoflegends) .killer-prediction-card-body{
  display: none;
}
:is(body.overlay-theme-leagueoflegends, .overlay-preview.overlay-theme-leagueoflegends) .killer-prediction-bars-title{
  color: var(--lol-gold);
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: normal;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-align: center;
  justify-self: center;
}
:is(body.overlay-theme-leagueoflegends, .overlay-preview.overlay-theme-leagueoflegends) .killer-prediction-bars-option{
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
:is(body.overlay-theme-leagueoflegends, .overlay-preview.overlay-theme-leagueoflegends) .killer-prediction-bars-option-a{
  color: var(--lol-blue);
}
:is(body.overlay-theme-leagueoflegends, .overlay-preview.overlay-theme-leagueoflegends) .killer-prediction-bars-option-b{
  color: var(--lol-red);
}
:is(body.overlay-theme-leagueoflegends, .overlay-preview.overlay-theme-leagueoflegends) .killer-prediction-card-entry{
  color: #e6dcc1;
}
:is(body.overlay-theme-leagueoflegends, .overlay-preview.overlay-theme-leagueoflegends) .killer-prediction-card-entry-points{
  color: #c5b18a;
}
:is(body.overlay-theme-leagueoflegends, .overlay-preview.overlay-theme-leagueoflegends) .killer-prediction-bars-chip{
  background: rgba(8, 14, 22, 0.75);
  border: 1px solid var(--lol-gold-soft);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.45);
  color: #f2e6c8;
  font-size: 11px;
  gap: 5px;
  padding: 3px 6px;
}
:is(body.overlay-theme-leagueoflegends, .overlay-preview.overlay-theme-leagueoflegends) .killer-prediction-bars-icon{
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.6));
}
:is(body.overlay-theme-leagueoflegends, .overlay-preview.overlay-theme-leagueoflegends) .killer-prediction-bars-timer{
  color: #f2e6c8;
  font-size: 13px;
  letter-spacing: 0.06em;
}
:is(body.overlay-theme-leagueoflegends, .overlay-preview.overlay-theme-leagueoflegends) .killer-prediction-card-bar{
  height: 30px;
  background: rgba(200, 170, 110, 0.12);
  border-radius: 12px;
  box-shadow: inset 0 0 0 1px rgba(200, 170, 110, 0.35);
}
:is(body.overlay-theme-leagueoflegends, .overlay-preview.overlay-theme-leagueoflegends) .killer-prediction-card-bar-fill-a{
  background: linear-gradient(90deg, rgba(45, 111, 220, 0.95), rgba(79, 155, 255, 0.8));
  border-radius: 12px;
}
:is(body.overlay-theme-leagueoflegends, .overlay-preview.overlay-theme-leagueoflegends) .killer-prediction-card-bar-fill-b{
  background: linear-gradient(270deg, rgba(218, 63, 116, 0.95), rgba(255, 104, 173, 0.8));
  border-radius: 12px;
}
:is(body.overlay-theme-leagueoflegends, .overlay-preview.overlay-theme-leagueoflegends) .killer-prediction-bars-percents{
  display: flex;
  padding: 0 12px;
}
:is(body.overlay-theme-leagueoflegends, .overlay-preview.overlay-theme-leagueoflegends) .killer-prediction-bars-percent{
  color: #f7efd6;
  font-size: 16px;
  font-weight: 800;
}
:is(body.overlay-theme-leagueoflegends, .overlay-preview.overlay-theme-leagueoflegends) .killer-prediction-bars-multiplier{
  color: #d7c19b;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
:is(body.overlay-theme-leagueoflegends, .overlay-preview.overlay-theme-leagueoflegends) .killer-prediction-bars-toplist .killer-prediction-card-list-inner{
  --prediction-entry-height: 11px;
  max-height: calc(var(--prediction-entry-height) * 2);
}
:is(body.overlay-theme-leagueoflegends, .overlay-preview.overlay-theme-leagueoflegends) .killer-prediction-bars-toplist .killer-prediction-card-entry{
  font-size: 9.5px;
  justify-content: flex-start;
  gap: 6px;
  width: auto;
}
:is(body.overlay-theme-leagueoflegends, .overlay-preview.overlay-theme-leagueoflegends) .killer-prediction-bars-toplist .killer-prediction-card-entry-name{
  font-size: 10px;
  flex: initial;
}
:is(body.overlay-theme-leagueoflegends, .overlay-preview.overlay-theme-leagueoflegends) .killer-prediction-bars-toplist{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
:is(body.overlay-theme-leagueoflegends, .overlay-preview.overlay-theme-leagueoflegends) .killer-prediction-bars-col-b .killer-prediction-bars-toplist{
  align-items: flex-end;
}
:is(body.overlay-theme-leagueoflegends, .overlay-preview.overlay-theme-leagueoflegends) .killer-prediction-bars-col-b .killer-prediction-card-entry-name{
  text-align: right;
}
:is(body.overlay-theme-leagueoflegends, .overlay-preview.overlay-theme-leagueoflegends) .killer-prediction-tops-panel{
  display: none;
}
:is(body.overlay-theme-deadbydaylight2, .overlay-preview.overlay-theme-deadbydaylight2){
  --dbd2-blue: #5bb7ff;
  --dbd2-blue-soft: rgba(91, 183, 255, 0.35);
  --dbd2-red: #ff4f63;
  --dbd2-red-soft: rgba(255, 79, 99, 0.35);
  --dbd2-gold: #e4d2b6;
  --dbd2-gold-dark: #c3b08c;
  --dbd2-green: #7fd099;
  --dbd2-ember: rgba(138, 40, 36, 0.8);
}
:is(body.overlay-theme-deadbydaylight2, .overlay-preview.overlay-theme-deadbydaylight2) .killer-prediction-card{
  background:
    radial-gradient(circle at 30% 20%, rgba(120, 140, 160, 0.22), transparent 55%),
    radial-gradient(circle at 70% 15%, rgba(140, 40, 40, 0.2), transparent 50%),
    linear-gradient(180deg, rgba(10, 12, 16, 0.95), rgba(18, 20, 26, 0.88));
  border: 1px solid rgba(140, 40, 40, 0.7);
  border-radius: 16px;
  padding: 12px 14px;
  box-shadow:
    0 12px 26px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(90, 20, 20, 0.9),
    0 0 18px rgba(110, 25, 25, 0.4);
  font-family: "Bebas Neue", "Oswald", "Manrope", sans-serif;
  letter-spacing: 0.06em;
  gap: 6px;
}
:is(body.overlay-theme-deadbydaylight2, .overlay-preview.overlay-theme-deadbydaylight2) .killer-prediction-card::before{
  background:
    repeating-linear-gradient(120deg, rgba(255, 255, 255, 0.04) 0 1px, rgba(0, 0, 0, 0.04) 1px 2px);
  opacity: 0.35;
  filter: contrast(1.1) brightness(0.9);
}
:is(body.overlay-theme-deadbydaylight2, .overlay-preview.overlay-theme-deadbydaylight2) .killer-prediction-card::after{
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 18px;
  border: 1px solid rgba(150, 40, 40, 0.75);
  box-shadow: inset 0 0 12px rgba(120, 25, 25, 0.7);
  pointer-events: none;
  z-index: 0;
}
:is(body.overlay-theme-deadbydaylight2, .overlay-preview.overlay-theme-deadbydaylight2) .killer-prediction-card > *{
  position: relative;
  z-index: 1;
}
:is(body.overlay-theme-deadbydaylight2, .overlay-preview.overlay-theme-deadbydaylight2) .killer-prediction-card :where(.killer-prediction-card-header,
.killer-prediction-card-option,
.killer-prediction-card-timer,
.killer-prediction-bars-title,
.killer-prediction-bars-option,
.killer-prediction-bars-value,
.killer-prediction-bars-timer,
.killer-prediction-bars-percent,
.killer-prediction-bars-multiplier,
.killer-prediction-card-percent,
.killer-prediction-card-points,
.killer-prediction-card-multiplier,
.killer-prediction-card-users,
.killer-prediction-card-top,
.killer-prediction-card-title,
.killer-prediction-card-entry-name,
.killer-prediction-card-entry-points){
  -webkit-text-stroke: 0;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
}
:is(body.overlay-theme-deadbydaylight2, .overlay-preview.overlay-theme-deadbydaylight2) .killer-prediction-bars-heading,
:is(body.overlay-theme-deadbydaylight2, .overlay-preview.overlay-theme-deadbydaylight2) .killer-prediction-bars-top{
  display: grid;
}
:is(body.overlay-theme-deadbydaylight2, .overlay-preview.overlay-theme-deadbydaylight2) .killer-prediction-bars-heading{
  grid-template-columns: 1fr 1fr;
  grid-template-areas:
    "title title"
    "left right";
  row-gap: 4px;
  align-items: end;
  margin-bottom: -4px;
}
:is(body.overlay-theme-deadbydaylight2, .overlay-preview.overlay-theme-deadbydaylight2) .killer-prediction-bars-title{
  color: var(--dbd2-gold-dark);
  font-size: 15px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  width: 100%;
  justify-self: center;
  white-space: normal;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
:is(body.overlay-theme-deadbydaylight2, .overlay-preview.overlay-theme-deadbydaylight2) .killer-prediction-bars-option{
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: -2px;
  max-width: 90%;
}
:is(body.overlay-theme-deadbydaylight2, .overlay-preview.overlay-theme-deadbydaylight2) .killer-prediction-bars-option-a{
  color: var(--dbd2-blue);
  justify-self: start;
  text-align: left;
  padding-right: 18px;
}
:is(body.overlay-theme-deadbydaylight2, .overlay-preview.overlay-theme-deadbydaylight2) .killer-prediction-bars-option-a::before{
  content: "";
  width: 16px;
  height: 16px;
  background: url("assets/killperks/supervivientes.png") center/contain no-repeat;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.6));
}
:is(body.overlay-theme-deadbydaylight2, .overlay-preview.overlay-theme-deadbydaylight2) .killer-prediction-bars-option-b{
  color: var(--dbd2-red);
  justify-content: flex-end;
  justify-self: end;
  text-align: right;
  padding-left: 18px;
}
:is(body.overlay-theme-deadbydaylight2, .overlay-preview.overlay-theme-deadbydaylight2) .killer-prediction-bars-option-b::after{
  content: "";
  width: 16px;
  height: 16px;
  background: url("assets/killperks/cuchillo.png") center/contain no-repeat;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.6));
}
:is(body.overlay-theme-deadbydaylight2, .overlay-preview.overlay-theme-deadbydaylight2) .killer-prediction-bars-toplist{
  min-height: 12px;
}
:is(body.overlay-theme-deadbydaylight2, .overlay-preview.overlay-theme-deadbydaylight2) .killer-prediction-card.is-resolved .killer-prediction-bars-toplist{
  display: none;
}
:is(body.overlay-theme-deadbydaylight2, .overlay-preview.overlay-theme-deadbydaylight2) .killer-prediction-bars-toplist .killer-prediction-card-list-inner{
  --prediction-entry-height: 11px;
  max-height: calc(var(--prediction-entry-height) * 3);
}
:is(body.overlay-theme-deadbydaylight2, .overlay-preview.overlay-theme-deadbydaylight2) .killer-prediction-bars-toplist .killer-prediction-card-entry{
  font-size: 10px;
  font-weight: 600;
  justify-content: flex-start;
  gap: 6px;
}
:is(body.overlay-theme-deadbydaylight2, .overlay-preview.overlay-theme-deadbydaylight2) .killer-prediction-bars-toplist .killer-prediction-card-entry-name{
  font-size: 10.5px;
  flex: initial;
}
:is(body.overlay-theme-deadbydaylight2, .overlay-preview.overlay-theme-deadbydaylight2) .killer-prediction-bars-col-b .killer-prediction-card-entry{
  justify-content: flex-end;
}
:is(body.overlay-theme-deadbydaylight2, .overlay-preview.overlay-theme-deadbydaylight2) .killer-prediction-bars-col-b .killer-prediction-card-entry-name{
  text-align: right;
}
:is(body.overlay-theme-deadbydaylight2, .overlay-preview.overlay-theme-deadbydaylight2) .killer-prediction-card-header,
:is(body.overlay-theme-deadbydaylight2, .overlay-preview.overlay-theme-deadbydaylight2) .killer-prediction-card-body{
  display: none;
}
:is(body.overlay-theme-deadbydaylight2, .overlay-preview.overlay-theme-deadbydaylight2) .killer-prediction-card.is-resolved .killer-prediction-card-body{
  display: block;
}
:is(body.overlay-theme-deadbydaylight2, .overlay-preview.overlay-theme-deadbydaylight2) .killer-prediction-card-divider,
:is(body.overlay-theme-deadbydaylight2, .overlay-preview.overlay-theme-deadbydaylight2) .killer-prediction-card-title{
  display: none;
}
:is(body.overlay-theme-deadbydaylight2, .overlay-preview.overlay-theme-deadbydaylight2) .killer-prediction-card-main{
  display: none;
}
:is(body.overlay-theme-deadbydaylight2, .overlay-preview.overlay-theme-deadbydaylight2) .killer-prediction-card-stats{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 6px;
}
:is(body.overlay-theme-deadbydaylight2, .overlay-preview.overlay-theme-deadbydaylight2) .killer-prediction-card-stats::after{
  display: none;
}
:is(body.overlay-theme-deadbydaylight2, .overlay-preview.overlay-theme-deadbydaylight2) .killer-prediction-card-top{
  display: block;
  font-size: 12px;
}
:is(body.overlay-theme-deadbydaylight2, .overlay-preview.overlay-theme-deadbydaylight2) .killer-prediction-card-entry{
  font-size: 12px;
  font-weight: 600;
  gap: 8px;
}
:is(body.overlay-theme-deadbydaylight2, .overlay-preview.overlay-theme-deadbydaylight2) .killer-prediction-card-entry-name{
  font-size: 13px;
}
:is(body.overlay-theme-deadbydaylight2, .overlay-preview.overlay-theme-deadbydaylight2) .killer-prediction-card-entry-points.is-win{
  color: var(--dbd2-green);
}
:is(body.overlay-theme-deadbydaylight2, .overlay-preview.overlay-theme-deadbydaylight2) .killer-prediction-card-entry-points.is-lose{
  color: #ff7a6b;
}
:is(body.overlay-theme-deadbydaylight2, .overlay-preview.overlay-theme-deadbydaylight2) .killer-prediction-bars-top{
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 6px;
  margin-top: -6px;
}
:is(body.overlay-theme-deadbydaylight2, .overlay-preview.overlay-theme-deadbydaylight2) .killer-prediction-bars-chip{
  background: rgba(10, 12, 16, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.6);
  color: #dfe7ef;
  font-size: 12px;
  padding: 3px 6px;
  gap: 5px;
  position: relative;
}
:is(body.overlay-theme-deadbydaylight2, .overlay-preview.overlay-theme-deadbydaylight2) .killer-prediction-card.is-resolved.winner-a .killer-prediction-bars-chip-a::after,
:is(body.overlay-theme-deadbydaylight2, .overlay-preview.overlay-theme-deadbydaylight2) .killer-prediction-card.is-resolved.winner-b .killer-prediction-bars-chip-b::after{
  content: "GANADOR";
  margin-left: 8px;
  color: #f5da8a;
  font-size: 11px;
  letter-spacing: 0.12em;
}
:is(body.overlay-theme-deadbydaylight2, .overlay-preview.overlay-theme-deadbydaylight2) .killer-prediction-bars-timer{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  color: #f2e7d2;
  font-size: 18px;
  letter-spacing: 0.08em;
}
:is(body.overlay-theme-deadbydaylight2, .overlay-preview.overlay-theme-deadbydaylight2) .killer-prediction-bars-timer::after{
  content: "ABIERTA";
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--dbd2-green);
}
:is(body.overlay-theme-deadbydaylight2, .overlay-preview.overlay-theme-deadbydaylight2) .killer-prediction-card.is-locked .killer-prediction-bars-timer::after{
  content: "";
}
:is(body.overlay-theme-deadbydaylight2, .overlay-preview.overlay-theme-deadbydaylight2) .killer-prediction-card.is-resolved .killer-prediction-bars-timer::after{
  content: "RESUELTA";
  color: #f5da8a;
}
:is(body.overlay-theme-deadbydaylight2, .overlay-preview.overlay-theme-deadbydaylight2) .killer-prediction-card.is-canceled .killer-prediction-bars-timer::after{
  content: "CANCELADA";
  color: rgba(255, 255, 255, 0.6);
}
:is(body.overlay-theme-deadbydaylight2, .overlay-preview.overlay-theme-deadbydaylight2) .killer-prediction-card-bar{
  height: 30px;
  background: rgba(10, 12, 16, 0.6);
  border-radius: 10px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}
:is(body.overlay-theme-deadbydaylight2, .overlay-preview.overlay-theme-deadbydaylight2) .killer-prediction-card-bar-fill-a{
  background-image:
    linear-gradient(90deg, rgba(84, 188, 255, 0.95), rgba(34, 111, 170, 0.85)),
    repeating-linear-gradient(120deg, rgba(255, 255, 255, 0.1) 0 6px, rgba(255, 255, 255, 0) 6px 12px);
  border-radius: 10px;
}
:is(body.overlay-theme-deadbydaylight2, .overlay-preview.overlay-theme-deadbydaylight2) .killer-prediction-card-bar-fill-b{
  background-image:
    linear-gradient(270deg, rgba(242, 90, 90, 0.95), rgba(148, 35, 35, 0.85)),
    repeating-linear-gradient(60deg, rgba(0, 0, 0, 0.2) 0 6px, rgba(0, 0, 0, 0) 6px 12px);
  border-radius: 10px;
}
:is(body.overlay-theme-deadbydaylight2, .overlay-preview.overlay-theme-deadbydaylight2) .killer-prediction-bars-percents{
  display: flex;
  padding: 0 12px;
}
:is(body.overlay-theme-deadbydaylight2, .overlay-preview.overlay-theme-deadbydaylight2) .killer-prediction-bars-percent{
  font-size: 22px;
  font-weight: 700;
  color: #f1e6d1;
}
:is(body.overlay-theme-deadbydaylight2, .overlay-preview.overlay-theme-deadbydaylight2) .killer-prediction-bars-multiplier{
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
}
:is(body.overlay-theme-deadbydaylight2, .overlay-preview.overlay-theme-deadbydaylight2) .killer-prediction-card.is-resolved.winner-a .killer-prediction-bars-chip-b,
:is(body.overlay-theme-deadbydaylight2, .overlay-preview.overlay-theme-deadbydaylight2) .killer-prediction-card.is-resolved.winner-a .killer-prediction-bars-percent-b,
:is(body.overlay-theme-deadbydaylight2, .overlay-preview.overlay-theme-deadbydaylight2) .killer-prediction-card.is-resolved.winner-a .killer-prediction-bars-option-b,
:is(body.overlay-theme-deadbydaylight2, .overlay-preview.overlay-theme-deadbydaylight2) .killer-prediction-card.is-resolved.winner-a .killer-prediction-card-bar-fill-b{
  opacity: 0.45;
  filter: saturate(0.45);
}
:is(body.overlay-theme-deadbydaylight2, .overlay-preview.overlay-theme-deadbydaylight2) .killer-prediction-card.is-resolved.winner-b .killer-prediction-bars-chip-a,
:is(body.overlay-theme-deadbydaylight2, .overlay-preview.overlay-theme-deadbydaylight2) .killer-prediction-card.is-resolved.winner-b .killer-prediction-bars-percent-a,
:is(body.overlay-theme-deadbydaylight2, .overlay-preview.overlay-theme-deadbydaylight2) .killer-prediction-card.is-resolved.winner-b .killer-prediction-bars-option-a,
:is(body.overlay-theme-deadbydaylight2, .overlay-preview.overlay-theme-deadbydaylight2) .killer-prediction-card.is-resolved.winner-b .killer-prediction-card-bar-fill-a{
  opacity: 0.45;
  filter: saturate(0.45);
}
:is(body.overlay-theme-deadbydaylight2, .overlay-preview.overlay-theme-deadbydaylight2) .killer-prediction-tops-panel{
  display: none;
}
