.hero {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 24px;
  position: relative;
  background: linear-gradient(160deg, var(--secondary) 0%, #0a3d3f 50%, var(--leather) 100%);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(201, 162, 39, 0.15) 0%, transparent 40%),
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 20px,
      rgba(255, 255, 255, 0.02) 20px,
      rgba(255, 255, 255, 0.02) 21px
    );
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 120px;
  height: 120px;
  border: 3px dashed var(--brass);
  border-radius: 50%;
  opacity: 0.25;
  animation: gears-rotate 30s linear infinite;
  pointer-events: none;
}

.hero-title {
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 700;
  color: var(--brass-light);
  line-height: 1.05;
  letter-spacing: 0.02em;
  position: relative;
  z-index: 1;
  text-shadow: 2px 2px 0 var(--leather);
}

.hero-subtitle {
  display: none;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 520px;
  margin-top: 16px;
  position: relative;
  z-index: 1;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

@media (max-width: 768px) {
  .hero-subtitle {
    display: block;
  }
}

.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(15, 31, 28, 0.88) 0%, rgba(21, 96, 100, 0.92) 100%);
  pointer-events: none;
}

.offers-inner {
  max-width: 1200px;
  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);
  color: var(--brass-light);
  letter-spacing: 0.06em;
  position: relative;
  display: inline-block;
}

.offers-header h2::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: var(--brass);
}

