main {
  position: relative;
  z-index: 1;
}

.hero-home {
  background: var(--espresso);
  height: 120px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  position: relative;
}

.hero-home::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(27, 58, 45, 0.4) 0%, transparent 60%);
  pointer-events: none;
}

.hero-home h1 {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 6vw, 5rem);
  color: var(--parchment);
  white-space: nowrap;
  padding: 0 24px;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  line-height: 1;
  position: relative;
  z-index: 1;
}

.hero-subtitle {
  background: var(--forest);
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--accent);
  letter-spacing: 0.04em;
}

.offers-section {
  padding: 64px 24px;
  position: relative;
  background: var(--forest);
  background-image:
    linear-gradient(rgba(27, 58, 45, 0.92), rgba(27, 58, 45, 0.88)),
    url("/images/decorative/decor_6.jpg");
  background-size: cover;
  background-position: center;
}

.offers-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 20px,
    rgba(255, 179, 179, 0.03) 20px,
    rgba(255, 179, 179, 0.03) 21px
  );
  pointer-events: none;
}

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

.offers-section h2 {
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--parchment);
  text-align: center;
  margin-bottom: 8px;
}

.offers-intro {
  text-align: center;
  color: var(--accent);
  font-size: 14px;
  margin-bottom: 36px;
}

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

.offer-card {
  background: #1a1a2e;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.2s, box-shadow 0.2s;
}

.offer-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.offer-card-header {
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(0, 0, 0, 0.2);
}

.offer-logo {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
  border-radius: 8px;
  background: #fff;
  padding: 4px;
}

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

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

.offer-card-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.offer-bonus-group {
  margin-bottom: 12px;
}

.offer-bonus {
  font-size: 1.05rem;
  font-weight: 600;
  color: #ffd700;
  line-height: 1.3;
  word-break: break-word;
  overflow-wrap: anywhere;
}

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

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

.offer-cta {
  margin-top: auto;
}

.offer-cta button {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, #e63946, #c1121f);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s;
}

.offer-cta button:hover {
  opacity: 0.9;
}

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

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

.info-section h2 {
  font-family: var(--serif);
  font-size: 1.75rem;
  color: var(--espresso);
  margin-bottom: 20px;
}

.info-section p {
  font-size: 15px;
  margin-bottom: 14px;
  line-height: 1.7;
}

.info-1 {
  background: var(--surface);
  border-top: 3px solid var(--wood);
  border-bottom: 3px solid var(--wood);
}

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

.info-1 .info-visual img {
  max-width: 100%;
  max-height: 320px;
  border-radius: 4px;
  border: 3px solid var(--wood);
  box-shadow: 4px 4px 0 var(--accent);
}

.info-2 {
  background: linear-gradient(180deg, var(--bg) 0%, var(--parchment) 100%);
}

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

.info-2 .bonus-card {
  background: var(--surface);
  padding: 20px;
  border: 1px solid var(--border);
  border-left: 4px solid var(--primary);
  border-radius: 0 4px 4px 0;
}

.info-2 .bonus-card h3 {
  font-size: 14px;
  color: var(--primary);
  margin-bottom: 6px;
}

.info-2 .bonus-card p {
  font-size: 13px;
  margin: 0;
}

.info-2 .cta-link {
  display: inline-block;
  margin-top: 24px;
  padding: 12px 24px;
  background: var(--forest);
  color: var(--parchment);
  text-decoration: none;
  border-radius: 4px;
  font-weight: 500;
  font-size: 14px;
  transition: opacity 0.2s;
}

.info-2 .cta-link:hover {
  opacity: 0.9;
}

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

.info-3 .payment-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 20px 0;
}

.info-3 .payment-tag {
  padding: 10px 18px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
}

.info-3 .info-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 20px;
}

.info-3 .cta-link {
  display: inline-block;
  margin-top: 20px;
  color: var(--forest);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.info-4 {
  background: var(--espresso);
  color: var(--parchment);
}

.info-4 h2 {
  color: var(--parchment);
}

.info-4 p {
  color: rgba(245, 237, 224, 0.85);
}

.info-4 .wagering-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  font-size: 14px;
}

.info-4 .wagering-table th,
.info-4 .wagering-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 179, 179, 0.15);
}

.info-4 .wagering-table th {
  color: var(--accent);
  font-weight: 600;
}

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

.info-5 .promo-timeline {
  position: relative;
  padding-left: 32px;
  margin-top: 24px;
}

.info-5 .promo-timeline::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--accent);
}

.info-5 .promo-step {
  position: relative;
  margin-bottom: 24px;
  padding-left: 16px;
}

