:root {
  --ink: #131014;
  --ink-2: #1d191d;
  --ink-3: #2a2429;
  --paper: #f3ede2;
  --paper-2: #e9e0d1;
  --paper-3: #d9cfbd;
  --red: #d63b2a;
  --red-deep: #a9281d;
  --gold: #c8a15b;
  --gold-soft: #e4c58d;
  --mint: #6f9a8d;
  --text: #241f22;
  --text-soft: #6b6366;
  --line: rgba(255, 255, 255, 0.14);
  --line-dark: rgba(36, 31, 34, 0.14);
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --shadow-1: 0 10px 30px rgba(19, 16, 20, 0.22);
  --shadow-2: 0 18px 50px rgba(19, 16, 20, 0.32);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-body);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

button,
a {
  font-family: inherit;
}

a {
  color: inherit;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

.trust-strip {
  overflow: hidden;
  background: var(--red);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 8px 0;
  white-space: nowrap;
}

.trust-track {
  display: flex;
  width: max-content;
  animation: trust-scroll 28s linear infinite;
}

.trust-group {
  display: flex;
  gap: 22px;
  padding-right: 22px;
  align-items: center;
}

@keyframes trust-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (hover: hover) {
  .trust-strip:hover .trust-track {
    animation-play-state: paused;
  }
}

@media (prefers-reduced-motion: reduce) {
  .trust-track {
    animation: none;
  }
}

.trust-strip span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  flex: 0 0 auto;
}

.trust-strip span::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #ffe2c9;
  display: inline-block;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(19, 16, 20, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 11px 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  flex: 0 0 auto;
  min-width: 0;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: var(--paper);
  background: var(--red);
  border: 2px solid rgba(255, 255, 255, 0.16);
  flex: 0 0 auto;
}

.brand-mark svg {
  width: 22px;
  height: 22px;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.28rem;
  font-weight: 700;
  color: var(--paper);
  white-space: nowrap;
}

.brand-name em {
  font-style: normal;
  color: var(--gold-soft);
}

.lang-switch {
  display: inline-flex;
  gap: 2px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 3px;
  flex: 0 0 auto;
}

.lang-btn {
  appearance: none;
  border: 0;
  background: transparent;
  color: rgba(243, 237, 226, 0.68);
  font-size: 11px;
  font-weight: 700;
  padding: 6px 9px;
  border-radius: 6px;
  cursor: pointer;
  min-width: 34px;
}

.lang-btn.is-active {
  background: var(--red);
  color: #fff;
}

.official-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: var(--paper);
  font-size: 12px;
  font-weight: 600;
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  white-space: nowrap;
  flex: 0 0 auto;
}

.official-link svg {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
}

@media (max-width: 639px) {
  .topbar-inner {
    flex-wrap: wrap;
    row-gap: 8px;
  }

  .official-link {
    order: 3;
    width: 100%;
    justify-content: center;
    margin-top: 2px;
  }
}

.hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--ink);
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  opacity: 0.62;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(19, 16, 20, 0.12) 0%, rgba(19, 16, 20, 0.55) 52%, rgba(19, 16, 20, 0.96) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 150px;
  padding-bottom: 44px;
}

.hero-eyebrow {
  margin: 0 0 12px;
  color: var(--gold-soft);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero h1 {
  margin: 0;
  max-width: 780px;
  font-family: var(--font-display);
  font-size: clamp(2.35rem, 10vw, 4.6rem);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: 0;
  color: #fff;
  text-shadow: 0 4px 28px rgba(0, 0, 0, 0.5);
}

.hero-sub {
  margin: 16px 0 0;
  max-width: 620px;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 50px;
  padding: 13px 20px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
  text-align: center;
}

.btn svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.btn-primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 10px 24px rgba(169, 40, 29, 0.38);
}

.btn-primary:hover {
  background: #e64734;
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(169, 40, 29, 0.45);
}

.btn-ghost {
  background: rgba(243, 237, 226, 0.08);
  border-color: rgba(243, 237, 226, 0.38);
  color: var(--paper);
}

.btn-ghost:hover {
  background: rgba(243, 237, 226, 0.16);
  transform: translateY(-1px);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 30px;
  max-width: 620px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.14);
}

.hero-stat {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 68px;
  padding: 10px 14px;
  background: rgba(19, 16, 20, 0.76);
}

.hero-stat strong {
  font-size: 15px;
  color: #fff;
  line-height: 1.25;
}

.hero-stat span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.35;
}

.hero-cards {
  display: none;
}

