:root {
  color-scheme: light;
  --orange: #f47321;
  --orange-dark: #d35b13;
  --blue: #0c6a93;
  --blue-dark: #075a7d;
  --ink: #222;
  --muted: #555;
  --soft: #f5f5f5;
  --line: #d9d9d9;
  --panel: #fff;
  --sidebar: #f3f3f3;
  --green: #288a09;
  --shadow: 0 1px 2px rgba(28, 38, 48, .08), 0 8px 24px rgba(28, 38, 48, .08);
  --bg: #fff;
  --header: #f8f9fa;
  --nav: #f8f9fa;
  --input: #fff;
  --input-border: #cfd9e0;
}

:root[data-theme="dark"] {
  color-scheme: dark;
  --orange: #ff8a3d;
  --orange-dark: #f47321;
  --blue: #53b3dc;
  --blue-dark: #0c6a93;
  --ink: #e8edf2;
  --muted: #a9b7c2;
  --soft: #17202a;
  --line: #283646;
  --panel: #121923;
  --sidebar: #101820;
  --green: #53a939;
  --shadow: 0 1px 2px rgba(0, 0, 0, .35), 0 10px 28px rgba(0, 0, 0, .28);
  --bg: #0d131a;
  --header: #101820;
  --nav: #0f2531;
  --input: #0f1720;
  --input-border: #314252;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "UbuntuRegular", Arial, Helvetica, sans-serif;
  font-size: 12px;
  line-height: 1.333;
}

img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}

a {
  color: var(--blue);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  padding: 0;
  border-bottom: 0;
  background: var(--header);
  box-shadow: 0 1px 0 rgba(0, 0, 0, .06);
}

.masthead {
  display: grid;
  grid-template-columns: minmax(178px, 1fr) minmax(320px, 824px) minmax(max-content, 1fr);
  align-items: center;
  gap: 22px;
  width: 100%;
  min-height: 74px;
  margin: 0;
  padding: 12px 0 12px 30px;
}

.brand {
  display: grid;
  align-content: center;
  gap: 0;
}

.brand img {
  width: 166px;
  height: auto;
}

.logo-for-dark {
  display: none;
}

:root[data-theme="dark"] .logo-for-light {
  display: none;
}

:root[data-theme="dark"] .logo-for-dark {
  display: block;
}

.header-search {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-self: center;
  justify-self: center;
  width: 100%;
}

.header-search::before {
  content: "";
  position: absolute;
  left: 17px;
  top: 50%;
  width: 14px;
  height: 14px;
  border: 2px solid #2b2b2b;
  border-radius: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 1;
}

.header-search::after {
  content: "";
  position: absolute;
  left: 30px;
  top: calc(50% + 8px);
  width: 8px;
  height: 2px;
  background: #2b2b2b;
  transform: rotate(45deg);
  pointer-events: none;
  z-index: 1;
}

.header-search input {
  min-width: 0;
  height: 48px;
  padding: 0 14px 0 54px;
  border: 1px solid var(--input-border);
  border-right: 0;
  border-radius: 9px 0 0 9px;
  background: var(--input);
  color: var(--ink);
  font-size: 18px;
}

.search-scope {
  position: relative;
}

.search-scope-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-width: 96px;
  min-height: 48px;
  padding: 0 30px 0 22px;
  border: 1px solid var(--input-border);
  border-left: 1px solid var(--line);
  border-radius: 0 9px 9px 0;
  background: var(--input);
  color: var(--ink);
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
}

.search-scope-toggle svg {
  width: 10px;
  height: 7px;
  fill: currentColor;
  transition: transform .18s ease;
}

.search-scope-toggle[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.search-scope-menu {
  position: absolute;
  top: calc(100% + 4px);
  right: -8px;
  z-index: 45;
  width: 182px;
  padding: 10px 0;
  border: 1px solid var(--input-border);
  border-radius: 14px;
  background: var(--panel);
  box-shadow: 0 16px 34px rgba(11, 26, 38, .18);
  overflow: hidden;
}

.search-scope-title {
  padding: 8px 18px 12px;
  color: #8a969f;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.search-scope-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 46px;
  padding: 0 24px;
  border: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 15px;
  cursor: pointer;
}

.search-scope-option svg {
  display: none;
  width: 14px;
  height: 11px;
  fill: var(--blue);
}

.search-scope-option:hover,
.search-scope-option.is-active {
  background: #edf6fb;
  color: var(--blue);
}

.search-scope-option.is-active svg {
  display: block;
}

.account-box {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  font-size: 14px;
}

.account-box a {
  color: var(--blue);
}

.icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  min-height: 36px;
  padding: 0;
  border: 1px solid var(--input-border);
  border-radius: 999px;
  background: var(--input);
  color: var(--ink);
  cursor: pointer;
}

.icon-button svg {
  width: 5px;
  height: 23px;
  fill: currentColor;
}