.info-5 .promo-step::before {
  content: "";
  position: absolute;
  left: -28px;
  top: 6px;
  width: 12px;
  height: 12px;
  background: var(--primary);
  border-radius: 50%;
  border: 2px solid var(--surface);
}

.info-5 .promo-step h3 {
  font-size: 15px;
  color: var(--forest);
  margin-bottom: 4px;
}

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

.info-6 {
  background: var(--surface);
  border: 1px solid var(--border);
}

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

.info-6 .game-type {
  text-align: center;
  padding: 24px 12px;
  background: var(--bg);
  border-radius: 4px;
  border-bottom: 3px solid var(--wood);
}

.info-6 .game-type span {
  display: block;
  font-size: 28px;
  margin-bottom: 8px;
}

.info-6 .game-type h3 {
  font-size: 13px;
  color: var(--espresso);
}

.info-6 .info-visual {
  margin-top: 32px;
  text-align: center;
}

.info-6 .info-visual img {
  max-width: 500px;
  max-height: 320px;
  width: 100%;
  border-radius: 4px;
}

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

.info-7 .games-ranked {
  counter-reset: rank;
  margin-top: 20px;
}

.info-7 .ranked-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  counter-increment: rank;
}

.info-7 .ranked-item::before {
  content: counter(rank);
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--accent);
  font-weight: 700;
  min-width: 40px;
}

.info-7 .ranked-item h3 {
  font-size: 15px;
  color: var(--forest);
  margin-bottom: 4px;
}

.info-7 .ranked-item p {
  font-size: 13px;
  margin: 0;
}

.info-8 {
  background: var(--forest);
  color: var(--parchment);
}

.info-8 h2 {
  color: var(--parchment);
}

.info-8 p {
  color: rgba(245, 237, 224, 0.85);
}

.info-8 .tips-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 24px;
}

.info-8 .tip-box {
  background: rgba(0, 0, 0, 0.25);
  padding: 20px;
  border-left: 3px solid var(--accent);
  border-radius: 0 4px 4px 0;
}

.info-8 .tip-box h3 {
  font-size: 14px;
  color: var(--accent);
  margin-bottom: 8px;
}

.info-8 .tip-box p {
  font-size: 13px;
  margin: 0;
}

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

.info-9 .slots-showcase {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 32px;
  align-items: start;
  margin-top: 20px;
}

.info-9 .slots-visual img {
  max-width: 100%;
  max-height: 320px;
  border-radius: 4px;
  border: 2px solid var(--wood);
}

.info-9 .slots-features {
  list-style: none;
}

.info-9 .slots-features li {
  padding: 10px 0 10px 24px;
  position: relative;
  font-size: 14px;
  border-bottom: 1px dashed var(--border);
}

.info-9 .slots-features li::before {
  content: "◆";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-size: 10px;
  top: 14px;
}

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

.info-10 .mobile-layout {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 40px;
  align-items: center;
  margin-top: 20px;
}

.info-10 .device-mock {
  background: var(--espresso);
  border-radius: 24px;
  padding: 16px 8px;
  border: 3px solid var(--wood);
}

.info-10 .device-mock img {
  width: 100%;
  max-height: 280px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

.info-10 .cta-link {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  background: var(--primary);
  color: white;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 500;
  font-size: 14px;
}

.info-10 .mobile-checklist {
  list-style: none;
  margin-top: 16px;
}

.info-10 .mobile-checklist li {
  padding: 8px 0 8px 28px;
  position: relative;
  font-size: 14px;
}

.info-10 .mobile-checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--forest);
  font-weight: 700;
}

.university-classic {
  font-family: var(--serif);
}

.library-intellectual {
  letter-spacing: 0.01em;
}

.history-ornate {
  border-image: linear-gradient(var(--wood), var(--accent), var(--wood)) 1;
}

@media (max-width: 900px) {
  .hero-home {
    height: 80px;
  }

  .info-1 .info-inner,
  .info-3 .info-split,
  .info-9 .slots-showcase,
  .info-10 .mobile-layout {
    grid-template-columns: 1fr;
  }

  .info-2 .bonus-cards,
  .info-6 .game-types {
    grid-template-columns: 1fr 1fr;
  }

  .info-8 .tips-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 500px) {
  .info-2 .bonus-cards,
  .info-6 .game-types {
    grid-template-columns: 1fr;
  }

  .offers-grid {
    grid-template-columns: 1fr;
  }

  .offer-logo {
    width: 64px;
    height: 64px;
  }

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

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