:root {
  --bg: #F8FAFC;
  --surface: #FFFFFF;
  --text: #020617;
  --muted: #64748B;
  --primary: #0EA5E9;
  --secondary: #38BDF8;
  --accent: #22D3EE;
  --border: rgba(2, 6, 23, 0.12);
  --concrete: #9CA3AF;
  --concrete-dark: #6B7280;
  --concrete-dust: #D1D5DB;
  --nav-dark: #1E293B;
  --max-w: 1200px;
  --font-sans: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-mono: ui-monospace, "Cascadia Mono", "Segoe UI Mono", Menlo, Consolas, monospace;
  --shadow-hard: 6px 6px 0 #020617;
  --shadow-hard-sm: 4px 4px 0 #020617;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.6;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

main {
  flex: 1;
}

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

a {
  color: var(--primary);
  text-decoration: none;
}

a:hover {
  color: var(--secondary);
}

.disclosure-bar {
  width: 100%;
  height: 28px;
  overflow: hidden;
  background: var(--nav-dark);
  padding: 4px 0;
  position: relative;
}

.disclosure-bar__track {
  display: flex;
  white-space: nowrap;
  animation: disclosure-scroll 40s linear infinite;
}

.disclosure-bar__track p {
  font-size: 11px;
  color: #E2E8F0;
  line-height: 20px;
  padding: 0 48px;
  flex-shrink: 0;
}

@keyframes disclosure-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--nav-dark);
  border-bottom: 3px solid var(--text);
}

.header-marquee {
  height: 20px;
  overflow: hidden;
  background: #0F172A;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-marquee__track {
  display: flex;
  white-space: nowrap;
  animation: header-scroll 30s linear infinite;
}

.header-marquee__track span {
  font-size: 10px;
  color: var(--muted);
  line-height: 20px;
  padding: 0 32px;
  font-family: var(--font-mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  flex-shrink: 0;
}

@keyframes header-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.site-header__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
  gap: 16px;
}

.site-header__logo img {
  width: 160px;
  height: 40px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.site-nav a {
  font-size: 12px;
  font-weight: 700;
  font-stretch: expanded;
  color: #E2E8F0;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 4px;
  transition: background 0.2s;
}

.site-nav a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.burger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.06);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 0;
  cursor: pointer;
  padding: 8px;
}

.burger-btn span {
  display: block;
  height: 2px;
  background: #fff;
  transition: transform 0.3s, opacity 0.2s;
}

.burger-btn.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger-btn.open span:nth-child(2) {
  opacity: 0;
}

.burger-btn.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 150;
  background: rgba(2, 6, 23, 0.7);
}

.nav-overlay.open {
  display: block;
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(320px, 85vw);
  z-index: 200;
  background: var(--nav-dark);
  border-left: 4px solid var(--text);
  flex-direction: column;
  padding: 80px 32px 40px;
  gap: 16px;
  box-shadow: -8px 0 0 var(--concrete-dark);
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  font-size: 14px;
  font-weight: 800;
  font-stretch: expanded;
  color: #E2E8F0;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hero {
  position: relative;
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: linear-gradient(rgba(2, 6, 23, 0.72), rgba(2, 6, 23, 0.72)), url("/images/decorative/decor_1.webp");
  background-size: cover;
  background-position: center;
  padding: 48px 20px;
}

.hero__inner {
  text-align: center;
  max-width: 900px;
  position: relative;
  z-index: 1;
}

.hero__ribbon {
  background: var(--accent);
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(-2deg);
  box-shadow: var(--shadow-hard);
  border: 3px solid var(--text);
  margin-bottom: 24px;
}

.hero__ribbon h1 {
  font-size: clamp(1.25rem, 4vw, 2rem);
  font-weight: 900;
  font-stretch: expanded;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.2;
  padding: 0 16px;
}

.hero__subtitle {
  color: #fff;
  font-size: clamp(0.95rem, 2.5vw, 1.15rem);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.5;
}

