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

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 0%, rgba(34, 211, 238, 0.18), transparent 60%),
    radial-gradient(ellipse 50% 40% at 80% 80%, rgba(249, 115, 22, 0.12), transparent 55%),
    linear-gradient(200deg, transparent 30%, rgba(163, 230, 53, 0.06) 100%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 90%, rgba(34, 211, 238, 0.08), transparent 35%);
  pointer-events: none;
}

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

.hero-title {
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: 0.02em;
  -webkit-text-stroke: 2px white;
  color: transparent;
  margin-bottom: 18px;
}

.hero-sub {
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  color: var(--muted);
  max-width: 34em;
  margin: 0 auto;
  line-height: 1.55;
  font-weight: 500;
}

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

.offers-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(34, 211, 238, 0.04), transparent 40%, rgba(163, 230, 53, 0.05));
  pointer-events: none;
}

.offers-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
}

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

.offers-header h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 10px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.offers-header p {
  color: var(--muted);
  max-width: 40em;
  margin: 0 auto;
}

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

.offer-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: linear-gradient(145deg, #1B2433 0%, #243044 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 24px;
  color: #F5F7FA;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.22);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  overflow: hidden;
  min-width: 0;
}

.offer-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.3), 0 0 20px rgba(34, 211, 238, 0.2);
}

.offer-logo {
  width: 160px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #FFFFFF;
  border-radius: 10px;
  margin: 0 auto;
  flex-shrink: 0;
}

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

.offer-name {
  font-size: 1.3rem;
  font-weight: 700;
  color: #FFFFFF;
  text-align: center;
}

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

.offer-bonus {
  font-size: clamp(0.85rem, 2.2vw, 1.05rem);
  font-weight: 600;
  color: #EBCB8B;
  line-height: 1.35;
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
}

.offer-terms {
  font-size: 11px;
  color: rgba(245, 247, 250, 0.55);
  line-height: 1.4;
}

.offer-desc {
  font-size: 13px;
  color: rgba(245, 247, 250, 0.7);
  line-height: 1.5;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.offer-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  padding: 12px 18px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  color: #0B1220;
  background: linear-gradient(135deg, #EBCB8B, #D4A853);
  box-shadow: 0 8px 20px rgba(212, 168, 83, 0.35);
  transition: background-position 0.4s ease, transform 0.15s ease;
  background-size: 180% 180%;
}

.offer-cta:hover {
  background-position: 100% 50%;
  transform: scale(1.03);
  color: #0B1220;
}

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

.info-section h2 {
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-weight: 800;
  margin-bottom: 14px;
  line-height: 1.25;
}

.info-section p {
  color: rgba(236, 254, 255, 0.88);
  max-width: 68ch;
}

.info-inner {
  max-width: var(--max);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.info-1 {
  background: linear-gradient(160deg, rgba(34, 211, 238, 0.08), transparent 55%);
}

.info-1 .info-inner {
  border-left: 4px solid var(--primary);
  padding-left: 28px;
}

.info-1 .tip-list {
  margin-top: 16px;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.info-1 .tip-list li {
  padding: 10px 14px;
  border-radius: 8px;
  background: rgba(2, 6, 23, 0.55);
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 14px;
}

.info-2 {
  background: linear-gradient(45deg, rgba(163, 230, 53, 0.06), transparent 50%);
}

.info-2 .split {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
  align-items: start;
}

.info-2 .slot-panel {
  padding: 24px;
  border-radius: 14px;
  background: linear-gradient(225deg, rgba(34, 211, 238, 0.12), rgba(2, 6, 23, 0.7));
  border: 1px solid var(--border);
  box-shadow: 0 12px 32px rgba(34, 211, 238, 0.12);
}

.info-2 .slot-panel span {
  display: block;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 8px;
}

.info-3 {
  text-align: center;
  background: linear-gradient(180deg, rgba(249, 115, 22, 0.08), transparent 60%);
}

.info-3 .info-inner {
  max-width: 720px;
}

.info-3 .badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  margin-bottom: 16px;
  font-weight: 800;
  color: var(--bg);
  background: linear-gradient(135deg, var(--accent), var(--primary));
  box-shadow: 0 0 28px rgba(249, 115, 22, 0.4);
}

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

.info-4 {
  background: linear-gradient(270deg, rgba(34, 211, 238, 0.07), rgba(163, 230, 53, 0.05));
}

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

.info-4 .rtp-card {
  padding: 18px;
  border-radius: 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  text-align: center;
}

.info-4 .rtp-card strong {
  display: block;
  font-size: 1.4rem;
  color: var(--primary);
  margin-bottom: 6px;
}

.info-4 .rtp-card span {
  font-size: 13px;
  color: var(--muted);
}

.info-5 {
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.05), transparent);
}

