/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  --bg-primary:      #080c18;
  --bg-secondary:    #0c1120;
  --bg-card:         #111827;
  --bg-card-hover:   #16213a;

  --border-subtle:   rgba(255, 255, 255, 0.05);
  --border-card:     rgba(255, 255, 255, 0.07);
  --border-accent:   rgba(249, 115, 22, 0.25);

  --text-primary:    #f0f4ff;
  --text-secondary:  #8fa0c0;
  --text-muted:      #4e607e;

  --accent:          #f97316;
  --accent-light:    #fb923c;
  --accent-glow:     rgba(249, 115, 22, 0.22);

  --score:           #22c55e;
  --score-glow:      rgba(34, 197, 94, 0.18);

  --radius-sm:  8px;
  --radius-md:  14px;
  --radius-lg:  20px;

  --ease:       cubic-bezier(0.4, 0, 0.2, 1);
  --speed:      0.28s;

  --container:  980px;
  --pad:        28px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  color: var(--accent);
  text-decoration: none;
  transition: color var(--speed) var(--ease);
}
a:hover { color: var(--accent-light); }

h1, h2, h3, h4 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad);
}

/* ============================================================
   KEYFRAMES
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes shimmer {
  from { transform: skewX(-20deg) translateX(-240%); }
  to   { transform: skewX(-20deg) translateX(340%); }
}

@keyframes softPulse {
  0%, 100% { box-shadow: 0 0 0 0 var(--accent-glow); }
  50%       { box-shadow: 0 0 18px 4px var(--accent-glow); }
}

@keyframes cookieSlide {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}

/* ============================================================
   FADE-IN (JS-driven)
   ============================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
}
.fade-in.is-visible { opacity: 1; transform: translateY(0); }

.stagger-item {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.45s var(--ease), transform 0.45s var(--ease);
}
.stagger-item.is-visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   COOKIE BANNER
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px var(--pad);
  background: rgba(17, 24, 39, 0.96);
  border-top: 1px solid var(--border-card);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.42s var(--ease), opacity 0.42s var(--ease);
  pointer-events: none;
}
.cookie-banner.is-visible  { transform: translateY(0); opacity: 1; pointer-events: auto; }
.cookie-banner.is-hidden   { transform: translateY(120%); opacity: 0; pointer-events: none; }

.cookie-text {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 640px;
}
.cookie-text a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }

.cookie-btn {
  flex-shrink: 0;
  background: var(--accent);
  color: #fff;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  padding: 9px 22px;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--speed) var(--ease), transform var(--speed) var(--ease);
}
.cookie-btn:hover { background: var(--accent-light); transform: scale(1.04); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 68px;
  display: flex;
  align-items: center;
  background: rgba(8, 12, 24, 0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--speed) var(--ease),
              background var(--speed) var(--ease),
              box-shadow var(--speed) var(--ease);
}
.site-header.scrolled {
  background: rgba(8, 12, 24, 0.97);
  border-bottom-color: var(--border-subtle);
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.55);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.18rem;
  color: var(--text-primary);
  letter-spacing: -0.03em;
  transition: opacity var(--speed) var(--ease);
}
.logo:hover { opacity: 0.85; color: var(--text-primary); }
.logo span  { color: var(--accent); }

.site-nav { display: flex; gap: 28px; align-items: center; }

.nav-link {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0.01em;
  transition: color var(--speed) var(--ease);
  position: relative;
  padding-bottom: 2px;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1.5px;
  background: var(--accent);
  transition: width var(--speed) var(--ease);
}
.nav-link:hover { color: var(--text-primary); }
.nav-link:hover::after { width: 100%; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding: 88px 0 108px;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(170deg, #0e1530 0%, #080c18 100%);
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 50% 0%,   rgba(249,115,22,0.09) 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at 80% 60%,  rgba(34,197,94,0.05)  0%, transparent 55%),
    radial-gradient(ellipse 40% 30% at 10% 80%,  rgba(99,102,241,0.04) 0%, transparent 50%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(to bottom, transparent, var(--bg-primary));
  pointer-events: none;
}

.hero-title {
  position: relative;
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.035em;
  margin-bottom: 24px;
  animation: fadeUp 0.75s var(--ease) both;
}
.hero-title em {
  font-style: normal;
  background: linear-gradient(130deg, #f97316 0%, #fbbf24 60%, #fb923c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  position: relative;
  max-width: 510px;
  margin: 0 auto;
  font-size: 0.975rem;
  color: var(--text-secondary);
  line-height: 1.75;
  animation: fadeUp 0.75s var(--ease) 0.18s both;
}

/* ============================================================
   BRANDS SECTION
   ============================================================ */
