.hero {
  display: flex;
  gap: 16px;
  max-width: 1200px;
  margin: 24px auto 40px;
  padding: 0 24px;
  align-items: flex-end;
}

.hero-left {
  flex: 1.15;
  min-height: 340px;
  background: var(--primary);
  border: 4px solid #000000;
  box-shadow: 8px 8px 0 #000000;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  animation: pop-in 0.6s ease both;
}

.hero-brand {
  font-family: var(--font);
  font-size: clamp(36px, 7vw, 64px);
  font-weight: 900;
  line-height: 0.95;
  color: #ffffff;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.hero-title {
  font-family: var(--font);
  font-size: clamp(16px, 2.4vw, 22px);
  font-weight: 800;
  color: rgba(255, 255, 255, 0.92);
  max-width: 420px;
  line-height: 1.25;
}

.hero-right {
  flex: 0.85;
  min-height: 220px;
  background: var(--secondary);
  border: 4px solid #000000;
  box-shadow: 8px 8px 0 #000000;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  text-align: right;
  animation: slide-accent 0.55s ease both;
}

.hero-sub {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  color: #0F172A;
  max-width: 280px;
  margin-bottom: 18px;
}

.hero-cta {
  display: inline-block;
  background: var(--accent);
  color: #0F172A;
  font-family: var(--font);
  font-weight: 900;
  font-size: 13px;
  text-transform: uppercase;
  padding: 12px 18px;
  border: 3px solid #000000;
  box-shadow: 4px 4px 0 #000000;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.hero-cta:hover {
  color: #0F172A;
  transform: translate(-3px, -3px);
  box-shadow: 7px 7px 0 #000000;
}

.offers-section {
  position: relative;
  padding: 48px 24px;
  background-color: var(--surface);
  background-image:
    linear-gradient(rgba(15, 23, 42, 0.82), rgba(15, 23, 42, 0.9)),
    url("/images/offers_bg/offers_bg.webp");
  background-size: cover;
  background-position: center;
  border-top: 4px solid #000000;
  border-bottom: 4px solid #000000;
}

.offers-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 30%, rgba(56, 189, 248, 0.12), transparent 55%);
  pointer-events: none;
}

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

.offers-header {
  margin-bottom: 28px;
}

.offers-header h2 {
  font-family: var(--font);
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 900;
  color: var(--text);
  line-height: 1.05;
  margin-bottom: 8px;
}

