.hero {
  padding: 24px;
  max-width: var(--max-w);
  margin: 0 auto;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: minmax(150px, auto) minmax(150px, auto);
  gap: 4px;
  min-height: 300px;
}

.hero-cell {
  position: relative;
  overflow: hidden;
  min-height: 150px;
}

.hero-headline {
  background: var(--surface);
  display: flex;
  align-items: center;
  padding: 28px 24px;
  border: 1px solid var(--border);
  box-shadow: inset 0 0 0 1px rgba(201, 162, 39, 0.25);
}

.hero-headline h1 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.85rem);
  line-height: 1.15;
  letter-spacing: 0.02em;
  font-variant: small-caps;
  color: var(--text);
  text-shadow: 0 1px 0 rgba(201, 162, 39, 0.35);
}

.hero-media {
  background: var(--bg);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 150px;
  max-height: 320px;
}

.hero-subtitle {
  background: var(--surface);
  display: flex;
  align-items: center;
  padding: 24px;
  border: 1px solid var(--border);
}

.hero-subtitle p {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 36ch;
}

.hero-gear {
  position: absolute;
  width: 56px;
  height: 56px;
  border: 3px solid rgba(201, 162, 39, 0.55);
  border-radius: 50%;
  bottom: 12px;
  right: 12px;
  animation: gear-spin 8s linear infinite;
  pointer-events: none;
}

.hero-gear::before,
.hero-gear::after {
  content: "";
  position: absolute;
  inset: 8px;
  border: 2px dashed rgba(184, 115, 51, 0.5);
  border-radius: 50%;
}

.hero-gear::after {
  inset: 16px;
  animation: gear-spin 4s linear infinite reverse;
}

@media (max-width: 767px) {
  .hero-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    min-height: 0;
  }

  .hero-cell:nth-child(3) {
    display: none;
  }

  .hero-media img {
    max-height: 220px;
  }
}

.offers-section {
  padding: 40px 24px 48px;
  background-image:
    linear-gradient(180deg, rgba(42, 21, 21, 0.72), rgba(42, 21, 21, 0.85)),
    url("/images/offers_bg/offers_bg.webp");
  background-size: cover;
  background-position: center;
  position: relative;
}

.offers-section::before {
  content: "gears";
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

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

.offers-section h2 {
  font-family: var(--font-display);
  color: #fff;
  font-variant: small-caps;
  letter-spacing: 0.06em;
  text-align: center;
  font-size: 1.75rem;
  margin-bottom: 8px;
}

.offers-lead {
  text-align: center;
  color: rgba(255, 240, 240, 0.78);
  margin-bottom: 28px;
  font-size: 0.95rem;
}

.info-wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 8px 24px 40px;
}

.info-section {
  margin: 28px 0;
  position: relative;
  overflow: hidden;
}

.info-section h2 {
  font-family: var(--font-display);
  font-variant: small-caps;
  letter-spacing: 0.04em;
  font-size: 1.45rem;
  margin-bottom: 12px;
  color: var(--text);
}

.info-section p {
  margin-bottom: 12px;
  color: var(--text);
}

.info-cta {
  display: inline-block;
  margin-top: 8px;
  padding: 10px 18px;
  background: linear-gradient(180deg, var(--brass), var(--copper));
  color: #1f1010;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  border: 1px solid rgba(92, 42, 42, 0.25);
  box-shadow: 0 2px 0 rgba(92, 42, 42, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.info-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 0 rgba(92, 42, 42, 0.2);
}

#info-1 {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 20px;
  align-items: center;
  background: var(--surface);
  padding: 28px;
  border: 2px solid rgba(201, 162, 39, 0.35);
  box-shadow: inset 0 0 30px rgba(255, 77, 77, 0.04);
}

#info-1 .info-visual {
  min-height: 180px;
  background-image: url("/images/decorative/decor_3.jpg");
  background-size: cover;
  background-position: center;
  border: 1px solid var(--border);
  max-height: 280px;
}

@media (max-width: 767px) {
  #info-1 {
    grid-template-columns: 1fr;
  }
}

#info-2 {
  background: linear-gradient(135deg, var(--surface) 60%, rgba(255, 179, 179, 0.25));
  padding: 28px 28px 28px 36px;
  border-left: 6px solid var(--brass);
  box-shadow: 4px 4px 0 rgba(184, 115, 51, 0.15);
}

#info-2 .odds-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

#info-2 .odds-chips span {
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 6px 12px;
  font-size: 0.85rem;
  font-family: var(--font-display);
  color: var(--text);
}

#info-3 {
  text-align: center;
  padding: 36px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  position: relative;
}

