.hero {
  padding: 64px 24px;
  text-align: center;
  position: relative;
  background: var(--bg);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 20%;
  left: -5%;
  width: 110%;
  height: 60%;
  background: linear-gradient(165deg, rgba(58, 90, 64, 0.3) 0%, transparent 60%);
  transform: skewY(-3deg);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--primary), var(--secondary));
  transform: skewX(-20deg);
}

.hero-title {
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.05;
  -webkit-text-stroke: 2px var(--text);
  color: transparent;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--muted);
  max-width: 640px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.offers-section {
  padding: 64px 24px;
  position: relative;
  background-image: url("/images/offers_bg/offers_bg.svg");
  background-size: cover;
  background-position: center;
  background-color: var(--surface);
}

.offers-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13, 17, 14, 0.85) 0%, rgba(20, 27, 21, 0.92) 100%);
  pointer-events: none;
}

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

.offers-header {
  text-align: center;
  margin-bottom: 40px;
}

.offers-header h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--primary);
  position: relative;
  display: inline-block;
}

.offers-header h2::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: -20%;
  right: -20%;
  height: 3px;
  background: var(--secondary);
  transform: skewX(-25deg);
}

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

.offer-card {
  background: #1a231c;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 16px 100%, 0 calc(100% - 16px));
  box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.offer-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0 rgba(58, 90, 64, 0.35);
}

.offer-logo-wrap {
  width: 120px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 16px;
  flex-shrink: 0;
}

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

.offer-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.offer-bonus-wrap {
  margin-bottom: 12px;
  width: 100%;
  max-width: 100%;
}

.offer-bonus {
  font-size: 14px;
  color: #ffd966;
  font-weight: 600;
  display: block;
  margin-bottom: 4px;
  word-break: break-word;
  overflow-wrap: anywhere;
  line-height: 1.4;
}

.offer-terms {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
}

.offer-desc {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.5;
  margin-bottom: 16px;
  text-align: left;
}

.offer-cta {
  display: inline-block;
  background: linear-gradient(135deg, #2d6a4f, #40916c);
  color: #fff;
  padding: 10px 24px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border: none;
  cursor: pointer;
  clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 6px, 100% 100%, 6px 100%, 0 calc(100% - 6px));
  margin-top: auto;
}

.offer-cta:hover {
  background: linear-gradient(135deg, #40916c, #52b788);
  color: #fff;
}

.info-section {
  padding: 56px 24px;
  position: relative;
}

.info-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.info-section h2 {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 20px;
  color: var(--primary);
}

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

.info-cta {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 20px;
  background: var(--accent);
  color: var(--text);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 0 100%);
  transition: background 0.2s ease;
}

.info-cta:hover {
  background: var(--secondary);
  color: var(--text);
}

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

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

.info-1 .payment-icons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.info-1 .pay-item {
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 16px;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 0 100%);
}

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

.info-2 .info-inner {
  display: flex;
  gap: 40px;
  align-items: center;
}

.info-2 .info-text {
  flex: 1;
}

.info-2 .info-visual {
  flex: 0 0 280px;
  max-width: 100%;
  overflow: hidden;
}

.info-2 .info-visual img {
  width: 100%;
  max-width: 280px;
  max-height: 320px;
  object-fit: cover;
  clip-path: polygon(8% 0, 100% 0, 92% 100%, 0 100%);
  box-shadow: 8px 8px 0 var(--accent);
}

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

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

.info-3 .bm-card {
  background: var(--bg);
  border-left: 3px solid var(--secondary);
  padding: 20px;
  transform: skewX(-2deg);
}

.info-3 .bm-card h3 {
  font-size: 14px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 8px;
}

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

.info-4 {
  background: var(--surface);
  clip-path: polygon(0 24px, 100% 0, 100% calc(100% - 24px), 0 100%);
  padding-top: 80px;
  padding-bottom: 80px;
}

.info-4 .withdraw-steps {
  display: flex;
  gap: 0;
  margin-top: 24px;
  counter-reset: step;
}

.info-4 .step {
  flex: 1;
  padding: 20px;
  background: var(--bg);
  border: 1px solid var(--border);
  position: relative;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 0 100%);
}

.info-4 .step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  top: -12px;
  left: 16px;
  background: var(--secondary);
  color: var(--text);
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
}

