.hero {
  position: relative;
  min-height: 350px;
  background: #0C4A6E;
  background-image:
    radial-gradient(ellipse 60% 50% at 70% 40%, rgba(14, 165, 233, 0.35), transparent 60%),
    linear-gradient(160deg, #0C4A6E 0%, #075985 55%, #0C4A6E 100%);
  overflow: hidden;
  padding: 40px 20px 48px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)' opacity='0.08'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.7;
  z-index: 1;
}

.hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  position: relative;
  z-index: 2;
  min-height: 280px;
}

.hero-collage {
  position: relative;
  width: 100%;
  max-width: 520px;
  height: 260px;
  margin: 0 auto 16px;
}

.hero-collage img {
  position: absolute;
  object-fit: cover;
  border: 3px solid rgba(255, 255, 255, 0.25);
  box-shadow: 4px 6px 0 rgba(0, 0, 0, 0.25);
  max-width: 100%;
}

.hero-img-1 {
  width: 200px;
  height: 200px;
  left: 8%;
  top: 20px;
  transform: rotate(-5deg);
  z-index: 1;
}

.hero-img-2 {
  width: 160px;
  height: 160px;
  left: 42%;
  top: 10px;
  transform: rotate(3deg);
  z-index: 2;
}

.hero-img-3 {
  width: 140px;
  height: 140px;
  left: 58%;
  top: 90px;
  transform: rotate(-2deg);
  z-index: 3;
}

.hero-title {
  position: absolute;
  left: 50%;
  top: 42%;
  transform: translate(-50%, -50%) rotate(-1deg);
  z-index: 5;
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 3.2rem);
  color: #FFFFFF;
  text-align: center;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.65), 3px 3px 0 rgba(14, 165, 233, 0.45);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  width: 90%;
  pointer-events: none;
}

.hero-sub {
  text-align: left;
  max-width: 540px;
  margin: 0 auto;
  color: var(--secondary);
  font-size: 1.05rem;
  position: relative;
  z-index: 2;
}

.offers-section {
  position: relative;
  padding: 48px 20px;
  background-color: #0C4A6E;
  background-image: url("/images/offers_bg/offers_bg.webp");
  background-size: cover;
  background-position: center;
}

.offers-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(12, 74, 110, 0.82) 0%,
    rgba(12, 74, 110, 0.88) 100%
  );
  pointer-events: none;
}

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

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

.offers-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: #FFFFFF;
  transform: rotate(-0.6deg);
  text-shadow: 2px 2px 0 rgba(14, 165, 233, 0.4);
  margin-bottom: 8px;
}

.offers-header p {
  color: var(--secondary);
  max-width: 560px;
}

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

.offer-card {
  background: #1A1035;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.offer-card:hover {
  transform: translateY(-2px) rotate(-0.3deg);
  border-color: rgba(167, 139, 250, 0.45);
}

.offer-logo-wrap {
  width: 160px;
  height: 80px;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.04);
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-sizing: border-box;
}

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

.offer-name {
  font-size: 1.05rem;
  text-transform: uppercase;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.03em;
}

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

.offer-bonus {
  font-size: 14px;
  font-weight: 600;
  color: #FFD700;
  word-break: break-word;
  overflow-wrap: anywhere;
  line-height: 1.35;
}

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

.offer-desc {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.45;
}

.offer-cta {
  margin-top: auto;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 12px 16px;
  background: #7C3AED;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  border: none;
  cursor: pointer;
  text-align: center;
  transition: background 0.2s ease, transform 0.15s ease;
}

.offer-cta:hover {
  background: #6D28D9;
  color: #fff;
  transform: translateY(-1px);
}

.info-section {
  padding: 48px 20px;
  position: relative;
  overflow: hidden;
}

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

.info-section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  margin-bottom: 14px;
  transform: rotate(-0.5deg);
}

.info-section p {
  margin-bottom: 12px;
  max-width: 720px;
}

