:root {
  --bg: #050505;
  --surface: #0F0F0F;
  --text: #FAFAFA;
  --muted: #A3A3A3;
  --primary: #EAB308;
  --secondary: #CA8A04;
  --accent: #22C55E;
  --border: rgba(250, 250, 250, 0.14);
  --style-keywords: organic, natural, blob shapes, fluid, soft gradients, playful;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  background-image:
    radial-gradient(ellipse 80% 50% at 20% 0%, rgba(234, 179, 8, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 100%, rgba(34, 197, 94, 0.06) 0%, transparent 55%),
    linear-gradient(180deg, var(--bg) 0%, #0a0a0a 50%, var(--bg) 100%);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1 0 auto;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 15% 25%, rgba(234, 179, 8, 0.04) 0%, transparent 25%),
    radial-gradient(circle at 85% 75%, rgba(34, 197, 94, 0.03) 0%, transparent 20%);
  pointer-events: none;
  z-index: 0;
}

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

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

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

.disclosure-banner {
  position: relative;
  z-index: 100;
  width: 100%;
  background: #0a0a0a;
  color: #22c55e;
  font-family: "Courier New", Courier, monospace;
  font-size: 11px;
  text-align: center;
  padding: 6px 16px;
  line-height: 1.5;
}

.disclosure-banner::before {
  content: "> ";
  color: #eab308;
}

.navbar-wrap {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(5, 5, 5, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.navbar {
  max-width: 1200px;
  margin: 0 auto;
  height: 50px;
  display: flex;
  align-items: center;
  padding: 0 20px;
}

.navbar-inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.navbar-logo img {
  height: 32px;
  width: auto;
}

.navbar-links {
  display: none;
  list-style: none;
  align-items: center;
  gap: 20px;
}

.navbar-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.6;
  transition: opacity 0.2s;
  color: var(--text);
}

.navbar-links a:hover {
  opacity: 1;
  color: var(--primary);
}

.navbar-links svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.burger-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
  padding: 8px;
}

.burger-btn span {
  display: block;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: background 0.2s;
}

.burger-btn:hover span {
  background: var(--primary);
}

.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(5, 5, 5, 0.97);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

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

.mobile-overlay ul {
  list-style: none;
  text-align: center;
}

.mobile-overlay a {
  display: block;
  padding: 14px 24px;
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
}

.overlay-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: transparent;
  border: none;
  color: var(--text);
  font-size: 28px;
  cursor: pointer;
}

.footer {
  position: relative;
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 48px 24px 32px;
  margin-top: 48px;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--primary), var(--accent), transparent);
  opacity: 0.5;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  margin-bottom: 32px;
}

.footer-logo img {
  height: 36px;
  width: auto;
  margin-bottom: 12px;
}

.footer-tagline {
  font-size: 14px;
  color: var(--muted);
  max-width: 280px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
}

.footer-links a {
  font-size: 13px;
  color: var(--muted);
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-bottom: 24px;
}

.footer-badges a {
  display: block;
}

.footer-badges img {
  height: 40px;
  width: auto;
  opacity: 0.85;
  transition: opacity 0.2s;
}

.footer-badges a:hover img {
  opacity: 1;
}

.footer-disclosure {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.6;
  max-width: 900px;
  margin-bottom: 16px;
}

.footer-copy {
  font-size: 12px;
  color: rgba(163, 163, 163, 0.7);
}

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

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

.modal-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  max-width: 440px;
  width: 100%;
  text-align: center;
}

.modal-box h2 {
  font-size: 22px;
  margin-bottom: 12px;
  color: var(--text);
}

.modal-box p {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 24px;
}

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

.modal-btn {
  padding: 12px 24px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: transform 0.15s, background 0.15s;
}

.modal-btn-accept {
  background: var(--primary);
  color: var(--bg);
}

.modal-btn-accept:hover {
  background: var(--secondary);
}

.modal-btn-decline {
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--border);
}

.cookie-banner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 250;
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 16px 24px;
}

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

.cookie-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.cookie-inner p {
  font-size: 13px;
  color: var(--muted);
  flex: 1;
  min-width: 200px;
}

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

.page-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  padding: 48px 24px 64px;
}

.page-content h1 {
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--text);
  border-radius: 8px;
}

.page-content h2 {
  font-size: 20px;
  font-weight: 600;
  margin: 28px 0 12px;
  color: var(--primary);
}

.page-content h3 {
  font-size: 16px;
  font-weight: 600;
  margin: 20px 0 8px;
  color: var(--text);
}

.page-content p {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 14px;
  line-height: 1.7;
}

.page-content ul {
  margin: 12px 0 16px 20px;
  color: var(--muted);
}

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

.page-content a {
  color: var(--primary);
}

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

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--text);
  font-size: 15px;
  font-family: inherit;
}

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

.form-error {
  display: none;
  font-size: 13px;
  color: #ef4444;
  margin-top: 6px;
}

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