.brands {
  padding: 0 0 72px;
}
.brands .container { padding-top: 36px; }

.brand-card {
  background: linear-gradient(165deg, #151c2f 0%, #111827 48%, #0f1628 100%);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  box-shadow:
    0 4px 28px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  overflow: hidden;
  transition:
    transform var(--speed) var(--ease),
    box-shadow var(--speed) var(--ease),
    border-color var(--speed) var(--ease);
}
.brand-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-accent);
  box-shadow:
    0 12px 44px rgba(0, 0, 0, 0.6),
    0 0 0 1px var(--border-accent),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.brand-body {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 22px 26px;
}

.brand-rank {
  flex-shrink: 0;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(140deg, var(--accent) 0%, #e05f0a 100%);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: #fff;
  box-shadow: 0 0 14px var(--accent-glow);
}

.brand-logo {
  flex-shrink: 0;
  width: 138px;
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  background: rgba(0, 0, 0, 0.32);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
}
.brand-logo img {
  width: 100%;
  max-height: 44px;
  object-fit: contain;
  object-position: center;
}

.brand-offer {
  flex: 1;
  min-width: 0;
  font-size: 0.975rem;
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.5;
}
.brand-offer strong { color: var(--accent-light); }

.brand-score {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  min-width: 64px;
}
.score-num {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 2.1rem;
  color: var(--score);
  line-height: 1;
  text-shadow: 0 0 16px var(--score-glow);
}
.score-label {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.score-stars {
  display: flex;
  gap: 2px;
  margin-top: 5px;
}
.score-stars img {
  width: 13px; height: 13px;
  object-fit: contain;
  filter: drop-shadow(0 0 3px rgba(34,197,94,0.5));
}

.btn-bonus {
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #fff;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 14px 22px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  animation: softPulse 3.5s ease-in-out infinite;
  transition:
    background var(--speed) var(--ease),
    transform var(--speed) var(--ease),
    box-shadow var(--speed) var(--ease);
}
.btn-bonus::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 45%; height: 100%;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.28), transparent);
  transform: skewX(-20deg) translateX(-240%);
}
.btn-bonus:hover {
  background: #e86510;
  color: #fff;
  transform: scale(1.05);
  box-shadow: 0 6px 22px var(--accent-glow);
  animation: none;
}
.btn-bonus:hover::before { animation: shimmer 0.62s ease forwards; }

.brand-disclaimer {
  padding: 11px 28px 13px;
  border-top: 1px solid var(--border-subtle);
  background: rgba(0, 0, 0, 0.18);
  font-size: 0.72rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ============================================================
   INFO SECTION
   ============================================================ */
.info-section {
  position: relative;
  padding: 80px 0 72px;
  background: var(--bg-secondary);
}
.info-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(to right, transparent 0%, var(--border-card) 40%, var(--border-card) 60%, transparent 100%);
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  margin-bottom: 44px;
}

.info-col h2 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--accent);
  display: inline-block;
}

.info-col p {
  font-size: 0.855rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 14px;
}
.info-col p:last-child { margin-bottom: 0; }
.info-col p a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.info-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
}
.info-links a {
  font-size: 0.82rem;
  color: var(--text-secondary);
  position: relative;
  padding-bottom: 1px;
  transition: color var(--speed) var(--ease);
}
.info-links a::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width var(--speed) var(--ease);
}
.info-links a:hover { color: var(--accent); }
.info-links a:hover::after { width: 100%; }

/* ============================================================
   RESPONSIBLE GAMING
   ============================================================ */
.responsible-section {
  padding: 44px 0;
  background: var(--bg-primary);
  border-top: 1px solid var(--border-subtle);
}

.responsible-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 24px;
}

.resp-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px 22px;
}

.resp-logos a,
.resp-badge {
  display: inline-flex;
  align-items: center;
  opacity: 0.75;
  transition: opacity var(--speed) var(--ease), transform var(--speed) var(--ease);
}
.resp-logos a:hover { opacity: 1; transform: scale(1.06); }

.resp-logos img   { height: 42px; width: auto; object-fit: contain; }
.resp-arrow-img   { height: 22px; width: auto; object-fit: contain; opacity: 0.45; }
.resp-badge img   { height: 42px; width: auto; object-fit: contain; }