.offers-section {
  background-image: linear-gradient(rgba(248, 250, 252, 0.92), rgba(248, 250, 252, 0.92)), url("/images/offers_bg/offers_bg.webp");
  background-size: cover;
  background-position: center;
  padding: 64px 20px;
  border-bottom: 4px solid var(--text);
}

.offers-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.offers-inner h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 900;
  font-stretch: expanded;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 8px;
}

.offers-intro {
  color: var(--muted);
  margin-bottom: 32px;
  max-width: 720px;
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.offer-card {
  background: var(--surface);
  border: 3px solid var(--text);
  box-shadow: var(--shadow-hard);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.offer-logo {
  background: #1a1a2e;
  width: 200px;
  height: 80px;
  margin: 24px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-bottom: 3px solid var(--text);
}

.offer-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

.offer-body {
  width: 100%;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.offer-name {
  font-size: 1.25rem;
  font-weight: 800;
  font-stretch: expanded;
}

.offer-bonus-wrap {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.offer-bonus {
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
  font-size: 0.98rem;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.offer-terms {
  font-size: 11px;
  color: var(--muted);
}

.offer-cta {
  margin-top: auto;
  display: inline-block;
  text-align: center;
  padding: 12px 20px;
  background: var(--primary);
  color: #fff;
  border: 2px solid var(--text);
  font-weight: 700;
  font-stretch: expanded;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  cursor: pointer;
  box-shadow: var(--shadow-hard-sm);
  transition: transform 0.15s, box-shadow 0.15s;
}

.offer-cta:hover {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 var(--text);
  color: #fff;
}

.info-section {
  padding: 56px 20px;
  border-bottom: 2px solid var(--border);
}

.info-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.info-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
  padding: 4px 8px;
  border: 2px solid var(--primary);
  background: var(--surface);
}

.info-section h2 {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 900;
  font-stretch: expanded;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
  line-height: 1.2;
}

.info-section p {
  color: var(--text);
  line-height: 1.65;
}

.info-1 {
  background: var(--surface);
}

.info-1__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.info-1__visual {
  position: relative;
}

.decor-wrap {
  border: 3px solid var(--text);
  box-shadow: var(--shadow-hard);
  overflow: hidden;
  max-width: 500px;
  max-height: 320px;
}

.decor-wrap img {
  width: 100%;
  height: auto;
  object-fit: cover;
  max-height: 320px;
}

.info-2 {
  background: var(--concrete-dust);
}

.info-2__band {
  background: var(--text);
  color: #fff;
  padding: 40px;
  box-shadow: var(--shadow-hard);
  border: 3px solid var(--concrete-dark);
}

.info-2__band .info-tag {
  color: var(--accent);
  border-color: var(--accent);
  background: transparent;
}

.info-2__band h2 {
  color: #fff;
}

.info-2__band p {
  color: #CBD5E1;
}

.info-2__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.info-2__stat {
  background: rgba(255, 255, 255, 0.08);
  padding: 16px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  text-align: center;
}

.info-2__stat strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--accent);
}

.info-2__stat span {
  font-size: 12px;
  color: #94A3B8;
  font-family: var(--font-mono);
}

.info-3 {
  background: var(--bg);
}

.info-3__overlap {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
  align-items: end;
}

.info-3__card {
  background: var(--surface);
  padding: 32px;
  border: 3px solid var(--text);
  box-shadow: var(--shadow-hard);
  position: relative;
  z-index: 2;
}

.info-3__card::after {
  content: "";
  position: absolute;
  top: 12px;
  left: 12px;
  right: -12px;
  bottom: -12px;
  background: var(--concrete);
  z-index: -1;
}

.info-4 {
  background: var(--surface);
}

.info-4__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.info-4__step {
  background: var(--bg);
  border: 3px solid var(--text);
  padding: 20px;
  box-shadow: var(--shadow-hard-sm);
}

.info-4__step strong {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--primary);
  margin-bottom: 8px;
  letter-spacing: 0.1em;
}

.info-5 {
  background: linear-gradient(135deg, var(--concrete-dust) 0%, var(--bg) 100%);
}

.info-5__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.info-5__panel {
  background: var(--nav-dark);
  color: #fff;
  padding: 28px;
  border: 3px solid var(--text);
  box-shadow: var(--shadow-hard);
}

.info-5__panel h3 {
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: var(--accent);
}

.info-5__list {
  list-style: none;
}

.info-5__list li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 14px;
}