.mobile-sort-icon {
  display: none;
}

.hamburger-icon {
  width: 28px;
  height: 4px;
  border-radius: 2px;
  background: currentColor;
  box-shadow: 0 -9px 0 currentColor, 0 9px 0 currentColor;
}

.mobile-menu-toggle {
  display: none;
}

.account-box .register-link {
  display: inline-flex;
  align-items: center;
  min-height: 50px;
  padding: 0 31px;
  border-radius: 999px;
  background: var(--orange);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .16);
}

.login-mini {
  display: inline-flex;
  align-items: center;
  min-height: 50px;
  padding: 0 31px;
  border: 1px solid var(--orange);
  border-radius: 999px;
  color: var(--orange) !important;
  font-weight: 700;
  text-decoration: none;
}

.login-mini:hover {
  background: rgba(244, 115, 33, .08);
  text-decoration: none;
}

.broadcast-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  color: var(--blue) !important;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.broadcast-link svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.account-box .register-link:hover {
  background: var(--orange-dark);
}

.more-menu {
  position: relative;
}

.more-menu-toggle {
  border: 0;
  background: transparent;
  color: #111;
}

:root[data-theme="dark"] .more-menu-toggle {
  background: #243a4d;
  color: #f4f8fb;
}

.theme-popover {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 40;
  width: min(260px, calc(100vw - 24px));
  padding: 18px 22px;
  border: 0;
  border-radius: 12px;
  background: var(--panel);
  box-shadow: 0 12px 26px rgba(11, 26, 38, .16);
}

.theme-popover[hidden] {
  display: none;
}

.popover-row {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  width: 100%;
  min-height: 40px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 14px;
  text-align: left;
  text-decoration: none;
}

.popover-row + .popover-row {
  margin-top: 4px;
}

.popover-row svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.switch {
  position: relative;
  width: 48px;
  height: 24px;
  border-radius: 999px;
  background: #c7c7c7;
  transition: background .16s ease;
}

.switch::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, .25);
  transition: transform .16s ease;
}

body.is-dark-theme .switch {
  background: var(--orange);
}

body.is-dark-theme .switch::before {
  transform: translateX(24px);
}

.search-form {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0;
  padding: 0;
  background: transparent;
}

.search-form input {
  min-width: 0;
  height: 31px;
  padding: 0 32px 0 10px;
  border: 1px solid #cfe4f4;
  border-right: 0;
  border-radius: 4px 0 0 4px;
  font-size: 14px;
  background: var(--input);
  color: var(--ink);
}

.search-form button,
.orange-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 31px;
  padding: 0 8px;
  border: 1px solid #cfe4f4;
  border-left: 0;
  border-radius: 0 4px 4px 0;
  background: var(--input);
  color: var(--blue);
  font-weight: 700;
  font-size: 11px;
  cursor: pointer;
}

.search-form button svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.orange-button {
  border-radius: 3px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .25);
}

.top-nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
  padding: 0 0 0 30px;
  border-top: 0;
  border-bottom: 1px solid var(--line);
  background: var(--header);
  font-size: 14px;
  white-space: nowrap;
}

.top-nav a {
  position: relative;
  padding: 12px 0 13px;
  color: var(--ink);
  font-weight: 700;
  text-transform: uppercase;
}

.top-nav a:hover {
  background: transparent;
  color: var(--blue);
  text-decoration: none;
}

.top-nav .is-active {
  color: var(--blue);
  background: transparent;
  box-shadow: none;
}

.top-nav .is-active::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 3px;
  background: var(--blue);
}

.mobile-drawer-theme,
.mobile-drawer-categories,
.mobile-drawer-actions,
.mobile-drawer-links,
.drawer-language {
  display: none;
}

.adult-warning {
  position: relative;
  margin: 0 0 6px;
  min-height: 58px;
  padding: 11px 46px 10px 22px;
  border: 1px solid #d6d6a5;
  background: #ffffcc;
  color: #222;
  text-align: center;
  font-size: 13px;
  line-height: 1.3;
}

.adult-warning-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  align-content: center;
  justify-content: center;
  justify-items: center;
  gap: 3px;
  width: 100%;
  min-height: 36px;
  transform: none;
}

.adult-warning[hidden] {
  display: none;
}

.adult-warning p {
  margin: 0;
}

.adult-warning-action {
  justify-self: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #0c6a93;
  font: inherit;
  font-weight: 700;
  line-height: 1.3;
  cursor: pointer;
}

.adult-warning-action:hover {
  background: transparent;
  color: #075a7d;
  text-decoration: underline;
}

.adult-warning-close {
  position: absolute;
  top: 50%;
  right: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #555;
  font: inherit;
  font-size: 24px;
  line-height: 1;
  transform: translateY(-50%);
  cursor: pointer;
}

.adult-warning-close:hover {
  background: rgba(0, 0, 0, .06);
  color: #222;
}