.btn-submit {
  align-self: flex-start;
  padding: 14px 28px;
  background: var(--primary);
  color: var(--bg);
  border: none;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-submit:hover {
  background: var(--secondary);
}

.form-success {
  display: none;
  padding: 24px;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 16px;
  margin-top: 24px;
}

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

.form-success p {
  color: var(--text);
  margin-bottom: 8px;
}

.redirect-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
  text-align: center;
  background: var(--bg);
}

.ad-label {
  font-size: 14px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 24px;
}

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

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

.redirect-page p {
  color: var(--muted);
  font-size: 15px;
  max-width: 480px;
  margin-bottom: 12px;
}

.redirect-notes {
  font-size: 12px !important;
  color: rgba(163, 163, 163, 0.7) !important;
}

.redirect-notes a {
  color: var(--accent);
}

.error-page {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 24px;
}

.error-page h1 {
  font-size: 72px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 16px;
}

.error-page p {
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 32px;
}

.error-page a {
  padding: 14px 28px;
  background: var(--primary);
  color: var(--bg);
  border-radius: 12px;
  font-weight: 600;
}

@media (min-width: 900px) {
  .navbar-links {
    display: flex;
  }

  .burger-btn {
    display: none;
  }
}

@media (max-width: 375px) {
  .hero-collage,
  .deco-wrap,
  .sub-sidebar,
  .sub-sidebar-img,
  .sub-poker-img-rail,
  .sub-poker-img-rail img,
  .sub-roulette-hero {
    max-width: 100%;
    overflow: hidden;
  }

  .deco-wrap img,
  .sub-sidebar-img,
  .sub-poker-img-rail img {
    max-width: 100%;
    max-height: 200px;
    width: 100%;
    height: auto;
  }

  .hero-img {
    max-width: 140px;
    max-height: 110px;
  }
}

.hero {
  position: relative;
  min-height: 350px;
  padding: 48px 24px 56px;
  overflow: hidden;
  background: var(--surface);
}

.hero::before {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  top: -80px;
  right: -60px;
  background: radial-gradient(circle, rgba(234, 179, 8, 0.15) 0%, transparent 70%);
  border-radius: 60% 40% 55% 45%;
  filter: blur(2px);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  bottom: -40px;
  left: -40px;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.1) 0%, transparent 65%);
  border-radius: 45% 55% 40% 60%;
  pointer-events: none;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero-collage {
  position: relative;
  height: 220px;
  max-width: 520px;
  margin: 0 auto 28px;
}

.hero-img {
  position: absolute;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
  border: 2px solid var(--border);
}

.hero-img-1 {
  width: 200px;
  height: 160px;
  top: 10px;
  left: 50%;
  transform: translateX(-70%) rotate(-5deg);
  z-index: 1;
}

.hero-img-2 {
  width: 160px;
  height: 130px;
  top: 30px;
  left: 50%;
  transform: translateX(-10%) rotate(3deg);
  z-index: 2;
}

.hero-img-3 {
  width: 140px;
  height: 110px;
  top: 60px;
  left: 50%;
  transform: translateX(-45%) rotate(-2deg);
  z-index: 3;
}

.hero h1 {
  position: relative;
  text-align: center;
  font-size: clamp(26px, 4.5vw, 42px);
  font-weight: 800;
  color: #fff;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.8), 0 0 40px rgba(234, 179, 8, 0.2);
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.hero-sub {
  text-align: center;
  font-size: 17px;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.wave-divider {
  display: block;
  width: 100%;
  height: 48px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 48' preserveAspectRatio='none'%3E%3Cpath d='M0,24 Q300,0 600,24 T1200,24 L1200,48 L0,48 Z' fill='%230F0F0F'/%3E%3C/svg%3E") no-repeat center;
  background-size: 100% 100%;
}

.offers-section {
  position: relative;
  padding: 64px 24px;
  background-image: url('/images/offers_bg/offers_bg.webp');
  background-size: cover;
  background-position: center;
}

.offers-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(5, 5, 5, 0.88) 0%, rgba(15, 15, 15, 0.92) 100%);
}

.offers-section::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  bottom: -100px;
  right: -80px;
  background: radial-gradient(circle, rgba(234, 179, 8, 0.08) 0%, transparent 70%);
  border-radius: 50% 40% 60% 50%;
  pointer-events: none;
}

.offers-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

.offers-inner h2 {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  text-align: center;
  margin-bottom: 36px;
  color: var(--text);
}

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

.offer-card {
  background: #1a2332;
  border: 3px solid #D4AF37;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-radius: 4px;
}

.offer-card:nth-child(2) {
  border-width: 5px;
}

.offer-card:nth-child(4) {
  border-color: #c9a227;
  border-width: 4px;
}

.offer-logo {
  width: 200px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin: 0 auto;
  flex-shrink: 0;
}

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

.offer-name {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}

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

.offer-bonus {
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  line-height: 1.35;
  word-break: break-word;
  overflow-wrap: break-word;
}