.info-5__list li::before {
  content: "▸ ";
  color: var(--accent);
}

.info-6 {
  background: var(--surface);
}

.info-6__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: stretch;
}

.info-6__live-bg {
  min-height: 240px;
  background-size: cover;
  background-position: center;
  border: 3px solid var(--text);
  box-shadow: var(--shadow-hard);
}

.info-7 {
  background: var(--bg);
}

.info-7__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 24px;
}

.info-7__card {
  background: var(--surface);
  padding: 24px;
  border: 3px solid var(--text);
  box-shadow: 4px 4px 0 var(--concrete-dark);
}

.info-7__card h3 {
  font-size: 0.95rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: var(--primary);
}

.info-7__card p {
  font-size: 14px;
  color: var(--muted);
}

.info-8 {
  background: var(--concrete-dust);
}

.info-8__quote {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: start;
}

.info-8__mark {
  font-size: 5rem;
  font-weight: 900;
  line-height: 1;
  color: var(--primary);
  opacity: 0.4;
}

.info-9 {
  background: var(--surface);
}

.info-9__feature {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  align-items: start;
}

.info-9__badge {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  background: var(--accent);
  color: var(--text);
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 20px 8px;
  border: 3px solid var(--text);
  box-shadow: var(--shadow-hard-sm);
}

.info-10 {
  background: var(--nav-dark);
  color: #fff;
}

.info-10__banner {
  text-align: center;
}

.info-10__banner .info-tag {
  background: transparent;
}

.info-10__banner h2 {
  color: #fff;
}

.info-10__banner p {
  color: #CBD5E1;
  max-width: 720px;
  margin: 0 auto 24px;
}

.info-10__links {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.info-10__links a {
  padding: 10px 20px;
  background: var(--primary);
  color: #fff;
  border: 2px solid #fff;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.06em;
}

.site-footer {
  background: var(--nav-dark);
  color: #CBD5E1;
  padding: 48px 20px 32px;
  border-top: 4px solid var(--text);
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}

.footer-brand p {
  font-size: 14px;
  margin-top: 12px;
  color: #94A3B8;
}

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

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  justify-content: flex-end;
}

.footer-nav a {
  font-size: 13px;
  color: #E2E8F0;
}

.footer-nav a:hover {
  color: var(--accent);
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-badges img {
  height: 48px;
  width: auto;
}

.footer-dgoj {
  font-size: 11px;
  line-height: 1.55;
  color: #64748B;
  margin-top: 20px;
}

.footer-copy {
  font-size: 12px;
  color: #475569;
  margin-top: 16px;
}

.footer-cookie-link {
  display: inline-block;
  margin-top: 12px;
  font-size: 12px;
  color: var(--muted);
}

.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(2, 6, 23, 0.85);
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-overlay.active {
  display: flex;
}

.modal-box {
  background: var(--surface);
  border: 4px solid var(--text);
  box-shadow: 12px 12px 0 var(--text);
  padding: 32px;
  max-width: 480px;
  width: 100%;
}

.modal-box h2 {
  font-size: 1.25rem;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.modal-box p {
  color: var(--muted);
  margin-bottom: 20px;
}

.modal-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 20px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  border: 2px solid var(--text);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: var(--shadow-hard-sm);
}

.btn-outline {
  background: var(--surface);
  color: var(--text);
}

.cookie-banner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: var(--surface);
  border-top: 4px solid var(--text);
  box-shadow: 0 -6px 0 var(--concrete-dark);
  padding: 20px;
}

