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