.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;
  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;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.offer-cta {
  display: inline-block;
  background: linear-gradient(135deg, #2d6a4f, #40916c);
  color: #fff;
  padding: 10px 24px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  border: none;
  cursor: pointer;
  margin-top: auto;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

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

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

.info-section:nth-child(even) {
  background: var(--surface);
}

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

.info-section h2 {
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  color: var(--secondary);
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}

.info-section p {
  color: var(--muted);
  margin-bottom: 14px;
  font-size: 15px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.info-cta {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  background: linear-gradient(180deg, var(--brass-light), var(--brass));
  color: var(--leather);
  font-weight: 700;
  font-size: 14px;
  border: 1px solid var(--copper);
  box-shadow: 0 var(--tactile-depth) 0 var(--copper);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.info-cta:hover {
  color: var(--leather);
}

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

.info-1 .bonus-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.info-1 .bonus-card {
  background: var(--paper);
  border: var(--victorian-ornate);
  padding: 16px 20px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 14px;
  color: var(--text);
}

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

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

.info-2 .decor-wrap {
  flex-shrink: 0;
  max-width: 320px;
  overflow: hidden;
}

.info-2 .decor-wrap img {
  max-width: 320px;
  max-height: 280px;
  object-fit: cover;
  border: var(--victorian-ornate);
  box-shadow: 6px 6px 0 var(--mechanical-shadow);
}

.info-3 .info-inner {
  text-align: center;
  max-width: 800px;
}

.info-3 .device-list {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.info-3 .device-item {
  background: var(--surface);
  border: 2px solid var(--border);
  padding: 20px 28px;
  min-width: 140px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 600;
  color: var(--secondary);
}

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

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

.info-4 .decor-side {
  max-width: 100%;
  overflow: hidden;
}

.info-4 .decor-side img {
  max-width: 240px;
  max-height: 300px;
  object-fit: cover;
  border: 2px solid var(--brass);
}

.info-4 .tip-list {
  list-style: none;
  margin-top: 16px;
}

.info-4 .tip-list li {
  padding: 10px 0 10px 28px;
  position: relative;
  color: var(--muted);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 15px;
  border-bottom: 1px dashed var(--border);
}

.info-4 .tip-list li::before {
  content: "◆";
  position: absolute;
  left: 0;
  color: var(--brass);
}

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

.info-5 .info-intro {
  grid-column: 1 / -1;
}

.info-5 .vip-tier {
  background: linear-gradient(145deg, var(--surface), var(--paper));
  border: 2px solid var(--brass);
  padding: 24px;
  text-align: center;
}

.info-5 .vip-tier h3 {
  color: var(--copper);
  margin-bottom: 10px;
  font-size: 1rem;
}

.info-5 .vip-tier p {
  font-size: 14px;
}

.info-6 {
  background-image: linear-gradient(90deg, rgba(0, 196, 154, 0.06) 0%, transparent 60%);
}

.info-6 .info-inner {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-direction: row-reverse;
}

.info-6 .decor-wrap {
  max-width: 100%;
  overflow: hidden;
}

.info-6 .decor-wrap img {
  max-width: 280px;
  max-height: 260px;
  object-fit: cover;
  border-radius: 8px;
  border: 3px solid var(--primary);
}

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

.info-6 .pill {
  background: var(--secondary);
  color: #fff;
  padding: 6px 14px;
  font-size: 12px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  border-radius: 20px;
}

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

.info-7 .game-tile {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 20px 12px;
  text-align: center;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 600;
  color: var(--secondary);
  box-shadow: 0 2px 8px var(--mechanical-shadow);
}

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

.info-8 .info-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.info-8 .slot-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.info-8 .stat-box {
  background: var(--paper);
  border-left: 4px solid var(--primary);
  padding: 16px;
}

.info-8 .stat-box strong {
  display: block;
  color: var(--secondary);
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.info-8 .stat-box span {
  font-size: 13px;
  color: var(--muted);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.info-9 .info-inner {
  position: relative;
  padding-left: 48px;
  border-left: 4px solid var(--brass);
}

.info-9 .roulette-wheel {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 180px;
  height: 180px;
  border: 4px solid var(--brass);
  border-radius: 50%;
  opacity: 0.2;
  animation: gears-rotate 20s linear infinite;
}

.info-9 .roulette-types {
  display: flex;
  gap: 16px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.info-9 .roulette-type {
  flex: 1;
  min-width: 160px;
  background: var(--paper);
  padding: 16px;
  border: 1px solid var(--border);
}

.info-9 .roulette-type h3 {
  font-size: 0.95rem;
  color: var(--copper);
  margin-bottom: 8px;
}

.info-10 .info-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 36px;
  align-items: center;
}

.info-10 .guide-steps {
  counter-reset: step;
  list-style: none;
  margin-top: 16px;
}

.info-10 .guide-steps li {
  counter-increment: step;
  padding: 14px 0 14px 48px;
  position: relative;
  color: var(--muted);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 15px;
  border-bottom: 1px solid var(--border);
}

.info-10 .guide-steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  width: 32px;
  height: 32px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.info-10 .decor-wrap {
  max-width: 100%;
  overflow: hidden;
}

.info-10 .decor-wrap img {
  max-width: 400px;
  max-height: 300px;
  object-fit: cover;
  border: var(--victorian-ornate);
}

@media (max-width: 900px) {
  .info-1 .info-inner,
  .info-2 .info-inner,
  .info-4 .info-inner,
  .info-6 .info-inner,
  .info-8 .info-inner,
  .info-10 .info-inner {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .info-2 .info-inner,
  .info-6 .info-inner {
    flex-direction: column;
  }

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

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

  .info-9 .roulette-wheel {
    display: none;
  }

  .info-9 .info-inner {
    padding-left: 24px;
  }
}

@media (max-width: 768px) {
  .info-2 .decor-wrap,
  .info-4 .decor-side,
  .info-6 .decor-wrap,
  .info-10 .decor-wrap {
    max-width: 100%;
    width: 100%;
    overflow: hidden;
  }

  .info-2 .decor-wrap img,
  .info-4 .decor-side img,
  .info-6 .decor-wrap img,
  .info-10 .decor-wrap img {
    max-width: 100%;
    width: 100%;
    max-height: 280px;
  }

  .offer-logo-wrap {
    width: 120px;
    height: 60px;
  }

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