.cookie-banner.active {
  display: block;
}

.cookie-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.cookie-inner > p {
  margin-bottom: 16px;
  font-size: 14px;
  color: var(--muted);
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-panel {
  display: none;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 2px solid var(--border);
}

.cookie-panel.visible {
  display: block;
}

.cookie-panel p {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 12px;
}

.subpage-header {
  background: var(--nav-dark);
  border-bottom: 3px solid var(--text);
}

.subpage-header__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 16px 20px;
  display: flex;
  align-items: center;
}

.subpage-header__logo img {
  width: 160px;
  height: 40px;
}

.content-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 48px 20px 64px;
}

.content-page h1 {
  font-size: 2rem;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 24px;
  border-bottom: 4px solid var(--text);
  padding-bottom: 12px;
}

.content-page h2 {
  font-size: 1.25rem;
  font-weight: 800;
  margin: 28px 0 12px;
  color: var(--text);
}

.content-page h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 20px 0 8px;
}

.content-page p {
  margin-bottom: 12px;
  line-height: 1.65;
}

.content-page ul {
  margin: 12px 0 12px 24px;
}

.content-page li {
  margin-bottom: 8px;
}

.contact-form {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-form.is-hidden {
  display: none;
}

.contact-form label {
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border: 2px solid var(--text);
  background: var(--surface);
  font-family: inherit;
  font-size: 15px;
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.form-error {
  display: none;
  color: #DC2626;
  font-size: 13px;
}

.form-error.visible {
  display: block;
}

.contact-success {
  display: none;
  margin-top: 24px;
  padding: 24px;
  background: #ECFDF5;
  border: 3px solid #059669;
  box-shadow: var(--shadow-hard-sm);
}

.contact-success.visible {
  display: block;
}

.contact-success p {
  color: #065F46;
  font-weight: 600;
}

.page-404 {
  text-align: center;
  padding: 80px 20px;
}

.page-404 h1 {
  font-size: 6rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
}

.page-404 p {
  margin: 16px 0 32px;
  color: var(--muted);
}

.go-redirect {
  background: var(--bg);
}

.go-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  text-align: center;
}

.go-ad {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 24px;
}

.go-spinner {
  width: 48px;
  height: 48px;
  border: 4px solid var(--border);
  border-top-color: var(--primary);
  animation: spin 0.8s linear infinite;
  margin-bottom: 24px;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.go-page h1 {
  font-size: 1.5rem;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.go-compliance {
  margin-top: 32px;
  max-width: 480px;
  font-size: 13px;
  color: var(--muted);
}

.go-compliance p {
  margin-bottom: 8px;
}

@media (max-width: 900px) {
  .header-marquee {
    display: none;
  }

  .site-nav {
    display: none;
  }

  .burger-btn {
    display: flex;
  }

  .info-1__layout,
  .info-3__overlap,
  .info-5__split,
  .info-6__grid,
  .info-7__cards,
  .info-4__steps,
  .info-2__stats {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-nav {
    justify-content: flex-start;
  }

  .info-9__feature {
    grid-template-columns: 1fr;
  }

  .info-9__badge {
    writing-mode: horizontal-tb;
    transform: none;
    display: inline-block;
    margin-bottom: 16px;
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: 220px;
    padding: 32px 16px;
  }

  .hero__ribbon {
    transform: none;
    height: auto;
    min-height: 60px;
    padding: 12px 0;
  }

  .decor-wrap {
    max-width: 100%;
  }

  .decor-wrap img,
  .info-6__live-bg {
    max-width: 100%;
  }

  .offer-logo {
    width: 168px;
    height: 68px;
  }

  .offer-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
  }

  .offer-bonus {
    font-size: 0.92rem;
  }
}
