:root {
  --bg: #000;
  --bg-2: #141414;
  --card: #181818;
  --text: #fff;
  --muted: #b3b3b3;
  --gold: #ffc400;
  --gold-2: #ffe066;
  --line: #2f2f2f;
  --warn: #e87c03;
  --rental: rgba(109, 109, 110, .7);
  --perm: #fff;
  --creator: rgba(109, 109, 110, .45);
  --shadow: none;
  --radius: 4px;
}
* { box-sizing: border-box; }
html, body { margin: 0; }
html { background: #000; }
body {
  color: var(--text);
  font-family: Inter, Helvetica Neue, Helvetica, Arial, "Hiragino Sans", sans-serif;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-height: 100dvh;
  -webkit-font-smoothing: antialiased;
}
a { color: #fff; text-decoration: none; }
.phone {
  position: relative;
  width: 100%;
  max-width: 430px;
  min-height: 100dvh;
  background: #000;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
@media (min-width: 500px) {
  body { padding: 20px 0; }
  .phone {
    min-height: calc(100dvh - 40px);
    border-radius: 28px;
    border: 1px solid #222;
  }
}
.top {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-bottom: 0;
  flex-shrink: 0;
  width: 100%;
  background: linear-gradient(180deg, rgba(0,0,0,.85), rgba(0,0,0,.35) 70%, transparent);
}
.brand { justify-self: start; display: flex; align-items: center; line-height: 0; }
.logo { height: 22px; width: auto; display: block; }
.header-tools {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 2;
}
.header-me, .header-menu {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #222;
  color: #fff;
  border: 0;
  padding: 0;
  cursor: pointer;
}
.header-me svg, .header-menu svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.header-action {
  font-weight: 700;
  color: #111;
  background: var(--gold);
  font-size: 13px;
  white-space: nowrap;
  padding: 8px 16px;
  border-radius: var(--radius);
}
footer {
  border-bottom: 0;
  border-top: 1px solid #222;
  flex-wrap: wrap;
  font-size: 12px;
  margin-top: auto;
}
main { padding: 20px 16px 28px; flex: 1; }
.hero h1 {
  font-size: 1.85rem;
  margin: 0 0 8px;
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.1;
}
.hero p { color: var(--muted); margin: 0 0 18px; }
.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 12px; }
.card {
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  color: inherit;
  display: block;
}
.card img { width: 100%; aspect-ratio: 16/9; object-fit: cover; background: #111; }
.card div { padding: 10px 4px 2px; display: flex; flex-direction: column; gap: 4px; }
.card span { color: var(--muted); font-size: .85rem; }
.creator-index { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); }
.creator-index .card { position: relative; }
.creator-index .card img { aspect-ratio: 1 / 1; display: block; }
.creator-tile-name {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 12px;
  z-index: 1;
  text-align: center;
  font-weight: 800;
  font-size: 16px;
  padding: 0 8px;
  text-shadow: 0 1px 10px #000;
}
.creator-index .creator-tile::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 48%;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.82));
  pointer-events: none;
}
.creator-studio-head {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 18px;
}
.creator-studio-head h1 { margin: 0; font-size: 1.4rem; }
.studio-month { margin: 0 0 14px; }
.studio-month select { width: 100%; }
.studio-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin: 0 0 8px;
}
.studio-stats-3 { grid-template-columns: 1fr 1fr 1fr; margin-bottom: 20px; }
.studio-stats-3 span { font-size: 10px; }
.studio-list { display: flex; flex-direction: column; gap: 12px; }
.studio-stats div {
  background: var(--card);
  border-radius: var(--radius);
  padding: 12px;
}
.studio-stats span { display: block; color: var(--muted); font-size: 11px; font-weight: 600; }
.studio-stats strong { display: block; margin-top: 4px; font-size: 1.15rem; }
.copy-row { display: flex; gap: 6px; margin-top: 6px; }
.copy-row input {
  flex: 1;
  min-width: 0;
  font-size: 11px;
  padding: 8px;
}
.studio-video { align-items: flex-start; }
.studio-sale { font-size: 13px; color: var(--muted); margin: 0 0 8px; }
.player { position: relative; background: #000; border-radius: 0; overflow: hidden; }
.player video, .player img.sfw-only { width: 100%; display: block; }
.uid-overlay {
  position: absolute;
  right: 12px;
  top: 12px;
  z-index: 4;
  color: rgba(255,255,255,.82);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .04em;
  pointer-events: none;
  text-shadow: 0 1px 2px #000;
}
.auth, .sku-list { display: flex; flex-direction: column; gap: 14px; width: 100%; }
.buy { display: flex; flex-direction: column; width: 100%; gap: 0; }
.page-login main, .page-creator-login main { display: flex; }
.page-login .auth, .page-creator-login .auth { width: 100%; }
.auth h1, .buy h1, .legal-doc h1, .page-me h1 {
  font-weight: 800;
  letter-spacing: -.02em;
  font-size: 1.6rem;
  margin: 0 0 4px;
}
label { display: flex; flex-direction: column; gap: 6px; color: var(--muted); font-size: 13px; font-weight: 500; }
input, select, textarea, button {
  font: inherit;
  padding: 12px 14px;
  border-radius: var(--radius);
  border: 0;
  background: #333;
  color: var(--text);
}
input:focus, select:focus, textarea:focus {
  outline: 2px solid #fff;
  outline-offset: 0;
}
button, .btn {
  background: var(--gold);
  color: #111;
  font-weight: 700;
  border: 0;
  cursor: pointer;
  display: inline-block;
  padding: 14px 16px;
  border-radius: var(--radius);
  font-size: 16px;
  text-align: center;
}
.auth button[type="submit"], .auth .btn-register {
  width: 100%;
}
.auth .btn-register {
  background: #fff;
  color: #111;
}
.warn { color: var(--warn); }
.legal { border: 0; padding: 12px 0; color: var(--muted); }
.legal-under { margin: 8px 0 0; font-size: 10px; line-height: 1.35; text-align: center; color: #777; }
.sku {
  position: relative;
  display: flex;
  gap: 0;
  padding: 16px 36px 22px 14px;
  border: 0;
  border-radius: var(--radius);
  background: #333;
  color: #fff;
  align-items: flex-start;
  overflow: hidden;
  cursor: pointer;
}
.sku.off { opacity: .45; cursor: default; }
.sku input[type="radio"] {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.sku:has(input:checked) {
  background: #fff;
  color: #000;
}
.sku:has(input:checked) .sku-desc { color: #444; }
.sku:has(input:checked) .sku-price s { color: #666; }
.sku-copy { display: flex; flex-direction: column; gap: 4px; min-width: 0; flex: 1; }
.sku-copy strong { font-size: 16px; }
.sku-desc {
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
}
.sku-price { font-style: normal; font-weight: 800; font-size: 24px; letter-spacing: -.03em; }
.sku-price s { color: #888; font-weight: 600; margin-right: 6px; font-size: 15px; }
.disc-copy {
  color: var(--gold);
  font-weight: 700;
  font-size: 12px;
  white-space: nowrap;
}
.ribbon {
  position: absolute;
  top: auto;
  bottom: 10px;
  right: -32px;
  width: 96px;
  background: var(--gold);
  color: #111;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .04em;
  padding: 3px 0;
  text-align: center;
  transform: rotate(-45deg);
  z-index: 2;
  pointer-events: none;
}
.page-buy main { padding: 0 0 8px; }
.page-buy .player { border-radius: 0; }
.page-buy .player img { width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block; background: #000; }
.page-buy .watch-title { font-size: 22px; margin: 0; }
.page-buy .meta { font-size: 15px; }
.page-buy .sku-list button[type="submit"] { font-size: 18px; }
.page-buy .legal-under { font-size: 12px; }
.pass-wrap { position: relative; overflow: hidden; border-radius: var(--radius); }
.pass-wrap .ribbon { top: auto; bottom: 10px; right: -28px; width: 86px; font-size: 8px; padding: 2px 0; transform: rotate(-45deg); }
.age-gate { position: absolute; inset: 0; background: rgba(0,0,0,.92); z-index: 80; display: grid; place-items: center; padding: 16px; }
.age-card {
  background: #141414;
  padding: 24px 20px;
  border-radius: 8px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.age-card h1 { font-size: 1.35rem; line-height: 1.3; margin: 0; font-weight: 800; }
.legal-doc, .legal-doc .body, .legal-doc p {
  overflow-wrap: anywhere;
  word-break: break-word;
}
.page-legal .auth {
  margin: 0 0 28px;
}
.page-legal .legal-doc .body {
  margin-top: 8px;
  padding-top: 8px;
}
.page-legal .legal-doc .body p {
  margin: 0 0 16px;
  line-height: 1.6;
}
.leave { color: var(--muted); text-align: center; }
table { width: 100%; border-collapse: collapse; display: block; overflow-x: auto; }
th, td { text-align: left; padding: 8px; border-bottom: 1px solid var(--line); }
.admin-nav { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 16px; }
.admin-nav a { background: #333; padding: 8px 12px; border-radius: var(--radius); font-weight: 600; font-size: 13px; }
.hint { color: var(--muted); font-size: .9rem; }
.lib { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.lib li, .page-me ul li {
  background: var(--card);
  border-radius: var(--radius);
  padding: 12px;
}
.page-me ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.page-me h2 { font-size: 1.1rem; margin: 22px 0 10px; font-weight: 700; }
.tab-bar { display: flex; gap: 6px; margin: 12px 0 16px; }
.tab {
  flex: 1;
  background: #222;
  color: #b3b3b3;
  font-size: 11px;
  font-weight: 700;
  padding: 10px 6px;
  border-radius: var(--radius);
}
.tab.on { background: var(--gold); color: #111; }
.tab-panel { display: none; }
.tab-panel.on { display: flex; flex-direction: column; gap: 10px; }
.lib-card {
  display: flex;
  gap: 12px;
  align-items: center;
  background: var(--card);
  border-radius: var(--radius);
  padding: 10px;
}
.lib-card img { width: 112px; height: 63px; object-fit: cover; border-radius: var(--radius); background: #111; flex-shrink: 0; }
.lib-card.creator-pass img.avatar, .avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--gold);
  flex-shrink: 0;
}
.avatar.lg { width: 72px; height: 72px; }
.lib-card .lib-body { display: flex; flex-direction: column; gap: 4px; min-width: 0; flex: 1; }
.lib-card .btn-sm { padding: 8px 12px; font-size: 13px; width: fit-content; margin-left: auto; flex-shrink: 0; }
.expired { color: var(--gold); font-size: 12px; font-weight: 700; }
.creator-head { display: flex; gap: 14px; align-items: center; margin-bottom: 18px; }
.creator-head h1 { margin: 0; font-size: 1.4rem; }
.page-creator-public .top {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  z-index: 5;
  background: linear-gradient(180deg, rgba(0,0,0,.82), rgba(0,0,0,.25) 70%, transparent);
}
.page-creator-public main { padding: 0 0 8px; }
.creator-hero {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #000;
}
.creator-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  -webkit-mask-image: linear-gradient(180deg, #000 48%, rgba(0,0,0,.55) 70%, transparent 100%);
  mask-image: linear-gradient(180deg, #000 48%, rgba(0,0,0,.55) 70%, transparent 100%);
}
.creator-hero-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, transparent 50%, rgba(0,0,0,.5) 68%, rgba(0,0,0,.92) 86%, #000 100%);
  pointer-events: none;
}
.creator-hero-name {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 22px;
  z-index: 1;
  text-align: center;
}
.creator-hero-name h1 {
  margin: 0;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.1;
  text-align: center;
}
.creator-grid {
  padding: 12px 16px 24px;
  grid-template-columns: 1fr;
  gap: 10px;
}
.card-overlay { position: relative; }
.card-overlay .card-layer {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 40px 12px 10px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.9));
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  gap: 8px;
}
.card-overlay .card-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  min-width: 0;
}
.card-overlay .card-layer strong {
  font-size: 16px;
  font-weight: 800;
  line-height: 1.2;
}
.card-overlay .card-price {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
}
.card-overlay .star-avg {
  font-size: 16px;
  line-height: 1;
  height: 16px;
  flex-shrink: 0;
  align-items: center;
}
.card-overlay .star-empty { color: rgba(255,255,255,.22); }
.card-overlay .star-fill { color: #ffb020; }

.page-watch main { padding: 0 0 8px; }
.page-watch .player { border-radius: 0; }
.page-watch .player video, .page-watch .player img.sfw-only { aspect-ratio: 16/9; object-fit: cover; background: #000; }
.watch-body { padding: 14px 16px 8px; }
.watch-title { font-size: 1.25rem; margin: 0; line-height: 1.15; font-weight: 800; letter-spacing: -.02em; }
.watch .meta, .buy .meta { color: var(--muted); font-size: 13px; margin: 2px 0 6px; font-weight: 500; }
.tag-row { margin: 0 0 12px; }
.tag-row .tag {
  display: inline-block;
  margin: 0 6px 4px 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}
.pass-row { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 8px; }
.pass-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 12px 10px 16px;
  border-radius: var(--radius);
  font-size: 11px;
  font-weight: 700;
  text-align: center;
  line-height: 1.2;
  min-height: 60px;
  color: #fff;
  border: 0;
}
.pass-btn small { font-weight: 700; font-size: 13px; }
.pass-rental { background: var(--rental); }
.pass-rental small { color: #fff; }
.pass-perm { background: var(--perm); color: #000; }
.pass-perm small { color: #000; }
.pass-creator { background: var(--creator); }
.pass-creator small { color: #fff; }
.pass-btn.off { opacity: 0.38; pointer-events: none; }
.action-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin: 18px 0 10px;
  padding: 4px 8px;
}
.action-btn {
  background: none;
  color: var(--muted);
  border: 0;
  padding: 8px 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  line-height: 1;
  min-width: 64px;
}
.action-btn .ico {
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  color: #fff;
  line-height: 1;
}
.action-label,
.action-btn.score .star-avg {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 11px;
  font-size: 11px;
  line-height: 1;
}
.action-btn .ico svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.action-btn[data-flag="favorite"] .ico svg,
.action-btn[data-flag="like"] .ico svg { fill: none; }
.action-btn.on { color: #fff; }
.action-btn.on .ico { color: #fff; }
.action-btn.on[data-flag="favorite"] .ico svg { fill: #fff; stroke: #fff; }
.action-btn.on[data-flag="like"] .ico svg { fill: #fff; stroke: #fff; }
.synopsis { color: #d2d2d2; font-size: 14px; line-height: 1.55; margin: 8px 0 16px; }
.more-h { font-size: 1.05rem; margin: 12px 0 8px; font-weight: 700; }
.more-list { list-style: none; margin: 0; padding: 0; }
.ep-row {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 10px 0;
  color: inherit;
  border-bottom: 1px solid #222;
}
.ep-thumb {
  position: relative;
  width: 128px;
  height: 72px;
  flex-shrink: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: #222;
}
.ep-thumb img, .ep-thumb video { width: 100%; height: 100%; object-fit: cover; display: block; }
.ep-play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #fff;
}
.ep-play svg { width: 22px; height: 22px; fill: #fff; filter: drop-shadow(0 1px 4px #000); }
.ep-meta { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.ep-meta strong { font-size: 14px; font-weight: 600; }
.ep-meta em { color: var(--muted); font-style: normal; font-size: 12px; }

footer.site-legal {
  display: block;
  text-align: center;
  padding: 24px 10px 36px;
  color: #808080;
  font-size: 9px;
  line-height: 1.55;
  border-top: 1px solid #222;
  overflow-wrap: normal;
  word-break: normal;
}
footer.site-legal p { margin: 0 0 10px; }
footer.site-legal a { color: #b3b3b3; text-decoration: none; }
footer.site-legal a:hover { text-decoration: underline; }
.footer-cr {
  white-space: nowrap;
  font-size: 9px;
  letter-spacing: -0.05em;
  overflow: hidden;
}
.footer-2257 { font-size: 9px; line-height: 1.35; }
.footer-pay { line-height: 1.65; }
.legal-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 4px 8px;
  color: #555;
  font-size: 9px;
}
.pay-marks {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
}
.pay-marks img {
  height: 28px;
  width: auto;
  display: block;
  border-radius: 2px;
}
.foot-host {
  margin-top: 8px;
  color: #fff;
  font-weight: 800;
  letter-spacing: .04em;
}
.legal-doc .body p { margin: 0 0 12px; font-size: 13px; line-height: 1.55; color: #d2d2d2; }

.stars, .stars-read { display: flex; gap: 1px; line-height: 1; }
.star {
  background: none;
  border: 0;
  color: #3a3a3a;
  padding: 0;
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
}
.stars-read .star { cursor: default; font-size: 13px; padding: 0; }
.star.on { color: #ffb020; }
.star-avg {
  display: inline-flex;
  gap: 1px;
  line-height: 1;
  color: #3a3a3a;
}
.star-unit {
  position: relative;
  display: inline-block;
  width: 1em;
  height: 1em;
  font-size: inherit;
  line-height: 1;
  overflow: hidden;
}
.star-empty, .star-fill {
  display: block;
  line-height: 1;
}
.star-empty { color: #3a3a3a; }
.star-fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  overflow: hidden;
  color: #ffb020;
  white-space: nowrap;
}
.rate-slide {
  max-height: 0;
  overflow: hidden;
  transition: max-height .22s ease;
}
.rate-slide .stars {
  display: flex;
  width: 100%;
  justify-content: space-between;
  padding: 10px 0 4px;
}
.rate-slide.open { max-height: 72px; }
.rate-slide .star {
  flex: 1;
  font-size: 34px;
  line-height: 1;
  padding: 4px 0;
  color: transparent;
  -webkit-text-stroke: 1.6px #8a8a8a;
  text-stroke: 1.6px #8a8a8a;
}
.rate-slide .star.on {
  color: #ffb020;
  -webkit-text-stroke: 1.6px #ffb020;
}
#rate-open .ico svg {
  fill: #fff;
  stroke: none;
}
#avg-score {
  font-weight: 900;
  font-size: 22px;
  letter-spacing: -.03em;
  color: #fff;
  width: auto;
  min-width: 28px;
  height: 28px;
  line-height: 1;
}
.action-btn.score {
  gap: 6px;
  min-width: 64px;
}
.ep-meta .stars-read { margin: 4px 0 0; }
.ep-meta .star-avg { font-size: 12px; }
.msg-box { min-height: 180px; resize: vertical; }
.legal-doc .body p { font-size: 11px; color: #888; }

.sheet-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.55);
  z-index: 60;
}
.sheet-backdrop[hidden] { display: none; }
.sheet {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(82%, 320px);
  background: #141414;
  z-index: 61;
  transform: translateX(110%);
  visibility: hidden;
  transition: transform .22s ease, visibility .22s ease;
  display: flex;
  flex-direction: column;
  padding: 16px 16px 28px;
  pointer-events: none;
  overflow-y: auto;
}
.phone.menu-open .sheet {
  pointer-events: auto;
  transform: translateX(0);
  visibility: visible;
}
.sheet-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  font-weight: 800;
}
.sheet-close {
  background: none;
  border: 0;
  color: #fff;
  font-size: 28px;
  line-height: 1;
  padding: 0 4px;
  cursor: pointer;
}
.sheet-nav { display: flex; flex-direction: column; gap: 4px; flex: 1; }
.sheet-nav a {
  display: block;
  padding: 14px 8px;
  border-bottom: 1px solid #2a2a2a;
  font-weight: 600;
  font-size: 15px;
}
.sheet-nav-foot {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid #2a2a2a;
}
.sheet-nav-foot a {
  display: block;
  padding: 14px 8px;
  font-weight: 600;
  font-size: 15px;
  color: var(--muted);
}
.avatar-upload { margin: 8px 0 16px; gap: 8px; }
.avatar-upload button { font-size: 13px; padding: 8px 12px; width: fit-content; }
.btn-danger { background: #7a1d12; }
.page-account .auth { margin-bottom: 28px; }
.page-account h2 { font-size: 1rem; margin: 0; }
