/* ─────────────────────────────────────────────
   CryptoPlayHub — editorial / BigWinBoard-style
   ───────────────────────────────────────────── */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
  /* surfaces */
  --bg: #FFFFFF;
  --bg-soft: #F6F7FA;
  --bg-alt: #F1F3F7;
  --card: #FFFFFF;
  --card-soft: #FAFBFC;
  --border: #E4E7EC;
  --border-strong: #CBD2DC;

  /* text */
  --text: #0F172A;
  --text-soft: #1F2937;
  --text-muted: #64748B;
  --text-light: #94A3B8;

  /* brand — editorial red + orange */
  --red: #E11D48;
  --red-dark: #BE123C;
  --red-soft: #FFE4E6;
  --red-tint: #FEF2F4;
  --orange: #F97316;
  --orange-soft: #FFEDD5;
  --amber: #F59E0B;
  --amber-soft: #FEF3C7;
  --mint: #10B981;
  --mint-soft: #D1FAE5;
  --blue: #2563EB;
  --blue-soft: #DBEAFE;
  --navy: #0F172A;

  /* shadows — clean editorial */
  --shadow-xs: 0 1px 2px rgba(15, 23, 42, 0.04);
  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 6px 20px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 14px 40px rgba(15, 23, 42, 0.10);

  --radius: 10px;
  --radius-lg: 14px;
  --radius-pill: 999px;
}

/* ── reset ── */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* ───────── TOP RED PROMO BAR ───────── */
.promo-bar {
  background: var(--navy);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 500;
  text-align: center;
  padding: 0.55rem 5%;
  letter-spacing: 0.1px;
  border-bottom: 2px solid var(--red);
}
.promo-bar strong { color: #fff; font-weight: 800; }
.promo-bar a { color: #FFB4BD; text-decoration: underline; font-weight: 600; }

/* ───────── NAV ───────── */
nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  box-shadow: var(--shadow-xs);
}

.logo {
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: -1px;
  color: var(--navy);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.logo::before {
  content: '';
  width: 26px;
  height: 26px;
  border-radius: 6px;
  background: var(--red);
  flex-shrink: 0;
  position: relative;
}
.logo::after {
  content: '';
  position: absolute;
  left: 5%;
  width: 28px;
  height: 4px;
  bottom: 18px;
  background: var(--red);
  display: none;
}

.nav-links {
  display: flex;
  gap: 0.1rem;
  list-style: none;
  align-items: center;
}
.nav-links a {
  color: var(--text-soft);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.2px;
  padding: 0.55rem 1rem;
  border-radius: 6px;
  position: relative;
  transition: color .15s;
}
.nav-links a:hover { color: var(--red); }
.nav-links a.active {
  color: var(--red);
}
.nav-links a.active::after {
  content: '';
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: -22px;
  height: 3px;
  background: var(--red);
}

.nav-cta {
  background: var(--red) !important;
  color: #fff !important;
  font-weight: 800 !important;
  font-size: 0.88rem !important;
  padding: 0.55rem 1.2rem !important;
  border-radius: 6px;
  margin-left: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  transition: background .2s !important;
}
.nav-cta:hover { background: var(--red-dark) !important; }
.nav-cta.active::after { display: none; }

.nav-mobile-cta {
  display: none;
  background: var(--red);
  color: #fff;
  font-weight: 800;
  font-size: 0.82rem;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

/* ───────── HERO ───────── */
.hero {
  position: relative;
  padding: 70px 5% 56px;
  text-align: center;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.hero-decor,
.page-hero-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
  opacity: 0.5;
}
.hero-decor svg,
.page-hero-decor svg { position: absolute; }

@keyframes float-y {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-14px) rotate(3deg); }
}
@keyframes float-y-slow {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(12px) rotate(-2deg); }
}
@keyframes spin-slow { to { transform: rotate(360deg); } }
@keyframes pulse-soft {
  0%, 100% { opacity: 0.85; transform: scale(1); }
  50%      { opacity: 1;    transform: scale(1.05); }
}
.float-a { animation: float-y 9s ease-in-out infinite; }
.float-b { animation: float-y-slow 11s ease-in-out infinite; }
.float-c { animation: float-y 7s ease-in-out infinite; }
.spin    { animation: spin-slow 22s linear infinite; transform-origin: center; }
.pulse   { animation: pulse-soft 4s ease-in-out infinite; }

