.hero {
  position: relative;
  background: #f8fafc;
  min-height: 340px;
  display: flex;
  overflow: hidden;
}

.hero-stripe {
  width: 80px;
  flex-shrink: 0;
  background: #22d3ee;
  position: relative;
}

.hero-stripe::after {
  content: "";
  position: absolute;
  top: 40%;
  left: 50%;
  width: 4px;
  height: 4px;
  background: #020617;
  transform: translate(-50%, -50%);
  box-shadow: 12px 8px 0 #0ea5e9, -8px 16px 0 rgba(14, 165, 233, 0.4);
}

.hero-body {
  flex: 1;
  padding: 56px 32px 56px 40px;
  position: relative;
}

.hero-body::before {
  content: "";
  position: absolute;
  top: 20px;
  right: 40px;
  width: 120px;
  height: 80px;
  background: linear-gradient(135deg, transparent 45%, rgba(14, 165, 233, 0.08) 45%);
  pointer-events: none;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  transform: scaleX(1.12);
  transform-origin: left center;
  line-height: 1.05;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.hero-title span {
  display: block;
  color: #0ea5e9;
  text-shadow: 2px 0 #ef4444, -2px 0 #22d3ee;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: #64748b;
  max-width: 520px;
  line-height: 1.65;
}

.offers-section {
  padding: 64px 16px;
  max-width: 1200px;
  margin: 0 auto;
}

.offers-heading {
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 8px;
  transform: scaleX(1.06);
  transform-origin: left;
}

.offers-sub {
  color: #64748b;
  margin-bottom: 32px;
  font-size: 15px;
}

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

.offer-card {
  background: linear-gradient(145deg, #1e293b 0%, #0f172a 100%);
  border-radius: 8px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}

.offer-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #0ea5e9, #22d3ee, #38bdf8);
}

.offer-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(2, 6, 23, 0.25);
}

.offer-logo-wrap {
  width: 200px;
  height: 72px;
  background: #ffffff;
  border-radius: 6px;
  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;
}

.offer-name {
  color: #f8fafc;
  font-size: 1.2rem;
  font-weight: 700;
}

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

.offer-bonus {
  color: #22d3ee;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.35;
  overflow-wrap: break-word;
  word-break: break-word;
}

.offer-terms {
  font-size: 11px;
  color: #94a3b8;
}

.offer-cta {
  display: inline-block;
  margin-top: auto;
  padding: 12px 20px;
  background: #0ea5e9;
  color: #ffffff;
  font-weight: 700;
  font-size: 14px;
  text-align: center;
  border-radius: 4px;
  transition: filter 0.2s, background 0.2s;
}

.offer-cta:hover {
  background: #38bdf8;
  color: #ffffff;
  filter: invert(0.08);
}

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

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

.info-section h2 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 16px;
  transform: scaleX(1.05);
  transform-origin: left;
}

.info-section p {
  color: #334155;
  font-size: 15px;
  line-height: 1.7;
}

#info-1 {
  background: #ffffff;
}

#info-1 .info-inner {
  display: grid;
  grid-template-columns: 1fr 120px;
  gap: 32px;
  align-items: center;
}

#info-1 .info-visual {
  height: 160px;
  background: linear-gradient(135deg, #0ea5e9 0%, #22d3ee 50%, #38bdf8 100%);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}

#info-1 .info-visual::after {
  content: "LIVE";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.25);
  letter-spacing: 0.2em;
  transform: scaleX(1.3);
}

#info-2 {
  background: #f8fafc;
  border-top: 1px solid rgba(2, 6, 23, 0.12);
  border-bottom: 1px solid rgba(2, 6, 23, 0.12);
}

#info-2 .info-inner {
  border-left: 6px solid #0ea5e9;
  padding-left: 28px;
}

#info-3 {
  background: #020617;
  color: #f8fafc;
}

#info-3 h2 {
  color: #22d3ee;
}

#info-3 p {
  color: #94a3b8;
}

#info-3 .info-inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

#info-3 .info-col:last-child {
  padding: 20px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

#info-4 {
  background: #ffffff;
}

#info-4 .info-inner {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

#info-4 .info-badge {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  background: #0ea5e9;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 900;
  border-radius: 4px;
  transform: rotate(-4deg);
}

#info-5 {
  background: #f8fafc;
}

#info-5 .info-inner {
  position: relative;
  padding: 32px;
  background: #ffffff;
  border: 1px solid rgba(2, 6, 23, 0.12);
}

#info-5 .info-inner::before {
  content: "05";
  position: absolute;
  top: -20px;
  right: 24px;
  font-size: 5rem;
  font-weight: 900;
  color: rgba(14, 165, 233, 0.12);
  line-height: 1;
  transform: scaleX(1.2);
}

#info-6 {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

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

#info-6 .info-tag {
  padding: 6px 14px;
  background: #020617;
  color: #22d3ee;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  border-radius: 2px;
  transition: filter 0.2s;
}

#info-6 .info-tag:hover {
  filter: invert(1);
}

#info-7 {
  background: #ffffff;
  overflow: hidden;
}

#info-7 .info-inner {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 0;
}

#info-7 .info-sidebar {
  background: #22d3ee;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#info-7 .info-sidebar span {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  color: #020617;
  transform: scaleX(1.2);
}

#info-7 .info-text {
  padding: 32px;
}

#info-8 {
  background: #f8fafc;
}

#info-8 .info-inner {
  columns: 2;
  column-gap: 40px;
}

#info-8 h2 {
  column-span: all;
}

#info-9 {
  background: #020617;
}

#info-9 .info-inner {
  text-align: center;
  max-width: 720px;
}

#info-9 h2 {
  color: #f8fafc;
  transform-origin: center;
}

#info-9 p {
  color: #94a3b8;
}

#info-9 .info-glitch-bar {
  width: 60px;
  height: 4px;
  background: #22d3ee;
  margin: 0 auto 24px;
  box-shadow: 3px 0 0 #ef4444, -3px 0 0 #0ea5e9;
}

#info-10 {
  background: #ffffff;
  border-top: 4px solid #0ea5e9;
}

#info-10 .info-inner {
  display: flex;
  gap: 32px;
  align-items: center;
}

#info-10 .info-icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border: 3px solid #0ea5e9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

#info-10 .info-inner:hover {
  filter: invert(0.03);
}

@media (max-width: 768px) {
  .hero {
    flex-direction: column;
  }

  .hero-stripe {
    width: 100%;
    height: 6px;
  }

  .hero-body {
    padding: 32px 16px;
    text-align: center;
  }

  .hero-title {
    transform-origin: center;
  }

  .hero-subtitle {
    margin: 0 auto;
  }

  #info-1 .info-inner {
    grid-template-columns: 1fr;
  }

  #info-1 .info-visual {
    height: 80px;
  }

  #info-3 .info-inner {
    grid-template-columns: 1fr;
  }

  #info-4 .info-inner {
    flex-direction: column;
  }

  #info-7 .info-inner {
    grid-template-columns: 1fr;
  }

  #info-7 .info-sidebar {
    writing-mode: horizontal-tb;
    padding: 12px;
  }

  #info-7 .info-sidebar span {
    writing-mode: horizontal-tb;
  }

  #info-8 .info-inner {
    columns: 1;
  }

  #info-10 .info-inner {
    flex-direction: column;
    text-align: center;
  }

  .offer-logo-wrap {
    width: 160px;
    height: 56px;
  }

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

  .offer-bonus {
    font-size: 0.95rem;
  }
}