.offer-terms {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.offer-desc {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.5;
}

.offer-cta {
  display: block;
  text-align: center;
  padding: 12px 16px;
  background: #D4AF37;
  color: #1C1917;
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-decoration: none;
  border: 2px solid #fff;
  margin-top: auto;
  cursor: pointer;
}

.offer-cta:hover {
  background: #e8c84a;
  color: #1C1917;
}

.info-sections {
  position: relative;
}

.info-block {
  position: relative;
  padding: 56px 24px;
  overflow: hidden;
}

.info-block::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  opacity: 0.06;
  pointer-events: none;
  background: var(--primary);
  border-radius: 60% 40% 50% 50%;
}

.info-1::before { top: -60px; right: -40px; }

.info-2::before { bottom: -80px; left: -60px; background: var(--accent); }

.info-3::before { top: 20%; left: 70%; }

.info-4::before { bottom: -50px; right: 10%; background: var(--accent); }

.info-5::before { top: -40px; left: 20%; }

.info-6::before { bottom: -70px; right: -30px; }

.info-7::before { top: 10%; right: -50px; background: var(--accent); }

.info-8::before { bottom: 0; left: -40px; }

.info-9::before { top: -30px; right: 30%; background: var(--accent); }

.info-10::before { bottom: -60px; left: 40%; }

.info-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.info-block h2 {
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text);
  letter-spacing: -0.01em;
}

.info-block p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 14px;
}

.info-cta {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--bg);
  font-weight: 700;
  font-size: 14px;
  border-radius: 24px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.info-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(234, 179, 8, 0.25);
  color: var(--bg);
}

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

.layout-split-reverse {
  direction: rtl;
}

.layout-split-reverse > * {
  direction: ltr;
}

.deco-wrap {
  position: relative;
  max-width: 500px;
}

.deco-wrap img {
  max-width: 500px;
  max-height: 320px;
  border-radius: 24px;
  object-fit: cover;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

.layout-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 20px;
}

.info-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 20px;
}

.info-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

.info-card p {
  font-size: 13px;
  margin-bottom: 0;
}

.layout-numbered {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  align-items: start;
}

.info-num {
  font-size: 48px;
  font-weight: 800;
  color: var(--primary);
  opacity: 0.4;
  line-height: 1;
}

.layout-list-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.info-list {
  list-style: none;
  margin: 16px 0;
}

.info-list li {
  padding: 10px 0 10px 24px;
  position: relative;
  font-size: 15px;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
}

.info-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
}

.layout-band {
  background: linear-gradient(90deg, rgba(234, 179, 8, 0.08), rgba(34, 197, 94, 0.06));
  border-radius: 24px;
  padding: 32px;
  border: 1px solid var(--border);
}

.layout-quote {
  border-left: 4px solid var(--primary);
  padding-left: 24px;
  margin: 20px 0;
}

.layout-quote p {
  font-size: 17px;
  font-style: italic;
  color: var(--text);
}

.layout-timeline {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
}

.timeline-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.timeline-dot {
  width: 12px;
  height: 12px;
  background: var(--primary);
  border-radius: 50%;
  margin-top: 6px;
  flex-shrink: 0;
}

.layout-mosaic {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.mosaic-cell {
  background: var(--surface);
  border-radius: 16px;
  padding: 20px;
  border: 1px solid var(--border);
}

.mosaic-cell h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 8px;
}

.mosaic-cell p {
  font-size: 13px;
  margin-bottom: 0;
}

.layout-stacked {
  max-width: 720px;
}

.layout-stacked-accent {
  background: var(--surface);
  border-radius: 20px;
  padding: 32px;
  border: 1px solid var(--border);
}

.layout-columns-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 20px;
}

.col-feature {
  text-align: center;
  padding: 24px 16px;
  background: rgba(15, 15, 15, 0.6);
  border-radius: 20px;
  border: 1px solid var(--border);
}

.col-feature .feat-icon {
  font-size: 28px;
  margin-bottom: 12px;
}

.col-feature h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

.col-feature p {
  font-size: 13px;
  margin-bottom: 0;
}

.layout-roulette {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 32px;
}

.roulette-sidebar {
  background: linear-gradient(180deg, var(--surface), rgba(15, 15, 15, 0.5));
  border-radius: 20px;
  padding: 24px;
  border: 1px solid var(--border);
}

.roulette-sidebar h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 12px;
}

.roulette-sidebar ul {
  list-style: none;
}

.roulette-sidebar li {
  font-size: 13px;
  color: var(--muted);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}

@media (max-width: 899px) {
  .hero-collage {
    display: none;
  }

  .hero {
    min-height: 280px;
    background-image: linear-gradient(rgba(5, 5, 5, 0.65), rgba(5, 5, 5, 0.75)), url('/images/decorative/decor_1.webp');
    background-size: cover;
    background-position: center;
  }

  .hero h1,
  .hero-sub {
    text-align: center;
  }

  .layout-split,
  .layout-split-reverse,
  .layout-list-grid,
  .layout-roulette,
  .layout-columns-3,
  .layout-cards,
  .layout-mosaic {
    grid-template-columns: 1fr;
  }

  .layout-numbered {
    grid-template-columns: 1fr;
  }

  .info-num {
    font-size: 32px;
  }

  .offer-logo {
    width: 180px;
    height: 64px;
  }

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