/* ============================================================
   18+ DISCLAIMER
   ============================================================ */
.disclaimer-section {
  padding: 30px 0;
  background: rgba(249, 115, 22, 0.04);
  border-top:    1px solid rgba(249, 115, 22, 0.12);
  border-bottom: 1px solid rgba(249, 115, 22, 0.12);
}
.disclaimer-inner {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  max-width: 740px;
  margin: 0 auto;
}
.disclaimer-icon { flex-shrink: 0; height: 54px; width: auto; }
.disclaimer-text {
  font-size: 0.83rem;
  color: var(--text-secondary);
  line-height: 1.7;
}
.disclaimer-text a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }

/* ============================================================
   SITE FOOTER
   ============================================================ */
.site-footer {
  padding: 30px 0;
  background: var(--bg-secondary);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}
.footer-copy {
  font-size: 0.78rem;
  color: var(--text-muted);
}
.footer-links { display: flex; flex-wrap: wrap; gap: 6px 20px; }
.footer-links a {
  font-size: 0.78rem;
  color: var(--text-muted);
  transition: color var(--speed) var(--ease);
}
.footer-links a:hover { color: var(--accent); }

/* ============================================================
   POLICY PAGES
   ============================================================ */
.page-hero {
  position: relative;
  padding: 72px 0 64px;
  background: linear-gradient(170deg, #0e1530 0%, #080c18 100%);
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 65% 55% at 50% 0%, rgba(249,115,22,0.08) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--bg-primary));
}
.page-hero-inner { position: relative; }
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
  transition: color var(--speed) var(--ease);
}
.back-link:hover { color: var(--accent); }
.back-link svg { flex-shrink: 0; }

.page-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 14px;
}
.page-lead {
  font-size: 1.0rem;
  color: var(--text-secondary);
  line-height: 1.75;
  max-width: 560px;
}

.page-main {
  padding: 64px 0 80px;
  min-height: 50vh;
}
.page-content {
  max-width: 720px;
}
.page-content h2 {
  font-size: 1.1rem;
  color: var(--text-primary);
  margin: 36px 0 14px;
  padding-left: 14px;
  border-left: 3px solid var(--accent);
}
.page-content h2:first-child { margin-top: 0; }
.page-content p {
  font-size: 0.895rem;
  color: var(--text-secondary);
  line-height: 1.82;
  margin-bottom: 16px;
}
.page-content p:last-child { margin-bottom: 0; }
.page-content a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }
.page-content ul {
  padding-left: 20px;
  margin-bottom: 16px;
}
.page-content ul li {
  font-size: 0.895rem;
  color: var(--text-secondary);
  line-height: 1.78;
  margin-bottom: 8px;
}

.page-nav {
  margin-top: 52px;
  padding-top: 28px;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
}
.page-nav a {
  font-size: 0.82rem;
  color: var(--text-secondary);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: color var(--speed) var(--ease);
}
.page-nav a::before { content: '→'; color: var(--accent); font-size: 0.78rem; }
.page-nav a:hover { color: var(--accent); }

/* ============================================================
   TABLET — max 860px
   ============================================================ */
@media (max-width: 860px) {
  .info-grid { grid-template-columns: 1fr; gap: 36px; }
}

/* ============================================================
   MOBILE — max 640px
   ============================================================ */