.tabs-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  width: 100%;
  padding: 28px 30px 28px;
  background: #fff;
}

.tabs {
  display: flex;
  align-items: center;
  gap: 10px;
  overflow-x: auto;
  width: auto;
  margin: 0;
  padding: 0;
  border-bottom: 0;
  background: #fff;
}

.tabs a {
  position: relative;
  min-height: 38px;
  padding: 9px 20px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: var(--panel);
  font-size: 13px;
  font-weight: 700;
  text-transform: none;
}

.tabs-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: auto;
}

.mobile-tag-strip,
.mobile-options-link {
  display: none;
}

.filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  background: #eef8ff;
  color: var(--blue);
  font-size: 15px;
  text-decoration: none;
}

.filter-chip svg,
.filter-gear svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.filter-gear {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  color: var(--blue);
}

.tabs a:hover,
.tabs .is-active {
  border-color: transparent;
  background: var(--blue);
  color: #fff;
  text-decoration: none;
}

.tabs .is-active::after {
  display: none;
}

.shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 306px;
  gap: 10px;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0 0 34px 30px;
  background: #fff;
}

.content {
  grid-column: 1;
  grid-row: 1;
  min-width: 0;
}

.sidebar {
  grid-column: 2;
  grid-row: 1;
  display: grid;
  align-self: start;
  align-content: start;
  gap: 38px;
  position: sticky;
  top: var(--sidebar-sticky-top, 0);
  max-height: none;
  overflow: visible;
  margin-top: -94px;
  padding: 34px 22px 80px;
  border-left: 1px solid #e4e9ee;
  background: #f6f7f8;
}

.filter-box {
  padding: 0;
  border: 0;
  background: transparent;
}

.filter-search {
  background: transparent;
}

.filter-box h2 {
  margin: 0;
  padding: 0 0 15px;
  border-bottom: 0;
  background: transparent;
  color: #4a4a4a;
  font-size: 13px;
  line-height: 1.15;
  font-weight: 800;
  text-transform: uppercase;
}

.filter-box h2 a {
  color: var(--blue);
  font-size: 13px;
  font-weight: 400;
  text-transform: none;
}

.filter-close {
  display: none;
  position: absolute;
  top: 28px;
  right: 22px;
  color: #4c4c4c;
  font-size: 32px;
  line-height: 1;
  text-decoration: none;
}

.filter-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 10px;
}

.filter-box a {
  display: inline-flex;
  align-items: center;
  min-height: 25px;
  padding: 3px 8px;
  border: 1px solid #d4e8f7;
  border-radius: 4px;
  background: #fff;
  color: var(--blue);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.1;
  text-decoration: none;
}

.filter-box h2 a {
  display: inline;
  min-height: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--blue);
  font-size: 12px;
  font-weight: 400;
}

.filter-box a:hover {
  color: var(--blue-dark);
  border-color: #b6d8ee;
  background: #f7fcff;
  text-decoration: none;
}

.filter-box a.is-active {
  border-color: var(--blue);
  background: #eaf7ff;
  color: var(--blue-dark);
  font-weight: 700;
}

.filter-box a.is-active::before {
  content: "";
}

.filter-search .search-form {
  margin-bottom: 17px;
}

.tag-cloud {
  gap: 10px 9px;
}

.tag-cloud a {
  font-size: 12px;
}

.filter-pager {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
  color: #7f8f9c;
  font-size: 14px;
}

.filter-pager button {
  min-height: auto;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--blue);
  font: inherit;
  cursor: pointer;
}

.filter-pager button[disabled] {
  cursor: default;
  opacity: 0.35;
}

.age-filter {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #6f7b85;
  font-size: 13px;
}

.age-filter input {
  width: 42px;
  height: 30px;
  border: 1px solid #d4e8f7;
  border-radius: 4px;
  background: #fff;
}

.age-filter a:last-child {
  border: 0;
  background: transparent;
  color: #b2b8bd;
  padding-inline: 0;
}

.room-list-head {
  display: none;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 8px;
  padding: 2px 0 5px;
  border-bottom: 1px solid var(--line);
}

h1 {
  margin: 0 0 8px;
  color: #14263a;
  font-size: 27px;
  line-height: 1.15;
}

h2 {
  margin: 0 0 10px;
  font-size: 19px;
}

p {
  margin: 0 0 10px;
}

.room-list-head p,
.seo-copy p,
.site-footer p,
.notice {
  color: var(--muted);
}

.filter-summary {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  margin: 0 0 10px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: var(--soft);
}

.filter-summary span,
.filter-summary a {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 0 8px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
}

.filter-summary span {
  background: rgba(12, 106, 147, .12);
  color: var(--blue);
}

.filter-summary a {
  margin-left: auto;
  background: rgba(244, 115, 33, .12);
  color: var(--orange-dark);
}

.room-list-head p {
  max-width: 940px;
}

