html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *::before, *::after {
  box-sizing: inherit;
}
html, body {
  margin: 0;
  padding: 0;
}
body {
  min-height: 100vh;
  background: #f6f1f2;
  color: #121212;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
.rr-theme-page {
  padding: 48px 20px;
}
.rr-theme-page__inner {
  max-width: 1120px;
  margin: 0 auto;
  background: rgba(255,255,255,.85);
  border: 1px solid rgba(233,7,41,.08);
  border-radius: 28px;
  padding: 32px;
  box-shadow: 0 20px 60px rgba(17, 24, 39, .06);
}
.rr-theme-page__title {
  margin: 0 0 20px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
}
.rr-theme-page__content > :first-child {
  margin-top: 0;
}
.rr-theme-fallback {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}
.rr-theme-fallback__box {
  width: min(100%, 760px);
  background: #fff;
  border: 1px solid rgba(233,7,41,.12);
  border-radius: 28px;
  padding: 32px;
  box-shadow: 0 20px 60px rgba(17, 24, 39, .08);
  text-align: center;
}
.rr-theme-fallback__box h1 {
  margin: 0 0 12px;
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  color: #0f172a;
}
.rr-theme-fallback__box p {
  margin: 0;
  font-size: 1rem;
  color: #475569;
}