@media (max-width: 640px) {
  :root { --pad: 20px; }

  .site-header {
    height: auto;
    min-height: 68px;
    padding: 12px 0;
  }
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .site-nav {
    width: 100%;
    gap: 18px;
    flex-wrap: wrap;
  }
  .nav-link {
    font-size: 0.8rem;
  }

  /* Hero extra bottom padding so card can overlap it */
  .hero {
    padding: 38px 0 154px;
  }
  .hero-title {
    font-size: clamp(2.15rem, 10vw, 3rem);
    line-height: 1.02;
    margin-bottom: 16px;
  }
  .hero-sub {
    max-width: 100%;
    font-size: 0.9rem;
    line-height: 1.65;
  }

  /* Pull the card up into the hero area by ~half its height */
  .brands {
    position: relative;
    z-index: 10;
    margin-top: -118px;
    padding: 0 0 44px;
  }

  /* Full-width card: override container padding */
  .brands .container {
    padding-left: 0;
    padding-right: 0;
    max-width: 100%;
  }

  /* Card full-width, squared corners, explicit grid (Betsson) */
  .brand-card {
    width: 100%;
    border-radius: 0;
    margin: 0;
  }
  .brand-card:hover {
    transform: none;
  }
  .brand-body {
    display: grid;
    grid-template-columns: auto 1fr auto;
    grid-template-rows: auto auto auto;
    grid-template-areas:
      "rank logo   score"
      "offer offer offer"
      "cta   cta   cta";
    align-items: center;
    column-gap: 14px;
    row-gap: 12px;
    padding: 16px 18px 14px;
  }
  .brand-rank {
    grid-area: rank;
    width: 36px;
    height: 36px;
    font-size: 0.95rem;
    align-self: center;
  }
  .brand-logo {
    grid-area: logo;
    width: 100%;
    max-width: 132px;
    min-height: 44px;
    justify-self: start;
    padding: 6px 10px;
  }
  .brand-logo img {
    max-height: 36px;
  }

  .brand-score {
    grid-area: score;
    min-width: 0;
    margin-left: 0;
    justify-self: end;
    align-self: center;
    align-items: flex-end;
  }
  .score-num   { font-size: 1.5rem; }
  .score-label { font-size: 0.5rem; letter-spacing: 0.08em; }
  .score-stars {
    margin-top: 4px;
    justify-content: flex-end;
  }
  .score-stars img { width: 10px; height: 10px; }

  .brand-offer {
    grid-area: offer;
    font-size: 0.86rem;
    line-height: 1.45;
    padding-top: 2px;
  }

  .btn-bonus {
    grid-area: cta;
    width: 100%;
    max-width: none;
    padding: 13px 18px;
    font-size: 0.9rem;
    border-radius: var(--radius-sm);
    animation: none;
    justify-self: stretch;
    box-sizing: border-box;
  }

  .brand-disclaimer {
    padding: 10px 18px 12px;
    font-size: 0.66rem;
    line-height: 1.45;
  }

  .info-section { padding: 44px 0 44px; }
  .info-col h2 {
    font-size: 1.02rem;
    margin-bottom: 14px;
  }
  .info-col p {
    font-size: 0.82rem;
    line-height: 1.7;
  }
  .info-links {
    flex-direction: column;
    gap: 10px;
    padding-top: 20px;
  }

  .responsible-section {
    padding: 36px 0;
  }
  .responsible-label {
    font-size: 0.64rem;
    margin-bottom: 18px;
    line-height: 1.5;
  }
  .resp-logos {
    gap: 12px 16px;
  }

  .disclaimer-section {
    padding: 24px 0;
  }
  .disclaimer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .disclaimer-icon  { height: 40px; }
  .disclaimer-text {
    font-size: 0.8rem;
    line-height: 1.65;
  }

  .resp-logos img  { height: 34px; }
  .resp-arrow-img  { height: 18px; }
  .resp-badge img  { height: 34px; }

  .site-footer {
    padding: 24px 0 calc(92px + env(safe-area-inset-bottom));
  }
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .footer-copy,
  .footer-links a {
    font-size: 0.75rem;
  }
  .footer-links {
    flex-direction: column;
    gap: 8px;
  }

  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 20px calc(16px + env(safe-area-inset-bottom));
  }
  .cookie-text {
    max-width: none;
    font-size: 0.78rem;
  }
  .cookie-btn {
    width: 100%;
    text-align: center;
  }

  .page-hero { padding: 48px 0 52px; }
  .page-title {
    font-size: clamp(1.9rem, 9vw, 2.45rem);
  }
  .page-lead,
  .page-content p,
  .page-content ul li {
    font-size: 0.84rem;
    line-height: 1.72;
  }
  .page-nav  { flex-direction: column; }
}

@media (max-width: 420px) {
  .brand-body {
    column-gap: 10px;
    row-gap: 10px;
    padding: 14px 14px 12px;
  }
  .brand-rank {
    width: 32px;
    height: 32px;
    font-size: 0.88rem;
  }
  .brand-logo {
    max-width: 118px;
    min-height: 40px;
    padding: 5px 8px;
  }
  .brand-logo img {
    max-height: 32px;
  }
  .score-num {
    font-size: 1.32rem;
  }
  .score-stars img {
    width: 9px;
    height: 9px;
  }
  .brand-offer {
    font-size: 0.8rem;
  }
  .btn-bonus {
    font-size: 0.86rem;
    padding: 12px 14px;
  }
  .hero-title {
    font-size: clamp(1.95rem, 10vw, 2.45rem);
  }
}