.notice {
  display: none;
  margin-bottom: 7px;
  padding: 6px 8px;
  border: 1px solid var(--line);
  background: var(--soft);
  font-size: 13px;
}

.room-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 8px;
}

.room-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: #eee;
  box-shadow: none;
  transition: border-color .14s ease, box-shadow .14s ease;
}

.room-card:hover {
  border-color: #a7bfce;
  box-shadow: 0 1px 3px rgba(28, 38, 48, .16);
}

.thumb-link {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  background: var(--soft);
  border: 0;
  overflow: hidden;
  border-radius: 2px 2px 0 0;
}

.thumb-link img {
  width: 100%;
  height: 100%;
  transition: opacity .14s ease;
}

.room-card:hover .thumb-link img {
  opacity: .96;
}

.status-pill,
.quality-pill {
  display: none;
}

.private-pill {
  position: absolute;
  right: 6px;
  bottom: 4px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 14px;
  padding: 1px 4px;
  border-radius: 1px;
  background: #d21818;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  text-shadow: 0 1px 1px rgba(0, 0, 0, .35);
}

.private-token-pill {
  position: absolute;
  left: 6px;
  bottom: 4px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 14px;
  padding: 1px 4px;
  border-radius: 1px;
  background: #0c6a93;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  text-shadow: 0 1px 1px rgba(0, 0, 0, .35);
}

.thumb-link::after {
  content: "☆";
  position: absolute;
  top: 3px;
  right: 5px;
  color: rgba(255, 255, 255, .88);
  font-size: 25px;
  line-height: 1;
  text-shadow: 0 1px 2px rgba(0, 0, 0, .68);
}

.room-card-body {
  display: grid;
  gap: 1px;
  padding: 2px 5px 3px;
}

.room-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5px;
  min-height: 17px;
  margin-bottom: 0;
}