.hero > *:not(.hero-decor) { position: relative; z-index: 1; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--red);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 1.2px;
  padding: 0.35rem 0.9rem;
  border-radius: 4px;
  margin-bottom: 1.4rem;
  text-transform: uppercase;
}
.badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
  animation: pulse-soft 2s infinite;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -1.6px;
  max-width: 820px;
  margin: 0 auto 1rem;
  color: var(--navy);
  text-transform: uppercase;
}
.hero h1 em {
  font-style: normal;
  color: var(--red);
  position: relative;
  display: inline-block;
}

.hero p {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

.hero-btns {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--red);
  color: #fff;
  font-weight: 800;
  font-size: 0.92rem;
  padding: 0.85rem 1.8rem;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
  transition: background .2s, transform .15s;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.btn-primary:hover { background: var(--red-dark); transform: translateY(-1px); }

.btn-secondary {
  background: #fff;
  color: var(--navy);
  font-weight: 700;
  font-size: 0.92rem;
  padding: 0.85rem 1.8rem;
  border-radius: 6px;
  border: 2px solid var(--navy);
  text-decoration: none;
  display: inline-block;
  transition: background .2s, color .2s;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.btn-secondary:hover { background: var(--navy); color: #fff; }

.stats-row {
  display: flex;
  justify-content: center;
  margin: 3rem auto 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  max-width: 640px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  flex-wrap: wrap;
}

.stat {
  flex: 1;
  min-width: 130px;
  text-align: center;
  padding: 1.3rem 1rem;
  position: relative;
}
.stat:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 22%;
  bottom: 22%;
  width: 1px;
  background: var(--border);
}
.stat-num {
  font-size: 1.85rem;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
}
.stat-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-top: 0.4rem;
  font-weight: 700;
}

/* ───────── TOP BANNER ───────── */
.top-banner {
  background: var(--navy);
  padding: 32px 5% 36px;
  border-bottom: 4px solid var(--red);
  position: relative;
  overflow: hidden;
}
.top-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(40% 60% at 0% 0%, rgba(225,29,72,0.28) 0%, transparent 70%),
    radial-gradient(40% 60% at 100% 100%, rgba(225,29,72,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.top-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.top-banner-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  margin-bottom: 1.3rem;
}
.top-banner-title h2 {
  color: #fff;
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  font-weight: 900;
  letter-spacing: -0.3px;
  text-transform: uppercase;
  margin: 0;
}
.top-banner-title h2 span { color: var(--red); }
.top-banner-icon { font-size: 1.4rem; }
.top-banner-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: 1.05rem;
}
.top-banner-card {
  background: #fff;
  border-radius: 10px;
  padding: 1.3rem 1.3rem 1.1rem;
  text-decoration: none;
  color: var(--text);
  position: relative;
  transition: transform .2s, box-shadow .2s;
  border-top: 4px solid var(--red);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.top-banner-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}
.top-banner-tag {
  position: absolute;
  top: -12px;
  left: 14px;
  background: var(--red);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 1px;
  padding: 0.3rem 0.7rem;
  border-radius: 4px;
  text-transform: uppercase;
  box-shadow: 0 4px 10px rgba(225,29,72,0.4);
}
.top-banner-card-row {
  display: flex;
  align-items: center;
  gap: 0.95rem;
  margin-top: 0.5rem;
}
.top-banner-logo {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 900;
  flex-shrink: 0;
  border: 1px solid var(--border);
}
.top-banner-info { flex: 1; min-width: 0; }
.top-banner-info h3 {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: -0.5px;
  line-height: 1.1;
}
.top-banner-info p {
  color: var(--red);
  font-weight: 800;
  font-size: 0.9rem;
  margin-top: 0.2rem;
}
.top-banner-bullets {
  display: block;
  color: var(--text-muted);
  font-size: 0.78rem;
  margin-top: 0.3rem;
  font-weight: 600;
  line-height: 1.45;
}
.top-banner-cta {
  background: var(--red);
  color: #fff;
  font-weight: 900;
  text-transform: uppercase;
  text-align: center;
  padding: 0.7rem 1rem;
  border-radius: 6px;
  letter-spacing: 0.5px;
  font-size: 0.85rem;
  transition: background .2s;
}
.top-banner-card:hover .top-banner-cta { background: var(--red-dark); }

/* ───────── USP STRIP ───────── */
.usp-strip {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 0.95rem 5%;
  display: flex;
  justify-content: center;
  gap: 2.2rem;
  flex-wrap: wrap;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-soft);
  text-align: center;
}
.usp-strip span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  letter-spacing: 0.2px;
}
.usp-strip strong { color: var(--red); font-weight: 800; }
.usp-strip .usp-icon { font-size: 1rem; }

