.rentlySupportPage {
  min-height: 100vh;
  margin: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  box-sizing: border-box;
  background: #f7f7f7;
  color: #222;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}
.rentlySupportPageCard {
  width: min(560px, 100%);
  box-sizing: border-box;
  padding: 34px;
  border: 1px solid #e5e5e5;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}
.rentlySupportBrand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  font-size: 22px;
  font-weight: 800;
}
.rentlySupportBrand img { width: 42px; height: 42px; object-fit: contain; }
.rentlySupportPage h1 { margin: 0 0 12px; font-size: 32px; line-height: 1.08; letter-spacing: -.035em; }
.rentlySupportPage p { margin: 0 0 18px; color: #717171; font-size: 16px; line-height: 1.55; }
.rentlySupportCode {
  display: grid;
  gap: 6px;
  margin: 22px 0;
  padding: 16px;
  border: 1px solid #e7e7e7;
  border-radius: 16px;
  background: #fafafa;
}
.rentlySupportCode span { color: #717171; font-size: 12px; }
.rentlySupportCode b { font-size: 16px; letter-spacing: .03em; }
.rentlySupportPageActions { display: flex; flex-wrap: wrap; gap: 10px; }
.rentlySupportPageActions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 750;
  text-decoration: none;
}
.rentlySupportPageActions .primary { background: #222; color: #fff; }
.rentlySupportPageActions .secondary { border: 1px solid #ddd; color: #222; background: #fff; }
@media (max-width: 640px) {
  .rentlySupportPageCard { padding: 26px 22px; border-radius: 24px; }
  .rentlySupportPage h1 { font-size: 28px; }
}