.room-title a {
  min-width: 0;
  overflow: hidden;
  color: var(--blue);
  font-family: "UbuntuMedium", Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.15;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.room-title-meta {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 3px;
  min-width: 0;
  color: var(--orange-dark);
  font-family: "UbuntuMedium", Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 700;
}

.room-age {
  line-height: 1;
}

.room-gender {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 12px;
  height: 12px;
}

.room-gender img {
  display: block;
  width: 12px;
  height: 12px;
}

.room-gender-m img {
  width: 13px;
  height: 13px;
}

.room-gender-c img {
  width: 14px;
  height: 14px;
}

.room-country {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  overflow: hidden;
  font-size: 12px;
  line-height: 1;
}

.room-card p {
  display: -webkit-box;
  min-height: 24px;
  margin: 0;
  overflow: hidden;
  color: var(--ink);
  font-size: 11px;
  line-height: 1.1;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.room-facts {
  display: none;
  min-height: 0;
  overflow: hidden;
  color: #6d7782;
  font-size: 10px;
  line-height: 1.15;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.room-meta {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin-top: 1px;
  padding-top: 0;
  border-top: 0;
  color: #666;
  font-size: 10px;
  line-height: 1.15;
}

.tag-row {
  display: none;
  flex-wrap: wrap;
  gap: 4px;
  max-height: 18px;
  margin-top: 2px;
  overflow: hidden;
}

.tag-row a {
  max-width: 100%;
  overflow: hidden;
  padding: 1px 4px;
  border-radius: 2px;
  background: rgba(12, 106, 147, .12);
  color: var(--blue);
  font-size: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.enter-room {
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  margin-top: 6px;
  border-radius: 4px;
  background: var(--orange);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.enter-room:hover {
  background: var(--orange-dark);
  color: #fff;
  text-decoration: none;
}

.seo-copy {
  margin-top: 26px;
  padding: 18px 0 0;
  border-top: 1px solid var(--line);
  background: var(--panel);
  color: var(--ink);
  font-size: 15px;
  line-height: 1.6;
}

.seo-copy h2 {
  margin: 28px 0 10px;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.25;
}

.seo-copy h2:first-child {
  margin-top: 0;
}

.load-more-wrap {
  display: flex;
  justify-content: center;
  margin: 28px 0 10px;
}

.load-more-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 30px;
  border: 1px solid var(--orange);
  border-radius: 999px;
  background: var(--orange);
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(247, 105, 32, 0.18);
}

.load-more-button:hover {
  border-color: var(--orange-dark);
  background: var(--orange-dark);
  color: #fff;
  text-decoration: none;
}

.load-more-button[data-loading="true"] {
  pointer-events: none;
  opacity: 0.72;
}

.load-more-spinner {
  display: none;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.45);
  border-top-color: #fff;
  border-radius: 50%;
}

.load-more-button[data-loading="true"] .load-more-spinner {
  display: inline-block;
  animation: load-more-spin 0.75s linear infinite;
}

@keyframes load-more-spin {
  to {
    transform: rotate(360deg);
  }
}

.site-footer {
  display: block;
  max-width: none;
  margin: 0;
  padding: 52px 0 34px 30px;
  border-top: 3px solid var(--orange);
  background: linear-gradient(180deg, #e7f8ff 0%, #f8fdff 34%, #fff 100%);
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 34px;
  max-width: 1080px;
  margin: 0 auto 82px;
  text-align: left;
}

.footer-columns section {
  display: grid;
  align-content: start;
  gap: 1px;
}

.footer-columns strong {
  margin-bottom: 10px;
  color: #464646;
  font-size: 14px;
  line-height: 1.15;
}

.footer-columns a {
  color: var(--blue);
  font-size: 14px;
  line-height: 1.2;
}

.site-footer p {
  max-width: none;
  margin: 0;
  color: #444;
  line-height: 1.45;
}

.footer-legal {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2px 0;
  max-width: 1450px;
  margin: 0 auto 24px;
  padding: 0;
  border-top: 0;
  color: var(--orange);
  font-size: 14px;
  font-weight: 700;
}

.footer-legal a {
  color: var(--orange);
}

.footer-legal a::after {
  padding: 0 12px;
  color: #777;
  font-weight: 400;
  content: "|";
}

.footer-legal a:last-child::after {
  content: "";
}

.footer-languages {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  margin: 0 auto 20px;
  color: #666;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
}

.footer-languages a {
  color: #666;
}

.footer-languages a::after {
  padding: 0 4px;
  color: #888;
  font-weight: 400;
  content: "|";
}

.footer-languages a:last-child::after {
  content: "";
}

.footer-languages .is-active {
  color: #333;
}

.footer-2257 {
  margin-bottom: 8px;
  font-size: 12px;
}

.footer-2257 a {
  color: var(--blue);
}

.footer-address,
.footer-copy {
  font-size: 12px;
}

.footer-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 18px;
}

.footer-badges img {
  width: auto;
  height: 31px;
  object-fit: contain;
}

:root[data-theme="dark"] .site-footer {
  background: linear-gradient(180deg, #101820 0%, #0d131a 100%);
}

:root[data-theme="dark"] .footer-columns strong {
  color: #d7e8f2;
}

:root[data-theme="dark"] .site-footer p {
  color: var(--muted);
}

:root[data-theme="dark"] .footer-languages a {
  color: var(--ink);
}

:root[data-theme="dark"] .header-search::before {
  border-color: #9fb2c2;
}

:root[data-theme="dark"] .header-search::after {
  background: #9fb2c2;
}

:root[data-theme="dark"] .search-scope-option:hover,
:root[data-theme="dark"] .search-scope-option.is-active {
  background: #1f3446;
}

:root[data-theme="dark"] .adult-warning {
  border-color: #314252;
  background: #182431;
  color: #fff;
}

:root[data-theme="dark"] .adult-warning-action {
  border-color: transparent;
  background: transparent;
  color: #53b3dc;
}

:root[data-theme="dark"] .adult-warning-action:hover {
  background: transparent;
  color: #8dd8f4;
  text-decoration: underline;
}

:root[data-theme="dark"] .adult-warning-close {
  color: #a9b7c2;
}

:root[data-theme="dark"] .adult-warning-close:hover {
  background: rgba(255, 255, 255, .08);
  color: #fff;
}

:root[data-theme="dark"] .tabs-row,
:root[data-theme="dark"] .tabs,
:root[data-theme="dark"] .shell,
:root[data-theme="dark"] .seo-copy {
  background: var(--bg);
}

:root[data-theme="dark"] .tabs a,
:root[data-theme="dark"] .mobile-tag-strip a {
  border-color: var(--line);
  background: var(--input);
  color: var(--blue);
}

:root[data-theme="dark"] .tabs a:hover,
:root[data-theme="dark"] .tabs .is-active,
:root[data-theme="dark"] .mobile-tag-strip a:hover,
:root[data-theme="dark"] .mobile-tag-strip a.is-active {
  border-color: var(--blue);
  background: rgba(83, 179, 220, .18);
  color: #d9f2ff;
}

:root[data-theme="dark"] .filter-chip {
  background: rgba(83, 179, 220, .14);
  color: var(--blue);
}

:root[data-theme="dark"] .sidebar {
  border-left-color: var(--line);
  background: var(--sidebar);
}

:root[data-theme="dark"] .filter-box h2,
:root[data-theme="dark"] h1 {
  color: var(--ink);
}

:root[data-theme="dark"] .filter-close {
  color: var(--ink);
}

:root[data-theme="dark"] .filter-box a {
  border-color: #314d63;
  background: #111c27;
  color: var(--blue);
}

:root[data-theme="dark"] .filter-box a:hover {
  border-color: var(--blue);
  background: #15283a;
  color: #d9f2ff;
}

:root[data-theme="dark"] .filter-box a.is-active,
:root[data-theme="dark"] .filter-summary span {
  border-color: var(--blue);
  background: rgba(83, 179, 220, .18);
  color: #d9f2ff;
}

:root[data-theme="dark"] .filter-box h2 a,
:root[data-theme="dark"] .filter-pager button,
:root[data-theme="dark"] .age-filter a:last-child {
  border-color: transparent;
  background: transparent;
  color: var(--blue);
}

:root[data-theme="dark"] .age-filter,
:root[data-theme="dark"] .filter-pager,
:root[data-theme="dark"] .room-facts,
:root[data-theme="dark"] .room-meta {
  color: var(--muted);
}

:root[data-theme="dark"] .age-filter input {
  border-color: var(--input-border);
  background: var(--input);
  color: var(--ink);
}

:root[data-theme="dark"] .room-card {
  border-color: var(--line);
  background: #101820;
}

:root[data-theme="dark"] .room-card:hover {
  border-color: #42647b;
  box-shadow: 0 1px 3px rgba(0, 0, 0, .35);
}

:root[data-theme="dark"] .tag-row a {
  background: rgba(83, 179, 220, .16);
  color: #d9f2ff;
}

:root[data-theme="dark"] .filter-summary {
  border-color: var(--line);
  background: #111c27;
}

@media (max-width: 1180px) {
  .masthead {
    grid-template-columns: 166px minmax(280px, 1fr) auto;
    gap: 16px;
  }

  .header-search input {
    font-size: 17px;
  }

  .search-scope-toggle {
    min-width: 84px;
    padding-inline: 18px;
  }

  .account-box {
    gap: 8px;
  }

  .account-box .register-link,
  .login-mini {
    min-height: 44px;
    padding-inline: 18px;
  }

  .broadcast-link span {
    display: none;
  }

  .room-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

@media (max-width: 1080px) {
  .masthead {
    grid-template-columns: 158px minmax(260px, 1fr) auto;
    gap: 12px;
  }

  .brand img {
    width: 156px;
  }

  .account-box .register-link {
    display: none;
  }

  .room-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .site-header {
    display: block;
  }

  .masthead {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr) 44px;
    gap: 4px 6px;
    min-height: 0;
    padding: 6px 9px 7px;
  }

  .brand {
    grid-column: 2;
    grid-row: 1;
    justify-self: center;
  }

  .brand img {
    width: 150px;
  }

  .account-box {
    display: contents;
  }

  .broadcast-link {
    display: none;
  }

  .mobile-menu-toggle {
    grid-column: 1;
    grid-row: 1;
    display: inline-flex;
    align-self: center;
    justify-self: start;
    border: 0;
    background: transparent;
    color: #4c4c4c;
  }

  :root[data-theme="dark"] .mobile-menu-toggle {
    color: #fff;
  }

  .more-menu {
    grid-column: 3;
    grid-row: 1;
    align-self: center;
    justify-self: end;
  }

  .more-menu-toggle {
    background: transparent;
    color: #4c4c4c;
  }

  :root[data-theme="dark"] .more-menu-toggle {
    background: transparent;
  }

  .more-menu-toggle .more-menu-dots {
    display: none;
  }

  .more-menu-toggle .mobile-sort-icon {
    display: block;
    margin-top: -2px;
    width: 28px;
    height: 28px;
    fill: currentColor;
  }

  .theme-popover {
    right: 0;
  }

  .login-mini,
  .register-link {
    display: none;
  }

  .header-search {
    position: relative;
    grid-column: 1 / -1;
    grid-row: 2;
    grid-template-columns: 1fr;
    margin-top: 3px;
  }

  .header-search::before {
    content: "";
    position: absolute;
    left: 15px;
    top: 50%;
    width: 15px;
    height: 15px;
    border: 2px solid #8a969f;
    border-radius: 50%;
    transform: translateY(-50%);
    pointer-events: none;
  }

  .header-search::after {
    content: "";
    position: absolute;
    left: 29px;
    top: calc(50% + 9px);
    width: 8px;
    height: 2px;
    background: #8a969f;
    transform: rotate(45deg);
    pointer-events: none;
  }

  .header-search input {
    height: 48px;
    padding-left: 50px;
    border: 1px solid var(--line);
    border-radius: 4px;
    font-size: 18px;
  }

  .search-scope {
    display: none;
  }

  body.nav-open .top-nav {
    display: flex;
  }

  body.nav-open::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 70;
    background: rgba(0, 0, 0, .66);
  }

  .top-nav {
    display: none;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 80;
    overflow-x: hidden;
    overflow-y: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: min(400px, 78vw);
    padding: 14px 0 24px;
    border-right: 1px solid rgba(255, 255, 255, .18);
    background: #1d96bf;
    color: #fff;
    box-shadow: 12px 0 30px rgba(0, 0, 0, .32);
  }

  body.nav-open {
    overflow: hidden;
  }

  body.filters-open::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 85;
    background: rgba(0, 0, 0, .56);
  }

  .top-nav > a:not(.drawer-language) {
    display: none;
  }

  .top-nav a {
    padding: 16px 20px;
    border-top: 1px solid rgba(255, 255, 255, .22);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    text-transform: none;
  }

  .top-nav a:hover,
  .top-nav .is-active {
    background: #12799c;
    color: #fff;
  }

  .mobile-drawer-theme {
    display: flex;
    align-items: center;
    width: max-content;
    margin: 0 auto 18px;
    padding: 2px;
    border-radius: 999px;
    background: #147aa0;
  }

  .mobile-drawer-categories {
    display: block;
  }

  .mobile-drawer-categories a {
    display: block;
    border-top: 1px solid rgba(255, 255, 255, .22);
  }

  .drawer-language {
    display: block !important;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, .22);
  }

  .drawer-language::after {
    content: "›";
    position: absolute;
    top: 50%;
    right: 22px;
    transform: translateY(-50%);
    font-size: 28px;
    line-height: 1;
  }

  .drawer-theme-option {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    min-width: 82px;
    min-height: 32px;
    padding: 0 12px;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: rgba(255, 255, 255, .7);
    font: inherit;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
  }

  .drawer-theme-option svg {
    width: 13px;
    height: 13px;
    fill: currentColor;
  }

  :root:not([data-theme="dark"]) .drawer-theme-option[data-theme-choice="light"],
  :root[data-theme="dark"] .drawer-theme-option[data-theme-choice="dark"] {
    background: var(--orange);
    color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, .24);
  }

  .mobile-drawer-actions {
    display: grid;
    gap: 10px;
    padding: 18px 20px;
  }

  .drawer-register,
  .drawer-login {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    border: 0 !important;
    border-radius: 4px;
    background: #084c68;
    color: #fff !important;
    text-align: center;
    text-transform: uppercase !important;
  }

  .drawer-login {
    background: rgba(255, 255, 255, .11);
  }

  .mobile-drawer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0 10px;
    padding: 10px 18px 0;
    text-align: center;
  }

  .mobile-drawer-links a {
    padding: 4px 0;
    border: 0;
    font-size: 13px;
    font-weight: 400;
  }

  .top-nav .is-active::after {
    display: none;
  }

  .adult-warning {
    min-height: 0;
    margin: 6px 7px 8px;
    padding: 10px 38px 10px 14px;
    border-radius: 4px;
    text-align: left;
    font-size: 12px;
  }

  .adult-warning-inner {
    display: grid;
    justify-content: flex-start;
    gap: 4px;
    transform: none;
  }

  .adult-warning-action {
    justify-self: start;
    min-height: 0;
    margin-top: 0;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--blue-dark);
    font-size: 12px;
  }

  .adult-warning-action:hover {
    background: transparent;
    color: var(--blue);
    text-decoration: underline;
  }

  .adult-warning-close {
    top: 50%;
    right: 4px;
    width: 28px;
    height: 28px;
    transform: translateY(-50%);
  }

  .tabs-row {
    display: block;
    overflow: hidden;
    padding: 0 0 4px;
    border-top: 1px solid #e6eef5;
    background: var(--panel);
  }

  .tabs {
    display: none;
  }

  .mobile-tag-strip {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    width: 100%;
    padding: 6px 7px 5px;
    border-bottom: 1px solid #e1e9ef;
    background: var(--panel);
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .mobile-tag-strip::-webkit-scrollbar {
    display: none;
  }

  .mobile-tag-strip a {
    flex: 0 0 auto;
    min-height: 30px;
    padding: 4px 9px;
    border: 1px solid var(--line);
    border-radius: 4px;
    background: var(--input);
    color: var(--blue);
    font-size: 15px;
    line-height: 1.3;
    font-weight: 400;
    text-transform: none;
  }

  .mobile-tag-strip a:first-child {
    font-size: 15px;
  }

  .mobile-tag-strip a.is-active,
  .mobile-tag-strip a:hover {
    border-color: #b8d8ef;
    background: #f4fbff;
    color: var(--blue);
    text-decoration: none;
  }

  .mobile-options-link {
    display: block;
    margin: 2px 7px 4px auto;
    width: max-content;
    color: var(--blue);
    font-size: 13px;
    text-decoration: none;
  }

  .tabs-actions {
    display: none;
  }

  .room-list-head {
    display: none;
  }

  .shell {
    grid-template-columns: 1fr;
    gap: 0;
    padding-inline: 9px;
  }

  .content {
    grid-column: 1;
    grid-row: 1;
  }

  .sidebar {
    display: none;
  }

  body.filters-open .sidebar {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    position: fixed;
    inset: 0 0 0 auto;
    z-index: 90;
    width: min(390px, 86vw);
    height: 100dvh;
    max-height: 100dvh;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    margin-top: 0;
    padding: 54px 18px 24px;
    border-left: 1px solid var(--line);
    background: var(--panel);
    box-shadow: -14px 0 30px rgba(0, 0, 0, .24);
  }

  .filter-close {
    display: flex;
    position: fixed;
    top: 14px;
    right: 18px;
    z-index: 91;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    color: var(--ink);
    font-size: 28px;
    line-height: 1;
    text-decoration: none;
  }

  .filter-box {
    padding-right: 0;
  }

  .room-list-head {
    flex-direction: column;
  }

  .room-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .site-footer {
    padding: 20px 12px 22px;
    border-top-width: 2px;
    background: #1d96bf;
    color: #fff;
    font-size: 12px;
  }

  .footer-columns,
  .footer-address,
  .footer-badges {
    display: none;
  }

  .footer-legal {
    gap: 0 8px;
    margin-bottom: 14px;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.45;
  }

  .footer-legal a {
    color: #fff;
  }

  .footer-legal a:nth-child(n+7) {
    display: none;
  }

  .footer-legal a::after {
    padding: 0 0 0 8px;
    color: rgba(255, 255, 255, .72);
  }

  .footer-languages {
    max-width: 360px;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, .82);
    font-size: 12px;
    line-height: 1.5;
  }

  .footer-languages a,
  .footer-languages .is-active {
    color: #fff;
  }

  .footer-languages a::after {
    color: rgba(255, 255, 255, .7);
  }

  .footer-2257 {
    margin-bottom: 8px;
    font-size: 11px;
    line-height: 1.35;
  }

  .footer-2257 a,
  .site-footer p {
    color: #fff;
  }

  .footer-copy {
    font-size: 11px;
    line-height: 1.35;
  }

  :root[data-theme="dark"] .top-nav {
    border-right-color: var(--line);
    background: #101820;
  }

  :root[data-theme="dark"] .top-nav a,
  :root[data-theme="dark"] .mobile-drawer-categories a,
  :root[data-theme="dark"] .drawer-language {
    border-top-color: var(--line);
  }

  :root[data-theme="dark"] .top-nav a:hover,
  :root[data-theme="dark"] .top-nav .is-active {
    background: #15283a;
  }

  :root[data-theme="dark"] .mobile-drawer-theme {
    background: #15283a;
  }

  :root[data-theme="dark"] .drawer-register {
    background: #0b4f6f;
  }

  :root[data-theme="dark"] .drawer-login {
    background: rgba(255, 255, 255, .08);
  }

  :root[data-theme="dark"] .tabs-row,
  :root[data-theme="dark"] .mobile-tag-strip {
    border-color: var(--line);
    background: var(--bg);
  }

  :root[data-theme="dark"] .site-footer {
    border-top-color: var(--orange);
    background: #101820;
  }

  :root[data-theme="dark"] .footer-legal a,
  :root[data-theme="dark"] .footer-languages a,
  :root[data-theme="dark"] .footer-languages .is-active,
  :root[data-theme="dark"] .footer-2257 a,
  :root[data-theme="dark"] .site-footer p {
    color: var(--ink);
  }

  :root[data-theme="dark"] .footer-legal a::after,
  :root[data-theme="dark"] .footer-languages a::after {
    color: var(--muted);
  }
}

