#offers .content-area {
  max-width: 420px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.125rem;
  align-items: stretch;
}

#offers .card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(30, 41, 59, 0.06);
  border: 1px solid #e2e8f0;
  background: #ffffff;
}

#offers .card-inner {
  background: #ffffff;
  padding: 1.125rem 1.375rem 1.375rem;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

#offers .logo-rating-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: nowrap;
}

#offers .logo-placeholder {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  border-radius: 12px;
  overflow: hidden;
  background: #f8fafc;
  display: flex;
  align-items: center;
  justify-content: center;
}

#offers .logo-placeholder img,
#offers .offer-logo {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: contain;
  object-position: center;
  display: block;
  background: transparent;
}

#offers .rating {
  display: flex;
  flex-direction: column;
  gap: 0.3125rem;
  align-items: flex-start;
  flex: 1;
  min-width: 0;
}

#offers .rating-value {
  font-weight: 700;
  font-size: 1.125rem;
  color: #1e293b;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-variant: normal;
  letter-spacing: normal;
}

#offers .rating-max {
  font-size: 0.875rem;
  color: #64748b;
  font-weight: 400;
}

#offers .rating .rating-value,
#offers .rating .rating-max {
  display: inline;
}

#offers .stars {
  display: flex;
  align-items: center;
  gap: 0.1875rem;
}

#offers .star {
  width: 14px;
  height: 12px;
  color: #f59e0b;
}

#offers .star-empty {
  color: #cbd5e1;
}

#offers .domain {
  margin: 0;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #64748b;
  letter-spacing: 0.02em;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-variant: normal;
}

#offers .divider {
  margin: 0.25rem 0 0;
  border: none;
  border-top: 1px solid #e2e8f0;
}

#offers .bonus-info {
  display: flex;
  flex-direction: column;
  gap: 0.3125rem;
}

#offers .bonus-label {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #64748b;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-variant: normal;
}

#offers .bonus-text {
  margin: 0;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.4;
  color: #1e293b;
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
  max-width: 100%;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-variant: normal;
  letter-spacing: normal;
}

#offers .bonus-terms {
  margin: 0;
  font-size: 0.6875rem;
  color: #64748b;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-variant: normal;
  letter-spacing: normal;
}

#offers .offer-desc {
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.45;
  color: #64748b;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-variant: normal;
  letter-spacing: normal;
}

#offers .action-area {
  margin-top: 0.375rem;
}

#offers .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.8125rem 1.125rem;
  font-size: 0.9375rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #fff;
  background: #4f46e5;
  border: none;
  border-radius: 10px;
  text-decoration: none;
  cursor: pointer;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-variant: normal;
}

#offers .btn:hover {
  background: #4338ca;
  color: #fff;
}

#offers .rank-ribbon {
  position: absolute;
  top: 0;
  right: 0;
  width: 38px;
  height: 38px;
  background: #4f46e5;
  border-radius: 0 14px 0 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.125rem;
}

#offers .rank-num {
  font-size: 0.875rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-variant: normal;
}

@media (min-width: 380px) {
  #offers .content-area {
    padding: 0 0.5rem;
    gap: 1.25rem;
  }

  #offers .card-inner {
    padding: 1.25rem 1.5rem 1.5rem;
    gap: 0.9375rem;
  }

  #offers .logo-rating-row {
    gap: 1.125rem;
  }

  #offers .divider {
    margin: 0.3125rem 0 0;
  }

  #offers .action-area {
    margin-top: 0.5rem;
  }
}

@media (max-width: 767px) {
  #offers .logo-placeholder {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

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

  #offers .bonus-text {
    font-size: 0.875rem;
    line-height: 1.45;
    overflow-wrap: anywhere;
    word-break: break-word;
  }
}
.hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background-color: var(--bg);
  background-image: url("/images/decorative/decor_1.webp");
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(0, 0, 0, 0.35) 45%,
    rgba(0, 0, 0, 0.7) 100%
  );
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
  padding: 40px 24px 48px;
  text-align: left;
}

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--accent);
  text-shadow: 0 0 24px rgba(255, 217, 102, 0.45);
  margin-bottom: 10px;
  animation: smart-fade 0.7s ease both;
}

.hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.4vw, 1.45rem);
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
  max-width: 560px;
}

.hero-content .hero-lead {
  font-size: 0.95rem;
  color: rgba(255, 204, 0, 0.85);
  max-width: 480px;
  margin-bottom: 18px;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  padding: 12px 22px;
  background: var(--primary);
  color: #1A1500;
  text-decoration: none;
  font-weight: 700;
  border-radius: 10px;
  box-shadow: 0 0 18px rgba(255, 179, 0, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  animation: adaptive-glow 3.2s ease infinite;
}

.hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 26px rgba(255, 217, 102, 0.5);
}

.offers-section {
  position: relative;
  padding: 56px 24px;
  background-image: url("/images/offers_bg/offers_bg.webp");
  background-size: cover;
  background-position: center;
}

.offers-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(13, 10, 0, 0.88);
}

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

.offers-title {
  text-align: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--accent);
  margin-bottom: 8px;
  text-shadow: 0 0 14px rgba(255, 217, 102, 0.3);
}

.offers-intro {
  text-align: center;
  font-size: 0.875rem;
  color: var(--muted);
  margin-bottom: 28px;
}

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

.info-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.info-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.info-section h2 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--accent);
  margin-bottom: 12px;
}

.info-section p {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 12px;
}

.info-label {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 10px;
}

.info-grid-2 {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: center;
}

.info-grid-2.reverse {
  grid-template-columns: 0.9fr 1.1fr;
}

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

.info-chip {
  font-size: 0.75rem;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--muted);
  background: rgba(51, 38, 0, 0.4);
}

.info-steps {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.info-step {
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(26, 21, 0, 0.55);
}

.info-step strong {
  display: block;
  color: var(--primary);
  font-size: 0.8rem;
  margin-bottom: 4px;
}

.info-step span {
  color: var(--muted);
  font-size: 0.875rem;
}

.info-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 14px;
  font-size: 0.875rem;
}

.info-table th,
.info-table td {
  border: 1px solid var(--border);
  padding: 10px 12px;
  text-align: left;
  color: var(--muted);
}

.info-table th {
  color: var(--accent);
  background: rgba(51, 38, 0, 0.45);
}

.tip-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 16px;
}

.tip-card {
  padding: 16px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(26, 21, 0, 0.6);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tip-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 18px rgba(255, 179, 0, 0.18);
}

.tip-card strong {
  display: block;
  color: var(--primary);
  margin-bottom: 6px;
}

.tip-card p {
  margin: 0;
  font-size: 0.85rem;
}

.assistant-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 18px;
}

.info-note {
  margin-top: 14px;
}

.deco-spaced {
  margin-top: 16px;
}

.deco-narrow {
  max-width: min(480px, 100%);
}

@media (max-width: 768px) {
  .hero {
    min-height: 40vh;
  }

  .hero-content {
    text-align: center;
    padding: 28px 20px 32px;
  }

  .hero-content h1,
  .hero-content .hero-lead {
    margin-left: auto;
    margin-right: auto;
  }

  .info-grid-2,
  .info-grid-2.reverse,
  .assistant-row,
  .tip-grid {
    grid-template-columns: 1fr;
  }

  .info-section,
  .offers-section {
    overflow-x: hidden;
  }

  .deco-wrap {
    max-width: 100%;
    overflow: hidden;
  }

  .deco-wrap img {
    max-width: 100%;
    width: 100%;
    height: auto;
  }
}

@media (max-width: 375px) {
  .hero-content {
    padding: 24px 16px 28px;
  }

  .deco-wrap img {
    max-height: 200px;
    object-fit: cover;
    object-position: center;
  }
}