.offers-header p {
  color: var(--muted);
  max-width: 560px;
  font-size: 15px;
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.offer-card {
  background: #ffffff;
  border: 4px solid #000000;
  box-shadow: 6px 6px 0 #000000;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
  overflow: hidden;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.offer-card:hover {
  transform: translate(-4px, -4px);
  box-shadow: 10px 10px 0 #000000;
}

.offer-logo-wrap {
  width: 160px;
  height: 80px;
  background: #0F172A;
  border: 2px solid #000000;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

.offer-name {
  font-family: var(--font);
  font-size: 20px;
  font-weight: 900;
  color: #0F172A;
}

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

.offer-bonus {
  font-family: var(--font);
  font-size: 15px;
  font-weight: 800;
  color: #0F172A;
  line-height: 1.3;
  word-break: break-word;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.offer-terms {
  font-size: 11px;
  color: #64748B;
  font-weight: 600;
}

.offer-desc {
  font-size: 12px;
  color: #64748B;
  line-height: 1.45;
}

.offer-cta {
  margin-top: auto;
  display: inline-block;
  text-align: center;
  background: #22C55E;
  color: #0F172A;
  font-family: var(--font);
  font-weight: 900;
  font-size: 13px;
  text-transform: uppercase;
  padding: 12px 16px;
  border: 3px solid #000000;
  box-shadow: 4px 4px 0 #000000;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.offer-cta:hover {
  color: #0F172A;
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 #000000;
}

.info-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px 24px;
  position: relative;
}

.info-section h2 {
  font-family: var(--font);
  font-size: clamp(24px, 3.5vw, 34px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 16px;
  color: var(--text);
}

.info-section p {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 12px;
  max-width: 680px;
}

.info-cta {
  display: inline-block;
  margin-top: 16px;
  font-family: var(--font);
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
  color: #0F172A;
  background: var(--secondary);
  padding: 12px 18px;
  border: 3px solid #000000;
  box-shadow: 4px 4px 0 #000000;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.info-cta:hover {
  color: #0F172A;
  transform: translate(-3px, -3px);
  box-shadow: 7px 7px 0 #000000;
}

.info-1 {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: center;
}

.info-1 .live-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.info-1 .live-chips span {
  background: var(--accent);
  color: #0F172A;
  font-family: var(--font);
  font-weight: 800;
  font-size: 12px;
  padding: 10px 14px;
  border: 3px solid #000000;
  box-shadow: 3px 3px 0 #000000;
}

.info-2 {
  background: var(--surface);
  border: 4px solid #000000;
  box-shadow: 8px 8px 0 #000000;
  margin: 24px auto;
  max-width: 1152px;
}

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

.info-2 .steps {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

.info-2 .steps li {
  background: var(--bg);
  border: 2px solid #000000;
  padding: 10px 14px;
  font-weight: 700;
  color: var(--text);
  font-size: 14px;
}

.info-3 {
  display: block;
}

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

.info-3 .bonus-strip article {
  background: var(--primary);
  border: 3px solid #000000;
  box-shadow: 4px 4px 0 #000000;
  padding: 16px;
  transition: transform 0.15s ease;
}

.info-3 .bonus-strip article:hover {
  transform: translate(-3px, -3px);
}

.info-3 .bonus-strip h3 {
  font-family: var(--font);
  font-size: 16px;
  margin-bottom: 8px;
  color: #ffffff;
}

.info-3 .bonus-strip p {
  font-size: 13px;
  color: rgba(255, 255, 235, 0.85);
  max-width: none;
  margin: 0;
}

.info-4 {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  align-items: center;
  border-left: 8px solid var(--accent);
  padding-left: 28px;
}

.info-4 .pay-visual {
  width: 160px;
  height: 160px;
  background-image: url("/images/decorative/decor_1.jpg");
  background-size: cover;
  background-position: center;
  border: 4px solid #000000;
  box-shadow: 6px 6px 0 #000000;
  max-width: 100%;
}

.info-5 {
  text-align: center;
  background: linear-gradient(135deg, var(--surface), var(--bg));
  border: 4px solid #000000;
  box-shadow: 8px 8px 0 var(--secondary);
  max-width: 1152px;
  margin: 24px auto;
}

.info-5 p {
  margin-left: auto;
  margin-right: auto;
}

.info-5 .poker-row {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.info-5 .poker-row span {
  font-family: var(--font);
  font-size: 20px;
  font-weight: 900;
  background: var(--bg);
  border: 3px solid #000000;
  width: 48px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 3px 3px 0 #000000;
  color: var(--accent);
}

.info-6 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding-left: 0;
  padding-right: 0;
  max-width: 1200px;
}

.info-6 .rtp-col {
  padding: 40px 28px;
  border: 3px solid #000000;
}

.info-6 .rtp-col:first-child {
  background: var(--accent);
  color: #0F172A;
}

.info-6 .rtp-col:first-child h2,
.info-6 .rtp-col:first-child p {
  color: #0F172A;
}

.info-6 .rtp-col:last-child {
  background: var(--secondary);
}

.info-6 .rtp-col:last-child h2,
.info-6 .rtp-col:last-child p {
  color: #0F172A;
}

.info-7 {
  position: relative;
  overflow: hidden;
}

.info-7::after {
  content: "";
  position: absolute;
  right: 24px;
  top: 40px;
  width: min(280px, 40vw);
  height: 200px;
  background-image: url("/images/decorative/decor_2.webp");
  background-size: cover;
  background-position: center;
  border: 3px solid #000000;
  box-shadow: 5px 5px 0 #000000;
  opacity: 0.9;
  pointer-events: none;
}

.info-7 .info-copy {
  position: relative;
  z-index: 1;
  max-width: 560px;
}

.info-7 ul {
  margin: 14px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.info-7 li {
  margin-bottom: 8px;
  font-size: 14px;
}

.info-8 {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 24px;
  align-items: stretch;
}

.info-8 .choose-panel {
  background: var(--surface);
  border: 4px solid #000000;
  box-shadow: 6px 6px 0 #000000;
  padding: 24px;
}

.info-8 .choose-stats {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  gap: 12px;
}

.info-8 .choose-stats div {
  background: var(--primary);
  border: 3px solid #000000;
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: transform 0.15s ease;
}

.info-8 .choose-stats div:hover {
  transform: translateX(6px);
}

.info-8 .choose-stats strong {
  font-family: var(--font);
  font-size: 28px;
  color: var(--accent);
}

.info-8 .choose-stats span {
  font-size: 13px;
  color: var(--text);
  font-weight: 700;
}

.info-9 {
  border-top: 4px dashed var(--border);
  border-bottom: 4px dashed var(--border);
}

.info-9 .tips-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.info-9 .tips-grid article {
  border: 3px solid #000000;
  background: var(--bg);
  padding: 16px;
  box-shadow: 4px 4px 0 #000000;
}

.info-9 .tips-grid h3 {
  font-family: var(--font);
  font-size: 15px;
  margin-bottom: 8px;
  color: var(--secondary);
}

.info-9 .tips-grid p {
  margin: 0;
  font-size: 13px;
  max-width: none;
}

.info-10 {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: end;
  background: var(--surface);
  border: 4px solid #000000;
  box-shadow: 10px 10px 0 #000000;
  max-width: 1152px;
  margin: 24px auto;
  animation: pulse-border 3s ease-in-out infinite;
}

.info-10 .decor-wrap {
  width: 220px;
}

.info-10 .decor-img {
  max-width: 220px;
  max-height: 180px;
}

@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-left,
  .hero-right {
    width: 100%;
    min-height: 200px;
  }

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

  .offer-logo-wrap {
    width: 140px;
    height: 70px;
  }

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

  .offer-bonus {
    font-size: 13px;
  }

  .info-1,
  .info-2 .info-inner,
  .info-4,
  .info-6,
  .info-8,
  .info-10 {
    grid-template-columns: 1fr;
  }

  .info-3 .bonus-strip,
  .info-9 .tips-grid {
    grid-template-columns: 1fr;
  }

  .info-7::after {
    position: relative;
    right: auto;
    top: auto;
    width: 100%;
    max-width: 100%;
    height: 160px;
    display: block;
    margin-top: 20px;
  }

  .info-4 .pay-visual {
    width: 100%;
    max-width: 100%;
    height: 160px;
  }

  .info-10 .decor-wrap {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .info-10 .decor-img {
    max-width: 100%;
    max-height: 180px;
    width: 100%;
  }
}

@media (max-width: 375px) {
  .hero,
  .offers-section,
  .info-section {
    padding-left: 12px;
    padding-right: 12px;
  }

  .info-2,
  .info-5,
  .info-10 {
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .info-4 {
    padding-left: 16px;
  }

  .info-7::after {
    height: 140px;
  }

  .decor-img {
    max-height: 200px;
  }
}