.info-cta {
  display: inline-flex;
  margin-top: 16px;
  padding: 10px 18px;
  background: var(--primary);
  color: var(--surface);
  font-weight: 700;
  border: 2px solid transparent;
  transform: rotate(-0.4deg);
  transition: transform 0.15s ease, background 0.2s ease;
}

.info-cta:hover {
  background: var(--accent);
  color: var(--surface);
  transform: rotate(0.4deg) translateY(-1px);
}

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

.info-1 .chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.info-1 .chip {
  padding: 8px 14px;
  background: rgba(14, 165, 233, 0.1);
  border: 1px dashed rgba(14, 165, 233, 0.35);
  font-size: 13px;
  transform: rotate(-0.5deg);
}

.info-1 .chip:nth-child(even) {
  transform: rotate(0.6deg);
}

.info-2 {
  background: linear-gradient(120deg, rgba(186, 230, 253, 0.35), var(--bg));
}

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

.info-2 .guide-rail {
  background: var(--surface);
  padding: 18px;
  border-left: 4px solid var(--primary);
  box-shadow: 4px 4px 0 rgba(14, 165, 233, 0.12);
  transform: rotate(0.5deg);
}

.info-2 .guide-rail strong {
  display: block;
  margin-bottom: 8px;
  font-family: var(--font-display);
}

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

.info-3 .slot-mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 18px;
}

.info-3 .slot-tile {
  background: var(--surface);
  padding: 16px;
  border: 1px solid var(--border);
  font-size: 13px;
}

.info-3 .slot-tile:nth-child(2) {
  transform: translateY(10px) rotate(-0.8deg);
}

.info-3 .slot-tile:nth-child(3) {
  transform: rotate(0.7deg);
}

.info-3 .slot-tile strong {
  display: block;
  color: var(--primary);
  margin-bottom: 6px;
}

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

.info-4 .spin-band {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 16px;
}

.info-4 .spin-stat {
  flex: 1 1 140px;
  padding: 16px;
  background: linear-gradient(145deg, rgba(14, 165, 233, 0.12), rgba(186, 230, 253, 0.2));
  border: 2px dashed rgba(14, 165, 233, 0.3);
  text-align: center;
}

.info-4 .spin-stat em {
  display: block;
  font-family: var(--font-display);
  font-style: normal;
  font-size: 1.4rem;
  color: var(--primary);
}

.info-5 {
  background: #0C4A6E;
  color: var(--surface);
}

.info-5 h2 {
  color: #FFFFFF;
}

.info-5 p {
  color: var(--secondary);
}

.info-5 .intro-list {
  list-style: none;
  margin: 16px 0 0;
  display: grid;
  gap: 10px;
}

.info-5 .intro-list li {
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.06);
  border-left: 3px solid var(--accent);
  transform: rotate(-0.2deg);
}

.info-5 .intro-list li:nth-child(even) {
  transform: rotate(0.3deg);
  margin-left: 12px;
}

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

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

.info-6 .support-card {
  background: var(--surface);
  padding: 18px;
  border-top: 3px solid var(--primary);
  box-shadow: 3px 3px 0 rgba(12, 74, 110, 0.08);
}

.info-6 .support-card:nth-child(2) {
  transform: rotate(0.5deg);
}

.info-6 .support-card:nth-child(3) {
  transform: rotate(-0.4deg);
}

.info-6 .support-card h3 {
  font-size: 1rem;
  margin-bottom: 6px;
  font-family: var(--font-display);
}

.info-6 .decor-side {
  margin-top: 24px;
  max-width: 420px;
  clip-path: polygon(0 0, 97% 2%, 100% 100%, 3% 98%);
  overflow: hidden;
}

.info-7 {
  background: linear-gradient(90deg, var(--surface) 55%, rgba(186, 230, 253, 0.45) 100%);
}

.info-7 .live-layout {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}

.info-7 .pull-quote {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--primary);
  border-left: 4px solid var(--accent);
  padding-left: 14px;
  margin: 16px 0;
  transform: rotate(-0.6deg);
  max-width: 480px;
}

