:root {
  --ink: #101010;
  --ink-2: #1d1d1d;
  --red: #e4002b;
  --red-dark: #a90020;
  --green: #1db954;
  --paper: #ffffff;
  --soft: #f4f4f4;
  --line: #dfdfdf;
  --muted: #626262;
  --max: 1180px;
  --radius: 8px;
  --shadow: 0 18px 45px rgba(16, 16, 16, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  color-scheme: light;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

a {
  color: inherit;
}

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

.display,
h1,
h2,
h3,
.brand-word,
.deal-badge,
.score {
  font-family: "Arial Narrow", Impact, Haettenschweiler, sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(2.4rem, 6vw, 5.9rem);
  line-height: 0.94;
  max-width: 850px;
}

h2 {
  font-size: clamp(1.8rem, 3vw, 3.2rem);
  line-height: 1.02;
}

h3 {
  font-size: 1.2rem;
  line-height: 1.15;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(16, 16, 16, 0.96);
  color: #fff;
  border-bottom: 3px solid var(--red);
}

.header-inner,
.wrap {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo img {
  width: 42px;
  height: 42px;
  border-radius: 6px;
  background: #fff;
}

.brand-word {
  font-size: 1.24rem;
  line-height: 1;
}

.brand-word span {
  color: var(--red);
}

.nav {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.9rem;
  font-weight: 800;
}

.nav a,
.lang-switch a {
  color: #fff;
  text-decoration: none;
}

.nav a:hover,
.lang-switch a:hover {
  color: var(--green);
}

.lang-switch {
  display: flex;
  gap: 6px;
  align-items: center;
  font-size: 0.8rem;
}

.lang-switch a {
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 5px 7px;
  border-radius: 999px;
}

.lang-switch a[aria-current="true"] {
  background: var(--red);
  border-color: var(--red);
}

.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 6px;
  background: transparent;
  color: #fff;
  font-size: 1.2rem;
}

.hero {
  position: relative;
  min-height: 680px;
  color: #fff;
  overflow: hidden;
  background: #101010;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(16, 16, 16, 0.98) 0%, rgba(16, 16, 16, 0.78) 44%, rgba(16, 16, 16, 0.12) 78%), var(--hero-image);
  background-size: cover;
  background-position: center;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 98px 0 72px;
}

.hero p {
  max-width: 610px;
  color: #efefef;
  font-size: 1.12rem;
}

.hero-actions,
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.hero-actions {
  margin-bottom: 24px;
}

.hero .mini {
  max-width: 640px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 0;
  border-radius: 6px;
  background: var(--red);
  color: #fff;
  font-weight: 900;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 10px 0 #780014;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  background: #ff123e;
  box-shadow: 0 12px 0 #780014;
}

.btn.alt {
  background: #fff;
  color: var(--ink);
  box-shadow: 0 10px 0 #cfcfcf;
}

.btn.green {
  background: var(--green);
  color: #05130a;
  box-shadow: 0 10px 0 #0a6f2f;
}

.hero-strip {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 32px));
  margin: -54px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.strip-item {
  min-height: 96px;
  padding: 16px;
  background: #fff;
  color: var(--ink);
  border: 3px solid var(--ink);
  box-shadow: 8px 8px 0 var(--red);
}

.strip-item strong {
  display: block;
  font-size: 1.4rem;
  line-height: 1.1;
}

.section {
  padding: 72px 0;
}

.section.dark {
  background: var(--ink);
  color: #fff;
}

.section.soft {
  background: var(--soft);
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 26px;
}

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

.dark .section-head p {
  color: #d4d4d4;
}

.deal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.deal-card {
  position: relative;
  display: grid;
  gap: 14px;
  padding: 18px;
  background: #fff;
  color: var(--ink);
  border: 3px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: 8px 8px 0 rgba(228, 0, 43, 0.22);
}

.deal-card.featured {
  box-shadow: 10px 10px 0 var(--red);
}

.deal-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}

.deal-badge {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  padding: 8px 12px;
  background: var(--red);
  color: #fff;
  clip-path: polygon(0 0, 92% 0, 100% 50%, 92% 100%, 0 100%);
  font-size: 1.3rem;
}

.tag {
  display: inline-flex;
  width: max-content;
  padding: 4px 9px;
  border-radius: 999px;
  background: #e8f8ee;
  color: #064d21;
  font-weight: 900;
  font-size: 0.76rem;
  text-transform: uppercase;
}

.score {
  font-size: 2rem;
  color: var(--red);
}

.deal-meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  font-size: 0.9rem;
}

