#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;
  padding: 1.25rem 1.375rem 1.375rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.55rem;
}

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

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

#offers .offer-name {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 700;
  color: #1e293b;
  font-family: Georgia, "Palatino Linotype", Palatino, "Times New Roman", serif;
}

#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", sans-serif;
}

#offers .bonus-terms {
  margin: 0;
  font-size: 0.6875rem;
  color: #64748b;
  line-height: 1.4;
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
}

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

#offers .offer-rating {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 700;
  color: #1e293b;
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
}

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

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

#offers .offer-feature {
  margin: 0;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #64748b;
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
}

#offers .action-area {
  margin-top: 0.35rem;
  width: 100%;
}

#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", sans-serif;
}

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

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

  #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;
    overflow-wrap: anywhere;
    word-break: break-word;
  }
}