.featured {
  background: var(--paper);
  color: var(--text);
  padding: 64px 0;
}

.featured-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.12fr);
  gap: 40px;
  align-items: center;
}

.featured-media {
  position: relative;
  background: var(--ink);
  border-radius: 8px;
  padding: 18px;
  box-shadow: var(--shadow-1);
}

.featured-media img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 6px;
}

.featured-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  background: var(--red);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 7px 10px;
  border-radius: 6px;
}

.featured-price {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 2;
  background: rgba(19, 16, 20, 0.9);
  color: var(--gold-soft);
  font-size: 14px;
  font-weight: 800;
  padding: 8px 12px;
  border-radius: 6px;
}

.featured-copy h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 3rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0;
}

.featured-line {
  margin: 12px 0 0;
  color: var(--red-deep);
  font-size: 15px;
  font-weight: 800;
}

.featured-desc {
  margin: 10px 0 0;
  max-width: 540px;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.65;
}

.featured-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.featured-tags span {
  padding: 6px 11px;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  background: var(--paper-2);
  color: var(--text);
  font-size: 12px;
  font-weight: 600;
}

.featured-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.featured .btn-ghost {
  background: transparent;
  border-color: rgba(36, 31, 34, 0.35);
  color: var(--text);
}

.featured .btn-ghost:hover {
  background: var(--paper-2);
}

@media (max-width: 820px) {
  .featured-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
  }

  .featured-media {
    max-width: 420px;
  }
}

.section {
  padding: 72px 0;
}

.categories {
  background: var(--paper);
  color: var(--text);
}

.section-head {
  max-width: 720px;
  margin-bottom: 34px;
}

.section-eyebrow {
  margin: 0 0 10px;
  color: var(--red-deep);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.section-head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 7vw, 3rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: 0;
}

.section-sub {
  margin: 14px 0 0;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.65;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.category-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 190px;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  text-decoration: none;
  color: var(--text);
  transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease;
}

.category-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-1);
  border-color: rgba(214, 59, 42, 0.4);
}

.category-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: var(--ink);
  color: var(--gold-soft);
  flex: 0 0 auto;
}

.category-icon svg {
  width: 24px;
  height: 24px;
}

.category-card strong {
  font-size: 16px;
  line-height: 1.3;
}

.category-card > span:last-child {
  font-size: 12px;
  line-height: 1.5;
  color: var(--text-soft);
}

.why {
  background: var(--ink-2);
  color: var(--paper);
  border-top: 1px solid var(--line);
}

.why .section-sub {
  color: rgba(243, 237, 226, 0.68);
}

.why .section-eyebrow {
  color: var(--gold-soft);
}

.fact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.fact-card {
  padding: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.fact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: var(--red);
  color: #fff;
  margin-bottom: 14px;
}

.fact-icon svg {
  width: 24px;
  height: 24px;
}

.fact-card h3 {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: 19px;
  line-height: 1.25;
  letter-spacing: 0;
}

.fact-card p {
  margin: 0;
  color: rgba(243, 237, 226, 0.68);
  font-size: 13px;
  line-height: 1.6;
}

.final-cta {
  background: linear-gradient(135deg, var(--red-deep) 0%, var(--red) 55%, #e06a3c 100%);
  color: #fff;
}

.final-cta-inner {
  text-align: center;
}

.final-cta .section-eyebrow {
  color: #ffe2c9;
}

.final-cta h2 {
  margin: 0 auto;
  max-width: 680px;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 7vw, 3rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: 0;
}

.final-cta .section-sub {
  color: rgba(255, 255, 255, 0.86);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.final-actions {
  margin-top: 24px;
}

.final-cta .btn-primary {
  background: var(--ink);
  box-shadow: 0 14px 32px rgba(19, 16, 20, 0.32);
}

.final-cta .btn-primary:hover {
  background: #2b2228;
}

.footer {
  background: var(--ink);
  color: rgba(243, 237, 226, 0.72);
  padding: 44px 0 92px;
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.footer-brand {
  color: var(--paper);
}

.footer p {
  margin: 0;
  max-width: 560px;
  font-size: 12px;
  line-height: 1.6;
}

.footer-link {
  color: var(--gold-soft);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.quiz-section,
.reveal-section,
.result-section {
  background: var(--ink);
  color: var(--paper);
  padding: 56px 0 76px;
}

.quiz-shell {
  max-width: 860px;
}

.quiz-head {
  margin-bottom: 26px;
}

.quiz-progress-copy {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.quiz-step {
  color: var(--gold-soft);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.quiz-label {
  color: rgba(243, 237, 226, 0.6);
  font-size: 12px;
  font-weight: 600;
}

.progress-track {
  height: 4px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  overflow: hidden;
}

.progress-fill {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--red), var(--gold));
  border-radius: 999px;
  transition: width 0.35s ease;
}

.question-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 6.5vw, 2.6rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: 0;
}

.question-hint {
  margin: 10px 0 0;
  color: rgba(243, 237, 226, 0.68);
  font-size: 14px;
}

.option-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 24px;
}

.option-card {
  appearance: none;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--paper);
  text-align: left;
  cursor: pointer;
  transition: transform 0.16s ease, border-color 0.16s ease, background 0.16s ease;
}

.option-card:hover,
.option-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(200, 161, 91, 0.65);
  outline: none;
}