/* ───────── PAGE HERO ───────── */
.page-hero {
  position: relative;
  padding: 56px 5% 48px;
  text-align: center;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.page-hero > *:not(.page-hero-decor) { position: relative; z-index: 1; }
.page-hero h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 900;
  letter-spacing: -1.2px;
  margin-bottom: 0.7rem;
  color: var(--navy);
  text-transform: uppercase;
}
.page-hero h1 span { color: var(--red); }
.page-hero p { color: var(--text-muted); max-width: 640px; margin: 0 auto; font-size: 1rem; }

/* ───────── SECTIONS ───────── */
.section { padding: 64px 5%; position: relative; }
.section-alt { background: var(--bg-soft); }

.section-title {
  text-align: center;
  margin-bottom: 2.6rem;
  position: relative;
}
.section-title h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 900;
  letter-spacing: -0.8px;
  color: var(--navy);
  text-transform: uppercase;
  display: inline-block;
  padding-bottom: 0.8rem;
  border-bottom: 4px solid var(--red);
}
.section-title h2 span { color: var(--red); }
.section-title p {
  color: var(--text-muted);
  margin: 1rem auto 0;
  max-width: 560px;
  font-size: 0.95rem;
}

/* ───────── NAV CARDS ───────── */
.nav-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.2rem;
  max-width: 1100px;
  margin: 0 auto;
}
.nav-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.8rem 1.6rem;
  text-decoration: none;
  color: var(--text);
  display: block;
  transition: border-color .2s, transform .2s, box-shadow .2s;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xs);
}
.nav-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s;
}
.nav-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--red-soft);
}
.nav-card:hover::before { transform: scaleX(1); }

.nav-card-featured {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}
.nav-card-featured::before { background: var(--red); transform: scaleX(1); }
.nav-card-featured:hover { background: #1a2238; }

.nav-card-icon {
  font-size: 1.7rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 10px;
  background: var(--red-tint);
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}
.nav-card-featured .nav-card-icon {
  background: rgba(255,255,255,0.12);
}
.nav-card h3 {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 0.45rem;
  text-transform: uppercase;
  letter-spacing: -0.2px;
  position: relative;
  z-index: 1;
}
.nav-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}
.nav-card-featured p { color: rgba(255, 255, 255, 0.78); }
.nav-card-link {
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  z-index: 1;
  transition: gap .2s;
}
.nav-card:hover .nav-card-link { gap: 0.6rem; }
.nav-card-featured .nav-card-link { color: #FFB4BD; }

/* ───────── INFO CARDS ───────── */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.1rem;
  max-width: 1100px;
  margin: 0 auto;
}
.info-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.6rem 1.5rem;
  transition: border-color .2s, transform .2s, box-shadow .2s;
  position: relative;
  box-shadow: var(--shadow-xs);
}
.info-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--red-soft);
}
.info-icon {
  font-size: 1.4rem;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--red-tint);
  margin-bottom: 0.8rem;
}
.info-card h3 {
  font-size: 1.02rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  letter-spacing: -0.2px;
  color: var(--navy);
}
.info-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

/* ───────── PLATFORM CARDS (ranked listing) ───────── */
.platforms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 1.1rem;
  max-width: 1200px;
  margin: 0 auto;
  counter-reset: rank;
}
.platform-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color .2s, transform .2s, box-shadow .2s;
  position: relative;
  box-shadow: var(--shadow-xs);
  counter-increment: rank;
}
.platform-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--red-soft);
}
/* ranking number in the corner */
.platform-card::before {
  content: '#' counter(rank);
  position: absolute;
  top: 0;
  left: 0;
  background: var(--navy);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 900;
  padding: 0.32rem 0.7rem;
  border-radius: 0 0 8px 0;
  letter-spacing: 0.3px;
  z-index: 2;
}
.platform-card.featured::before { background: var(--red); }
.platform-card.featured {
  border: 2px solid var(--red);
}
.platform-card.featured::after {
  content: '⭐ EDITOR\'S PICK';
  position: absolute;
  top: 0;
  right: 0;
  background: var(--red);
  color: #fff;
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 1px;
  padding: 0.32rem 0.8rem;
  border-radius: 0 0 0 8px;
  z-index: 2;
}