@media (max-width: 560px) {
  .shell,
  .site-footer {
    padding-inline: 10px;
  }

  .site-header {
    padding-inline: 0;
  }

  .adult-warning {
    display: block;
    padding: 10px 36px 10px 12px;
    font-size: 12px;
  }

  .adult-warning[hidden] {
    display: none;
  }

  .tabs-row {
    padding-inline: 0;
  }

  .brand img {
    width: 142px;
  }

  .masthead {
    padding-inline: 8px;
  }

  .shell {
    padding-inline: 3px;
  }

  .mobile-tag-strip {
    padding-inline: 7px;
  }

  .account-box {
    gap: 7px;
    font-size: 11px;
  }

  .account-box .register-link {
    min-height: 31px;
    padding-inline: 10px;
  }

  h1 {
    font-size: 24px;
  }

  .sidebar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .room-grid {
    grid-template-columns: repeat(2, minmax(140px, 1fr));
    gap: 6px;
  }

  .thumb-link img {
    height: 100%;
  }

  .thumb-link {
    aspect-ratio: 4 / 3;
  }

  .room-card-body {
    padding: 3px 4px 4px;
  }

  .room-title a {
    font-size: 14px;
  }

  .room-card p,
  .room-meta {
    font-size: 10px;
  }

  .seo-copy {
    margin-top: 24px;
    padding: 18px 14px 0;
  }

  .seo-copy h2 {
    font-size: 22px;
    line-height: 1.2;
  }

  .seo-copy p {
    font-size: 15px;
    line-height: 1.55;
  }

  .site-footer {
    padding-inline: 12px;
  }
}

@media (max-width: 390px) {
  .sidebar {
    grid-template-columns: 1fr;
  }

  .room-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