.info-5 .check-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 20px;
}

.info-5 .check-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 14px;
  border-radius: 10px;
  background: rgba(2, 6, 23, 0.6);
  border: 1px solid var(--border);
  font-size: 14px;
  color: rgba(236, 254, 255, 0.85);
}

.info-5 .check-item::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-top: 5px;
  flex-shrink: 0;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--secondary), var(--primary));
  box-shadow: 0 0 12px rgba(163, 230, 53, 0.45);
}

.info-6 {
  background: linear-gradient(320deg, rgba(249, 115, 22, 0.07), transparent 55%);
}

.info-6 .reverse-split {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 28px;
  align-items: center;
}

.info-6 .wheel-accent {
  min-height: 160px;
  border-radius: 50%;
  background:
    conic-gradient(from 20deg, var(--primary), var(--secondary), var(--accent), var(--primary));
  box-shadow: 0 0 40px rgba(34, 211, 238, 0.25);
  opacity: 0.85;
}

.info-7 {
  background: linear-gradient(0deg, rgba(163, 230, 53, 0.06), transparent 50%);
}

.info-7 .chip-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.info-7 .chip {
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  border: 1px solid var(--border);
  background: linear-gradient(120deg, rgba(34, 211, 238, 0.15), rgba(163, 230, 53, 0.1));
  transition: background-position 0.35s ease, transform 0.15s ease;
  background-size: 160% 160%;
}

.info-7 .chip:hover {
  background-position: 100% 50%;
  transform: scale(1.05);
}

.info-8 {
  background: linear-gradient(90deg, rgba(34, 211, 238, 0.06), transparent);
}

.info-8 .timeline {
  margin-top: 24px;
  border-left: 2px solid rgba(34, 211, 238, 0.35);
  padding-left: 22px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.info-8 .timeline-item {
  position: relative;
}

.info-8 .timeline-item::before {
  content: "";
  position: absolute;
  left: -29px;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  box-shadow: 0 0 14px rgba(34, 211, 238, 0.5);
}

.info-8 .timeline-item strong {
  display: block;
  color: var(--secondary);
  margin-bottom: 4px;
}

.info-8 .timeline-item span {
  font-size: 14px;
  color: rgba(236, 254, 255, 0.8);
}

.info-9 {
  background: linear-gradient(225deg, rgba(249, 115, 22, 0.06), rgba(34, 211, 238, 0.04));
}

.info-9 .pay-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 22px;
}

.info-9 .pay-card {
  padding: 16px 12px;
  text-align: center;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--surface);
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.info-10 {
  background: linear-gradient(145deg, rgba(34, 211, 238, 0.07), transparent 60%);
}

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

.info-10 .step {
  padding: 20px;
  border-radius: 14px;
  background: linear-gradient(160deg, rgba(2, 6, 23, 0.9), rgba(34, 211, 238, 0.1));
  border: 1px solid var(--border);
}

.info-10 .step-num {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--bg);
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 10px;
}

.info-10 .step p {
  font-size: 14px;
  margin: 0;
}

@media (max-width: 800px) {
  .hero {
    padding: 32px 16px;
  }

  .hero-title {
    -webkit-text-stroke: 1px white;
    font-size: clamp(2.2rem, 10vw, 3rem);
  }

  .offer-logo {
    width: 140px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

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

  .offer-bonus {
    font-size: 0.9rem;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .info-2 .split,
  .info-6 .reverse-split {
    grid-template-columns: 1fr;
  }

  .info-6 .wheel-accent {
    width: 120px;
    height: 120px;
    min-height: 0;
    margin: 0 auto;
  }

  .info-4 .rtp-row,
  .info-10 .steps {
    grid-template-columns: 1fr;
  }

  .info-5 .check-grid {
    grid-template-columns: 1fr;
  }

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