.platform-header {
  padding: 2rem 1.4rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.95rem;
  border-bottom: 1px solid var(--border);
  background: var(--card-soft);
}
.platform-logo {
  width: 54px;
  height: 54px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 900;
  flex-shrink: 0;
  border: 1px solid var(--border);
}
.platform-meta h3 {
  font-size: 1.12rem;
  font-weight: 900;
  letter-spacing: -0.3px;
  color: var(--navy);
}
.platform-type {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 0.2rem;
  font-weight: 700;
}
.stars {
  color: var(--amber);
  font-size: 0.9rem;
  margin-top: 0.25rem;
  letter-spacing: 2px;
}
.platform-body { padding: 1.2rem 1.4rem; flex: 1; }

.bonus-tag {
  display: inline-block;
  background: var(--amber-soft);
  border: 1px solid #FCD34D;
  color: #92400E;
  font-size: 0.78rem;
  font-weight: 800;
  padding: 0.38rem 0.8rem;
  border-radius: 4px;
  margin-bottom: 0.9rem;
  letter-spacing: 0.2px;
}

.platform-desc {
  color: var(--text-soft);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  line-height: 1.65;
}

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 0.5rem;
}
.feature-list li {
  font-size: 0.85rem;
  color: var(--text-soft);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}
.feature-list li::before {
  content: '';
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: var(--mint);
  flex-shrink: 0;
  margin-top: 0.18rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='5 12 10 17 19 8'/%3E%3C/svg%3E");
  background-size: 11px 11px;
  background-position: center;
  background-repeat: no-repeat;
}

.platform-footer {
  padding: 1rem 1.4rem 1.4rem;
  border-top: 1px solid var(--border);
  background: var(--card-soft);
}
.btn-affiliate {
  display: block;
  width: 100%;
  background: var(--red);
  color: #fff;
  font-weight: 900;
  font-size: 0.9rem;
  padding: 0.85rem 1rem;
  border-radius: 6px;
  text-decoration: none;
  text-align: center;
  transition: background .2s, transform .15s;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.btn-affiliate:hover { background: var(--red-dark); transform: translateY(-1px); }

/* ───────── DEAL CARDS ───────── */
.deals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 0.9rem;
  max-width: 1200px;
  margin: 0 auto;
  counter-reset: deal-rank;
}
.deal-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.1rem 1.2rem 1.1rem 2.6rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: border-color .2s, transform .2s, box-shadow .2s;
  position: relative;
  box-shadow: var(--shadow-xs);
  counter-increment: deal-rank;
}
.deal-card::before {
  content: counter(deal-rank);
  position: absolute;
  top: 50%;
  left: 0.85rem;
  transform: translateY(-50%);
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--text-light);
  font-family: 'Inter', sans-serif;
  width: 1.2rem;
  text-align: center;
}
.deal-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--red-soft);
}
.deal-card.hot {
  border-color: var(--red);
  border-width: 2px;
}
.deal-card.hot::before { color: var(--red); }
.deal-card.hot::after {
  content: '🔥 HOT';
  position: absolute;
  top: -10px;
  right: 14px;
  font-size: 0.6rem;
  font-weight: 900;
  letter-spacing: 1px;
  color: #fff;
  background: var(--red);
  padding: 0.2rem 0.55rem;
  border-radius: 4px;
}

.deal-logo {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 900;
  flex-shrink: 0;
  border: 1px solid var(--border);
}

.deal-info { flex: 1; min-width: 0; }
.deal-name { font-weight: 900; font-size: 1rem; color: var(--navy); }
.deal-bonus {
  color: var(--red);
  font-weight: 800;
  font-size: 0.82rem;
  margin-top: 0.15rem;
}
.deal-desc {
  color: var(--text-muted);
  font-size: 0.78rem;
  margin-top: 0.2rem;
  line-height: 1.55;
}