#info-3::before,
#info-3::after {
  content: "";
  position: absolute;
  width: 40px;
  height: 40px;
  border: 2px solid var(--brass);
  border-radius: 50%;
  top: 16px;
  animation: gear-spin 10s linear infinite;
}

#info-3::before {
  left: 16px;
}

#info-3::after {
  right: 16px;
  animation-direction: reverse;
}

#info-3 .boost-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 16px;
  text-align: left;
}

#info-3 .boost-list li {
  list-style: none;
  background: var(--bg);
  padding: 12px;
  border-top: 3px solid var(--copper);
  font-size: 0.9rem;
}

@media (max-width: 700px) {
  #info-3 .boost-list {
    grid-template-columns: 1fr;
  }
}

#info-4 {
  display: flex;
  flex-direction: row-reverse;
  gap: 24px;
  align-items: stretch;
  background: #2a1515;
  color: #fff0f0;
  padding: 0;
  overflow: hidden;
}

#info-4 .info-copy {
  padding: 28px;
  flex: 1;
}

#info-4 h2 {
  color: var(--accent);
}

#info-4 p {
  color: rgba(255, 240, 240, 0.85);
}

#info-4 .pulse-rail {
  width: 8px;
  background: linear-gradient(180deg, var(--brass), var(--primary), var(--brass));
  background-size: 100% 200%;
  animation: rail-flow 3s linear infinite;
}

@keyframes rail-flow {
  to {
    background-position: 0 200%;
  }
}

@media (max-width: 600px) {
  #info-4 {
    flex-direction: column-reverse;
  }

  #info-4 .pulse-rail {
    width: 100%;
    height: 6px;
  }
}

#info-5 {
  background: var(--surface);
  padding: 28px;
  border: 1px solid var(--border);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 24px;
}

#info-5 h2 {
  grid-column: 1 / -1;
}

#info-5 .pay-note {
  grid-column: 1 / -1;
  font-size: 0.9rem;
  color: var(--muted);
}

#info-5 .pay-tile {
  background: var(--bg);
  padding: 14px;
  border: 1px solid var(--border);
  border-bottom: 3px solid var(--brass);
}

#info-5 .pay-tile strong {
  display: block;
  font-family: var(--font-display);
  margin-bottom: 4px;
}

@media (max-width: 600px) {
  #info-5 {
    grid-template-columns: 1fr;
  }
}

#info-6 {
  padding: 32px 28px;
  background:
    linear-gradient(90deg, rgba(255, 240, 240, 0.92), rgba(255, 240, 240, 0.88)),
    repeating-linear-gradient(
      -12deg,
      transparent,
      transparent 12px,
      rgba(201, 162, 39, 0.08) 12px,
      rgba(201, 162, 39, 0.08) 13px
    );
  border-top: 4px double var(--copper);
  border-bottom: 4px double var(--copper);
}

#info-6 .steps {
  counter-reset: step;
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
  display: grid;
  gap: 10px;
}

#info-6 .steps li {
  counter-increment: step;
  padding-left: 48px;
  position: relative;
}

#info-6 .steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--brass), var(--copper));
  color: #1f1010;
  font-family: var(--font-display);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
}

#info-7 {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: start;
  background: var(--surface);
  padding: 24px;
  border: 1px solid var(--border);
}

#info-7 .rugby-mark {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--accent), var(--primary));
  border: 3px solid var(--brass);
  box-shadow: 0 0 0 4px rgba(201, 162, 39, 0.2);
  animation: gear-spin 14s linear infinite;
}

@media (max-width: 600px) {
  #info-7 {
    grid-template-columns: 1fr;
  }
}

#info-8 {
  position: relative;
  padding: 32px 28px;
  background: var(--surface);
  overflow: hidden;
}

#info-8::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: min(38%, 280px);
  background-image: url("/images/decorative/decor_4.png");
  background-size: cover;
  background-position: center;
  opacity: 0.35;
  pointer-events: none;
  mask-image: linear-gradient(90deg, transparent, #000 40%);
}

#info-8 .info-copy {
  position: relative;
  z-index: 1;
  max-width: 58ch;
}

@media (max-width: 700px) {
  #info-8::after {
    width: 100%;
    height: 120px;
    bottom: auto;
    mask-image: linear-gradient(180deg, #000, transparent);
  }

  #info-8 {
    padding-top: 140px;
  }
}

#info-9 {
  background: var(--bg);
  padding: 28px;
  border: 2px solid var(--border);
  outline: 1px solid rgba(201, 162, 39, 0.3);
  outline-offset: 6px;
}

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

#info-9 .bet-grid article {
  background: var(--surface);
  padding: 14px;
  border-left: 3px solid var(--primary);
}