.info-4 .step h3 {
  font-size: 13px;
  text-transform: uppercase;
  color: var(--primary);
  margin: 8px 0;
}

.info-4 .step p {
  font-size: 13px;
  margin: 0;
}

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

.info-5 .odds-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 32px;
  align-items: center;
}

.info-5 .odds-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.info-5 .odds-table th,
.info-5 .odds-table td {
  padding: 10px 14px;
  border: 1px solid var(--border);
  text-align: left;
}

.info-5 .odds-table th {
  background: var(--accent);
  color: var(--text);
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.05em;
}

.info-5 .odds-table td {
  color: var(--muted);
}

.info-5 .info-visual {
  max-width: 100%;
  overflow: hidden;
}

.info-5 .info-visual img {
  width: 100%;
  max-width: 300px;
  max-height: 320px;
  clip-path: polygon(0 0, 100% 0, 100% 85%, 85% 100%, 0 100%);
}

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

.info-6 .sport-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.info-6 .sport-tag {
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 6px, 100% 100%, 6px 100%, 0 calc(100% - 6px));
}

.info-7 {
  background: linear-gradient(180deg, var(--bg) 0%, rgba(58, 90, 64, 0.15) 100%);
  border-top: 2px solid var(--secondary);
  border-bottom: 2px solid var(--secondary);
}

.info-7 .rg-boxes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 20px;
}

.info-7 .rg-box {
  background: var(--surface);
  padding: 20px;
  border-left: 4px solid var(--primary);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%);
}

.info-7 .rg-box h3 {
  font-size: 13px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 8px;
}

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

.info-8 .acca-split {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 32px;
  align-items: start;
}

.info-8 .acca-types {
  list-style: none;
  margin-top: 16px;
}

.info-8 .acca-types li {
  padding: 12px 16px;
  background: var(--surface);
  margin-bottom: 8px;
  border-left: 3px solid var(--secondary);
  font-size: 14px;
  color: var(--muted);
  clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 6px, 100% 100%, 0 100%);
}

.info-8 .info-visual {
  max-width: 100%;
  overflow: hidden;
}

.info-8 .info-visual img {
  width: 100%;
  max-width: 260px;
  max-height: 320px;
  clip-path: polygon(15% 0, 100% 0, 85% 100%, 0 100%);
}

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

.info-9 .banking-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 20px;
}

.info-9 .bank-col {
  background: var(--bg);
  padding: 24px;
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
}

.info-9 .bank-col h3 {
  font-size: 14px;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}

.info-9 .bank-col ul {
  list-style: none;
}

.info-9 .bank-col li {
  font-size: 14px;
  color: var(--muted);
  padding: 6px 0;
  border-bottom: 1px solid rgba(163, 177, 138, 0.08);
}

.info-10 {
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.info-10::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(200deg, rgba(88, 129, 87, 0.12), transparent);
  transform: skewX(-15deg);
  pointer-events: none;
}

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

.info-10 .live-item {
  background: var(--surface);
  padding: 20px;
  text-align: center;
  clip-path: polygon(0 8px, 8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%);
  border: 1px solid var(--border);
}

.info-10 .live-item h3 {
  font-size: 13px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 8px;
}

.info-10 .live-item p {
  font-size: 13px;
  margin: 0;
}

@media (max-width: 768px) {
  .hero-title {
    -webkit-text-stroke: 1px var(--text);
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .hero {
    padding: 32px 16px;
  }

  .offer-logo-wrap {
    width: 100px;
    height: 50px;
  }

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

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

  .info-1 .info-inner,
  .info-2 .info-inner,
  .info-5 .odds-layout,
  .info-8 .acca-split,
  .info-9 .banking-compare {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .info-2 .info-visual,
  .info-5 .info-visual,
  .info-8 .info-visual {
    flex: none;
    width: 100%;
  }

  .info-2 .info-visual img,
  .info-5 .info-visual img,
  .info-8 .info-visual img {
    max-width: 100%;
    width: 100%;
    max-height: 240px;
  }

  .info-section {
    overflow-x: hidden;
  }

  .info-3 .bookmaker-cards,
  .info-4 .withdraw-steps,
  .info-7 .rg-boxes,
  .info-10 .live-grid {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .info-4 .withdraw-steps {
    gap: 24px;
  }

  .info-1 .payment-icons {
    grid-template-columns: repeat(2, 1fr);
  }
}