.btn-deal {
  background: var(--red);
  color: #fff;
  font-weight: 800;
  font-size: 0.78rem;
  padding: 0.65rem 1rem;
  border-radius: 6px;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background .2s;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.btn-deal:hover { background: var(--red-dark); }

.deal-type-label {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid var(--border);
  padding: 0.18rem 0.5rem;
  border-radius: 4px;
  margin-bottom: 0.4rem;
}

/* ───────── FAQ ───────── */
.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color .2s;
}
.faq-item.open { border-color: var(--red); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--navy);
  font-size: 0.96rem;
  font-weight: 700;
  text-align: left;
  padding: 1.05rem 1.3rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-family: inherit;
  letter-spacing: -0.1px;
  transition: color .2s;
}
.faq-question:hover { color: var(--red); }
.faq-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--red-tint);
  color: var(--red);
  font-size: 1.1rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform .25s, background .25s, color .25s;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--red);
  color: #fff;
}
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-item.open .faq-answer { max-height: 420px; }
.faq-answer p {
  padding: 0.3rem 1.3rem 1.2rem;
  color: var(--text-soft);
  font-size: 0.93rem;
  line-height: 1.7;
}
.faq-answer a { color: var(--red); font-weight: 700; }

/* ───────── COMPARISON TABLE ───────── */
.compare-wrap {
  max-width: 960px;
  margin: 0 auto;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow-x: auto;
  box-shadow: var(--shadow-sm);
}
.compare-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 0.9rem;
}
.compare-table th {
  text-align: left;
  padding: 0.95rem 1rem;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: #fff;
  background: var(--navy);
  font-weight: 800;
}
.compare-table th.center { text-align: center; }
.compare-table td {
  padding: 0.95rem 1rem;
  border-bottom: 1px solid var(--border);
  color: var(--text-soft);
}
.compare-table td.center { text-align: center; }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tbody tr { transition: background .15s; }
.compare-table tbody tr:hover { background: var(--bg-soft); }
.compare-table tbody tr:nth-child(even) { background: var(--card-soft); }
.compare-table tbody tr:nth-child(even):hover { background: var(--bg-soft); }
.compare-table .yes {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--mint);
  color: #fff;
  font-weight: 900;
  font-size: 0.78rem;
}
.compare-table .no { color: var(--text-light); font-weight: 700; }

/* ───────── FILTER TABS ───────── */
.filter-tabs {
  display: flex;
  gap: 0.4rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}
.filter-tab {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.55rem 1.1rem;
  border-radius: 0;
  cursor: pointer;
  transition: color .2s;
  font-family: inherit;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  position: relative;
}
.filter-tab:hover { color: var(--navy); }
.filter-tab.active { color: var(--red); }
.filter-tab.active::after {
  content: '';
  position: absolute;
  left: 0.5rem;
  right: 0.5rem;
  bottom: -1.05rem;
  height: 3px;
  background: var(--red);
}

/* ───────── DISCLAIMER ───────── */
.disclaimer {
  background: var(--bg-soft);
  border-left: 4px solid var(--text-light);
  border-radius: 4px;
  padding: 1.3rem 1.5rem;
  max-width: 920px;
  margin: 0 auto;
  color: var(--text-muted);
  font-size: 0.82rem;
  line-height: 1.75;
}
.disclaimer strong { color: var(--navy); }

/* ───────── FOOTER ───────── */
footer {
  background: var(--navy);
  color: #fff;
  padding: 3rem 5% 2rem;
  text-align: center;
  position: relative;
  border-top: 4px solid var(--red);
}
.footer-logo {
  font-size: 1.45rem;
  font-weight: 900;
  margin-bottom: 0.7rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
  letter-spacing: -1px;
}
.footer-logo::before {
  content: '';
  width: 22px;
  height: 22px;
  border-radius: 5px;
  background: var(--red);
}
footer p { color: rgba(255,255,255,0.6); font-size: 0.82rem; line-height: 1.8; }
.footer-links {
  display: flex;
  gap: 1.4rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}
.footer-links a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 600;
  transition: color .2s;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.footer-links a:hover { color: var(--red); }

/* ───────── SCROLLBAR ───────── */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg-alt); }
::-webkit-scrollbar-thumb { background: var(--border-strong); border-radius: 6px; }
::-webkit-scrollbar-thumb:hover { background: var(--red); }

/* ───────── RESPONSIVE ───────── */
@media (max-width: 780px) {
  .nav-links { display: none; }
  .nav-mobile-cta { display: block; }
  .hero { padding: 50px 5% 50px; }
  .deal-card { flex-wrap: wrap; }
  .deal-card.hot::after { top: -8px; }
  .stats-row { gap: 0; }
  .compare-table th, .compare-table td { padding: 0.65rem 0.5rem; font-size: 0.8rem; }
}