.option-card.is-selected {
  border-color: var(--red);
  background: var(--ink-3);
}

.option-media {
  display: block;
  aspect-ratio: 1 / 1;
  width: 100%;
  overflow: hidden;
  background: #000;
}

.option-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.option-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 11px 12px 13px;
}

.option-label {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
}

.option-sub {
  font-size: 11px;
  line-height: 1.4;
  color: rgba(243, 237, 226, 0.58);
}

.quiz-nav {
  margin-top: 22px;
}

.quiz-back {
  appearance: none;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: transparent;
  border: 0;
  color: rgba(243, 237, 226, 0.72);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  padding: 8px 0;
}

.quiz-back svg {
  width: 17px;
  height: 17px;
}

.reveal-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 420px;
  text-align: center;
}

.reveal-kicker {
  margin: 26px 0 8px;
  color: var(--gold-soft);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.reveal-inner h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 7vw, 2.8rem);
  font-weight: 700;
  letter-spacing: 0;
}

.shuffle-cards {
  position: relative;
  width: 160px;
  height: 120px;
}

.shuffle-card {
  position: absolute;
  top: 0;
  left: 50%;
  width: 84px;
  height: 118px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.12) 0 12%, transparent 13%),
    linear-gradient(145deg, var(--red) 0%, var(--red-deep) 100%);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
  animation: shuffle 1.1s ease-in-out infinite alternate;
}

.shuffle-card::after {
  content: "A";
  position: absolute;
  inset: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 5px;
}

.shuffle-card--a {
  transform: translateX(-54%) rotate(-16deg);
  animation-delay: 0s;
}

.shuffle-card--b {
  transform: translateX(-50%) rotate(-6deg);
  animation-delay: 0.12s;
  background: linear-gradient(145deg, var(--gold), #8d6c33);
}

.shuffle-card--c {
  transform: translateX(-46%) rotate(5deg);
  animation-delay: 0.24s;
  background: linear-gradient(145deg, var(--ink-3), #000);
}

.shuffle-card--d {
  transform: translateX(-42%) rotate(15deg);
  animation-delay: 0.36s;
  background: linear-gradient(145deg, #7b4a5e, #4b2837);
}

@keyframes shuffle {
  0% {
    margin-top: 0;
    margin-left: 0;
  }
  100% {
    margin-top: -14px;
    margin-left: 8px;
  }
}

.result-shell {
  max-width: 920px;
}

.result-head {
  text-align: center;
  margin-bottom: 30px;
}

.result-badge {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--gold-soft);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.result-head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 7vw, 3rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: 0;
}

.result-sub {
  margin: 12px auto 0;
  max-width: 620px;
  color: rgba(243, 237, 226, 0.7);
  font-size: 14px;
  line-height: 1.6;
}

.match-stage {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
  padding: 22px;
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: 10px;
}

.flip-card {
  perspective: 1200px;
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
  cursor: pointer;
}

.flip-inner {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4.15;
  transform-style: preserve-3d;
  transition: transform 0.65s cubic-bezier(0.2, 0.72, 0.25, 1);
}

.flip-card.is-flipped .flip-inner {
  transform: rotateY(180deg);
}

.flip-front,
.flip-back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-2);
}

.flip-front {
  background: #000;
}