#info-9 .bet-grid h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  margin-bottom: 6px;
  font-variant: small-caps;
}

#info-9 .bet-grid p {
  font-size: 0.9rem;
  margin: 0;
  color: var(--muted);
}

@media (max-width: 600px) {
  #info-9 .bet-grid {
    grid-template-columns: 1fr;
  }
}

#info-10 {
  text-align: left;
  padding: 36px 28px;
  background: linear-gradient(160deg, var(--surface), rgba(255, 179, 179, 0.2));
  border: 1px solid var(--border);
  position: relative;
}

#info-10::before {
  content: "victorian mechanical brass tactile";
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

#info-10 .checklist {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

#info-10 .checklist span {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.95rem;
}

#info-10 .checklist span::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-top: 6px;
  flex-shrink: 0;
  background: var(--brass);
  box-shadow: 0 0 0 2px rgba(184, 115, 51, 0.35);
  transform: rotate(45deg);
}
#offers .content-area {
  max-width: 420px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.125rem;
  align-items: stretch;
}

#offers .card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(30, 41, 59, 0.06);
  border: 1px solid #e2e8f0;
  background: #ffffff;
}

#offers .card-inner {
  background: #ffffff;
  padding: 1.125rem 1.375rem 1.375rem;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

#offers .logo-rating-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: nowrap;
}

#offers .logo-placeholder {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  border-radius: 12px;
  overflow: hidden;
  background: #f8fafc;
  display: flex;
  align-items: center;
  justify-content: center;
}

#offers .offer-logo {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: contain;
  object-position: center;
  display: block;
  background: transparent;
}

#offers .rating {
  display: flex;
  flex-direction: column;
  gap: 0.3125rem;
  align-items: flex-start;
  flex: 1;
  min-width: 0;
}

#offers .rating-value {
  font-weight: 700;
  font-size: 1.125rem;
  color: #1e293b;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-variant: normal;
  letter-spacing: normal;
}

#offers .rating-max {
  font-size: 0.875rem;
  color: #64748b;
  font-weight: 400;
}

#offers .rating .rating-value,
#offers .rating .rating-max {
  display: inline;
}

#offers .stars {
  display: flex;
  align-items: center;
  gap: 0.1875rem;
}

#offers .star {
  width: 14px;
  height: 12px;
  color: #f59e0b;
}

#offers .domain {
  margin: 0;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #64748b;
  letter-spacing: 0.02em;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-variant: normal;
}

#offers .divider {
  margin: 0.25rem 0 0;
  border: none;
  border-top: 1px solid #e2e8f0;
}

#offers .bonus-info {
  display: flex;
  flex-direction: column;
  gap: 0.3125rem;
}

#offers .bonus-label {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #64748b;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-variant: normal;
}

#offers .bonus-text {
  margin: 0;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.4;
  color: #1e293b;
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
  max-width: 100%;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-variant: normal;
  letter-spacing: normal;
}

#offers .bonus-terms {
  margin: 0;
  font-size: 0.6875rem;
  color: #64748b;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-variant: normal;
  letter-spacing: normal;
}

#offers .offer-desc {
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.45;
  color: #64748b;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-variant: normal;
  letter-spacing: normal;
}

#offers .action-area {
  margin-top: 0.375rem;
}

#offers .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.8125rem 1.125rem;
  font-size: 0.9375rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #fff;
  background: #4f46e5;
  border: none;
  border-radius: 10px;
  text-decoration: none;
  cursor: pointer;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-variant: normal;
}

#offers .btn:hover {
  background: #4338ca;
  color: #fff;
}

#offers .rank-ribbon {
  position: absolute;
  top: 0;
  right: 0;
  width: 38px;
  height: 38px;
  background: #4f46e5;
  border-radius: 0 14px 0 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.125rem;
}

#offers .rank-num {
  font-size: 0.875rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-variant: normal;
}

@media (min-width: 380px) {
  #offers .content-area {
    padding: 0 0.5rem;
    gap: 1.25rem;
  }

  #offers .card-inner {
    padding: 1.25rem 1.5rem 1.5rem;
    gap: 0.9375rem;
  }

  #offers .logo-rating-row {
    gap: 1.125rem;
  }

  #offers .divider {
    margin: 0.3125rem 0 0;
  }

  #offers .action-area {
    margin-top: 0.5rem;
  }
}

@media (max-width: 767px) {
  #offers .logo-placeholder {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

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

  #offers .bonus-text {
    font-size: 0.875rem;
    line-height: 1.45;
    overflow-wrap: anywhere;
    word-break: break-word;
  }
}