.info-7 .live-visual {
  width: 220px;
  height: 220px;
  background-size: cover;
  background-position: center;
  border: 3px solid var(--border);
  transform: rotate(2deg);
  box-shadow: 5px 5px 0 rgba(14, 165, 233, 0.2);
  max-width: 100%;
}

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

.info-8 .steps {
  counter-reset: step;
  list-style: none;
  margin: 18px 0 0;
  display: grid;
  gap: 12px;
}

.info-8 .steps li {
  counter-increment: step;
  position: relative;
  padding: 14px 14px 14px 56px;
  background: var(--surface);
  border: 1px solid var(--border);
}

.info-8 .steps li::before {
  content: counter(step);
  position: absolute;
  left: 12px;
  top: 12px;
  width: 32px;
  height: 32px;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.95rem;
  transform: rotate(-3deg);
}

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

.info-9 .options-band {
  margin-top: 20px;
  padding: 28px 20px;
  background:
    linear-gradient(125deg, #0C4A6E 0%, #0369A1 55%, #0C4A6E 100%);
  color: #fff;
  overflow: hidden;
  max-width: 100%;
  border: 2px dashed rgba(125, 211, 252, 0.35);
  transform: rotate(-0.3deg);
}

.info-9 .options-band h3 {
  font-family: var(--font-display);
  margin-bottom: 10px;
  transform: rotate(-0.5deg);
}

.info-9 .options-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.info-9 .opt {
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px dashed rgba(255, 255, 255, 0.35);
  font-size: 13px;
}

.info-10 {
  background: linear-gradient(160deg, rgba(14, 165, 233, 0.08), var(--bg));
}

.info-10 .start-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 16px;
}

.info-10 .start-box {
  background: var(--surface);
  padding: 20px;
  border: 2px solid var(--border);
}

.info-10 .start-box:first-child {
  transform: rotate(-0.5deg);
  border-style: dashed;
}

.info-10 .start-box:last-child {
  transform: rotate(0.4deg);
  background: rgba(186, 230, 253, 0.25);
}

.info-10 .start-box h3 {
  font-family: var(--font-display);
  margin-bottom: 8px;
}

.info-10 .decor-inline {
  margin-top: 24px;
  max-width: 460px;
  overflow: hidden;
  clip-path: polygon(2% 0, 100% 3%, 98% 100%, 0 97%);
}

@media (max-width: 768px) {
  .hero {
    display: flex;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .hero-collage {
    position: absolute;
    inset: 0;
    max-width: 100%;
    width: 100%;
    height: 100%;
    margin: 0;
    overflow: hidden;
  }

  .hero-img-2,
  .hero-img-3 {
    display: none;
  }

  .hero-img-1 {
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    max-width: 100%;
    transform: none;
    border: none;
    box-shadow: none;
    object-fit: cover;
    opacity: 0.4;
    z-index: 0;
  }

  .hero-title {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    margin: 0 auto 12px;
    width: 100%;
    z-index: 5;
  }

  .hero-sub {
    text-align: center;
    margin: 0 auto;
    position: relative;
    z-index: 5;
  }

  .hero-inner {
    min-height: auto;
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 100%;
  }

  .offer-logo-wrap {
    width: 140px;
    height: 70px;
    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-bonus {
    font-size: 13px;
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  .info-2 .split-guide,
  .info-7 .live-layout,
  .info-6 .support-grid,
  .info-10 .start-panel,
  .info-3 .slot-mosaic {
    grid-template-columns: 1fr;
  }

  .info-6 .decor-side,
  .info-6 .decor-clip {
    max-width: 100%;
    overflow: hidden;
  }

  .info-6 .decor-img {
    max-width: 100%;
    max-height: 200px;
    width: 100%;
    height: auto;
  }

  .info-7 .live-visual {
    width: 100%;
    max-width: 280px;
    height: 180px;
    margin: 0 auto;
  }

  .info-5 .intro-list li:nth-child(even) {
    margin-left: 0;
  }
}

@media (max-width: 400px) {
  .hero-collage img {
    max-width: 100%;
  }

  .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;
  }
}