.deal-meta span {
  display: block;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.filters {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  padding: 16px;
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius);
  margin-bottom: 20px;
}

.filters label {
  display: grid;
  gap: 5px;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.filters select {
  width: 100%;
  min-height: 42px;
  border: 2px solid #fff;
  border-radius: 6px;
  padding: 8px;
  font: inherit;
  font-size: 0.92rem;
  background: #fff;
  color: var(--ink);
}

.content {
  max-width: 830px;
}

.content p,
.content li {
  color: #2e2e2e;
}

.content a {
  color: var(--red);
  font-weight: 800;
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 34px;
  align-items: start;
}

.coupon-panel {
  padding: 22px;
  background: #fff;
  border: 3px dashed var(--red);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.table-wrap {
  overflow-x: auto;
  border: 3px solid var(--ink);
  border-radius: var(--radius);
}

table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
}

th,
td {
  padding: 13px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  background: var(--ink);
  color: #fff;
  font-size: 0.78rem;
  text-transform: uppercase;
}

.faq {
  display: grid;
  gap: 12px;
}

.faq details {
  padding: 16px;
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
}

.faq summary {
  cursor: pointer;
  font-weight: 900;
}

.breadcrumb {
  margin: 24px auto 0;
  color: #767676;
  font-size: 0.86rem;
}

.breadcrumb a {
  color: var(--red);
  font-weight: 800;
}

.site-footer {
  background: var(--ink);
  color: #fff;
  padding: 44px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 22px;
}

.footer-grid a {
  display: block;
  color: #ededed;
  text-decoration: none;
  margin: 6px 0;
}

.footer-grid a:hover {
  color: var(--green);
}

.badge-18 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-weight: 900;
  margin-bottom: 10px;
}

.disclosure {
  margin-top: 16px;
  padding: 12px;
  background: #fff8e5;
  border-left: 5px solid var(--red);
  color: #2a2a2a;
  font-size: 0.92rem;
}

.age-gate,
.cookie-banner {
  position: fixed;
  z-index: 80;
}

.age-gate {
  inset: 0;
  display: none;
  place-items: center;
  background: rgba(16, 16, 16, 0.82);
  padding: 18px;
}

.age-gate.is-visible {
  display: grid;
}

.age-card {
  width: min(520px, 100%);
  padding: 28px;
  background: #fff;
  border: 4px solid var(--red);
  border-radius: var(--radius);
  box-shadow: 16px 16px 0 rgba(228, 0, 43, 0.35);
}

.cookie-banner {
  right: 18px;
  bottom: 18px;
  width: min(440px, calc(100% - 36px));
  display: none;
  padding: 16px;
  background: #fff;
  border: 3px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.cookie-banner.is-visible {
  display: block;
}

.mini {
  font-size: 0.86rem;
  color: var(--muted);
}

.notice {
  padding: 16px;
  background: #f7fff9;
  border: 2px solid var(--green);
  border-radius: var(--radius);
}

.indexnow-box textarea,
.indexnow-box input {
  width: 100%;
  min-height: 44px;
  border: 2px solid var(--ink);
  border-radius: 6px;
  padding: 10px;
  font: inherit;
}

.indexnow-box textarea {
  min-height: 260px;
}

.result-box {
  white-space: pre-wrap;
  padding: 14px;
  background: #111;
  color: #fff;
  border-radius: 6px;
  min-height: 72px;
}

@media (max-width: 880px) {
  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav,
  .lang-switch {
    display: none;
  }

  .site-header.is-open .nav,
  .site-header.is-open .lang-switch {
    display: flex;
    position: absolute;
    left: 16px;
    right: 16px;
    background: #101010;
  }

  .site-header.is-open .nav {
    top: 72px;
    flex-direction: column;
    align-items: flex-start;
    padding: 18px;
    border: 2px solid var(--red);
  }

  .site-header.is-open .lang-switch {
    top: 254px;
    padding: 12px 18px 18px;
    border: 2px solid var(--red);
    border-top: 0;
  }

  .hero {
    min-height: 600px;
  }

  .hero-strip,
  .deal-grid,
  .footer-grid,
  .two-col {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 560px) {
  .header-inner,
  .wrap,
  .hero-content,
  .hero-strip {
    width: min(100% - 22px, var(--max));
  }

  .hero-content {
    padding-top: 72px;
  }

  h1 {
    font-size: 2.55rem;
  }

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

  .section {
    padding: 52px 0;
  }

  .deal-meta {
    grid-template-columns: 1fr;
  }
}