.flip-front img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.flip-tag {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  padding: 8px 10px;
  background: rgba(19, 16, 20, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 7px;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
}

.flip-back {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background:
    radial-gradient(circle at 50% 40%, rgba(255, 255, 255, 0.08) 0 16%, transparent 17%),
    linear-gradient(150deg, var(--ink-3), #0a080b 72%);
  color: var(--paper);
  transform: rotateY(180deg);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.back-ace {
  font-family: var(--font-display);
  font-size: 74px;
  font-weight: 700;
  line-height: 1;
  color: var(--gold-soft);
}

.back-label {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(243, 237, 226, 0.76);
}

.back-mark {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  background: var(--paper);
}

.back-mark svg {
  width: 26px;
  height: 26px;
}

.match-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.deck-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: #fff;
}

.deck-desc {
  margin: 10px 0 0;
  color: rgba(243, 237, 226, 0.7);
  font-size: 14px;
  line-height: 1.65;
}

.deck-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 7px;
  margin: 16px 0;
}

.deck-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: rgba(243, 237, 226, 0.88);
  font-size: 11px;
  font-weight: 600;
}

.btn-wide {
  width: 100%;
}

.text-btn {
  appearance: none;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 14px;
  padding: 8px 4px;
  background: transparent;
  border: 0;
  color: rgba(243, 237, 226, 0.68);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}

.text-btn svg {
  width: 17px;
  height: 17px;
}

.also-head {
  margin: 40px 0 18px;
  text-align: center;
}

.also-head .section-eyebrow {
  color: var(--gold-soft);
}

.also-head h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0;
}

.deck-strip {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 6px;
}

.deck-strip::-webkit-scrollbar {
  display: none;
}

.deck-strip-card {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 260px;
  flex: 0 0 260px;
  padding: 10px;
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: 8px;
  text-decoration: none;
  color: var(--paper);
  transition: border-color 0.16s ease, transform 0.16s ease;
}

.deck-strip-card:hover {
  border-color: rgba(200, 161, 91, 0.6);
  transform: translateY(-2px);
}

.deck-strip-card img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 6px;
  flex: 0 0 auto;
}

.deck-strip-body {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.deck-strip-body strong {
  font-size: 13px;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.deck-strip-body span {
  font-size: 11px;
  line-height: 1.4;
  color: rgba(243, 237, 226, 0.58);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  background: rgba(19, 16, 20, 0.92);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
}

.sticky-cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: 100%;
  min-height: 48px;
  padding: 12px 16px;
  border-radius: 8px;
  background: var(--red);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(169, 40, 29, 0.4);
}

.sticky-cta svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

body.has-sticky {
  padding-bottom: 76px;
}

@media (min-width: 640px) {
  .trust-strip {
    justify-content: center;
    font-size: 12px;
  }

  .option-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .option-media {
    aspect-ratio: 4 / 3;
  }

  .category-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .fact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .match-stage {
    grid-template-columns: 300px minmax(0, 1fr);
    align-items: center;
    text-align: left;
  }

  .match-info {
    align-items: flex-start;
    text-align: left;
  }

  .deck-meta {
    justify-content: flex-start;
  }

  .btn-wide {
    width: auto;
    max-width: 360px;
  }
}

@media (min-width: 900px) {
  .hero {
    min-height: 680px;
  }

  .hero-content {
    padding-top: 180px;
    padding-bottom: 58px;
  }

  .hero-stats {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .hero-cards {
    display: block;
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
  }

  .hero-card {
    position: absolute;
    width: 150px;
    height: 210px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-2);
    border: 1px solid rgba(255, 255, 255, 0.22);
    animation: floatCard 5s ease-in-out infinite;
  }

  .hero-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .hero-card--1 {
    right: 7%;
    top: 19%;
    transform: rotate(7deg);
  }

  .hero-card--2 {
    right: 2%;
    top: 42%;
    width: 130px;
    height: 182px;
    transform: rotate(-8deg);
    animation-delay: 1.2s;
  }

  .hero-card--3 {
    right: 19%;
    top: 48%;
    width: 118px;
    height: 165px;
    transform: rotate(13deg);
    animation-delay: 2.1s;
  }

  .hero-card--4 {
    right: 13%;
    top: 7%;
    width: 122px;
    height: 170px;
    transform: rotate(-13deg);
    animation-delay: 3.1s;
  }

  @keyframes floatCard {
    0%,
    100% {
      margin-top: 0;
    }
    50% {
      margin-top: -10px;
    }
  }
}

@media (max-width: 359px) {
  .topbar-inner {
    padding-left: 10px;
    padding-right: 10px;
    gap: 8px;
  }

  .official-link span {
    display: none;
  }

  .official-link {
    padding: 8px 10px;
  }

  .brand-name {
    font-size: 1.12rem;
  }

  .lang-btn {
    padding: 6px 7px;
    min-width: 30px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
