:root {
  --seo-bg: #050506;
  --seo-surface: #111217;
  --seo-surface-strong: #171920;
  --seo-border: #2a2d36;
  --seo-text: #f7f7fa;
  --seo-muted: #aeb5c2;
  --seo-subtle: #747c8c;
  --seo-brand: #ff4056;
  --seo-brand-dark: #d60f34;
  --seo-accent: #58d6c7;
  --seo-gold: #e4b96f;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 24px;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--seo-text);
  background: var(--seo-bg);
}

a,
button,
summary {
  -webkit-tap-highlight-color: transparent;
}

a:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--seo-accent);
  outline-offset: 4px;
}

.seo-site-header {
  width: min(1180px, calc(100% - 40px));
  min-height: 72px;
  margin: 0 auto;
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-bottom: 1px solid var(--seo-border);
}

.seo-site-brand {
  flex: 0 0 auto;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--seo-brand);
  font-size: 1.08rem;
  font-weight: 900;
  letter-spacing: 0;
  text-decoration: none;
}

.seo-header-actions {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 1 1 auto;
  gap: 14px;
}

.seo-site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 10px 24px;
}

.seo-language-switcher {
  flex: 0 0 auto;
  display: inline-flex;
  padding: 3px;
  border: 1px solid var(--seo-border);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.seo-language-switcher a {
  min-width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  color: var(--seo-muted);
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
}

.seo-language-switcher a:hover {
  color: var(--seo-text);
  background: rgba(255, 255, 255, 0.08);
}

.seo-language-switcher a[aria-current='page'] {
  color: #08090c;
  background: var(--seo-brand);
}

.seo-site-nav a,
.seo-breadcrumbs a,
.seo-card a,
.seo-content-section a {
  color: var(--seo-text);
  text-decoration-color: rgba(255, 64, 86, 0.82);
  text-underline-offset: 4px;
}

.seo-site-nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: #dfe2e9;
  font-size: 0.94rem;
  font-weight: 700;
  text-decoration: none;
}

.seo-site-nav a:hover,
.seo-page-nav a:hover,
.seo-site-footer a:hover {
  color: var(--seo-brand);
}

.seo-page {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 30px 0 56px;
}

.seo-breadcrumbs {
  min-height: 28px;
  margin: 0 0 18px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--seo-subtle);
  font-size: 0.88rem;
}

.seo-breadcrumbs span[aria-current='page'] {
  max-width: min(100%, 660px);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.seo-hero,
.seo-card {
  border: 1px solid var(--seo-border);
  border-radius: 8px;
  background: var(--seo-surface);
}

.seo-hero {
  position: relative;
  overflow: hidden;
  padding: 52px;
}

.seo-route-hero {
  min-height: 540px;
  display: flex;
  align-items: flex-end;
  border-color: rgba(255, 255, 255, 0.16);
  background: #0a0a0c;
  isolation: isolate;
}

.seo-hero-media,
.seo-hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.seo-hero-media {
  z-index: -3;
  display: block;
  object-fit: cover;
  object-position: center;
}

.seo-hero-overlay {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(3, 3, 5, 0.95) 0%, rgba(3, 3, 5, 0.79) 48%, rgba(3, 3, 5, 0.22) 100%),
    linear-gradient(0deg, rgba(3, 3, 5, 0.92) 0%, transparent 52%);
}

.seo-hero-content {
  width: min(760px, 100%);
  padding: 8px 0;
}

.seo-eyebrow,
.seo-badge {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  color: var(--seo-brand);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.seo-badge {
  padding: 6px 10px;
  border: 1px solid rgba(255, 64, 86, 0.5);
  border-radius: 999px;
  background: rgba(255, 64, 86, 0.1);
}

.blog-hero-heading {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 14px 22px;
}

.seo-brand-label,
.blog-hero-heading h1 {
  margin: 0;
  color: var(--seo-text);
  font-size: 4rem;
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: 0;
  text-transform: uppercase;
}

.seo-brand-label {
  color: var(--seo-brand);
}

.blog-hero-lead {
  max-width: 900px;
  margin: 22px 0 0;
  color: var(--seo-muted);
  font-size: 1.22rem;
  line-height: 1.6;
}

h1 {
  max-width: 900px;
  margin: 16px 0 18px;
  color: var(--seo-text);
  font-size: 4rem;
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: 0;
  text-transform: uppercase;
}

h2 {
  margin: 0 0 14px;
  color: var(--seo-text);
  font-size: 1.72rem;
  line-height: 1.22;
  letter-spacing: 0;
}

p,
li {
  color: var(--seo-muted);
  font-size: 1.04rem;
  line-height: 1.72;
}

.seo-lead {
  max-width: 760px;
  margin: 0;
  color: #d9dce3;
  font-size: 1.19rem;
  line-height: 1.62;
}

.seo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.seo-button,
.seo-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 6px;
  font-weight: 800;
  text-decoration: none;
  transition: background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.seo-button {
  border: 1px solid var(--seo-brand);
  color: #fff;
  background: var(--seo-brand-dark);
  box-shadow: 0 14px 30px rgba(214, 15, 52, 0.24);
}

.seo-button:hover {
  background: var(--seo-brand);
  transform: translateY(-1px);
}

.seo-link {
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--seo-text);
  background: rgba(7, 7, 9, 0.7);
}

.seo-link:hover {
  border-color: rgba(255, 255, 255, 0.58);
  background: rgba(22, 23, 28, 0.9);
}

.seo-updated {
  display: block;
  margin-top: 20px;
  color: #c0c5cf;
  font-size: 0.82rem;
}

.seo-content-layout {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: 54px;
  margin-top: 64px;
  align-items: start;
}

.seo-page-nav {
  position: sticky;
  top: 20px;
  padding: 4px 0 4px 18px;
  border-left: 2px solid var(--seo-brand);
}

.seo-page-nav strong {
  display: block;
  margin-bottom: 16px;
  color: var(--seo-text);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.seo-page-nav nav {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.seo-page-nav a {
  color: var(--seo-subtle);
  font-size: 0.88rem;
  line-height: 1.35;
  text-decoration: none;
}

.seo-content-list {
  border-top: 1px solid var(--seo-border);
}

.seo-content-section {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 20px;
  padding: 34px 0 36px;
  border-bottom: 1px solid var(--seo-border);
  scroll-margin-top: 24px;
}

.seo-section-number {
  color: var(--seo-gold);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.seo-content-section p {
  max-width: 790px;
  margin: 0;
}

.seo-check-list {
  max-width: 800px;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 24px;
  list-style: none;
}

.seo-check-list li {
  position: relative;
  padding-left: 22px;
}

.seo-check-list li::before {
  content: '';
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--seo-accent);
}

.seo-resource-links {
  max-width: 800px;
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.seo-resource-links a {
  min-height: 48px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  color: var(--seo-text);
  border: 1px solid var(--seo-border);
  border-radius: 6px;
  background: var(--seo-surface-strong);
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.35;
  text-decoration: none;
}

.seo-resource-links a:hover {
  color: var(--seo-brand);
  border-color: var(--seo-brand);
}

.seo-faq-section {
  margin-top: 72px;
  padding: 48px 0 16px;
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: 54px;
  border-top: 1px solid var(--seo-border);
}

.seo-faq-heading span {
  color: var(--seo-brand);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.seo-faq-heading h2 {
  margin-top: 8px;
}

.seo-faq-list {
  border-top: 1px solid var(--seo-border);
}

.seo-faq-item {
  border-bottom: 1px solid var(--seo-border);
}

.seo-faq-item summary {
  min-height: 72px;
  padding: 18px 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--seo-text);
  font-size: 1.04rem;
  font-weight: 800;
  line-height: 1.4;
  cursor: pointer;
  list-style: none;
}

.seo-faq-item summary::-webkit-details-marker {
  display: none;
}

.seo-faq-item summary span {
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 1px solid var(--seo-border);
  border-radius: 50%;
  color: var(--seo-brand);
  font-size: 1.25rem;
  transition: transform 160ms ease;
}

.seo-faq-item[open] summary span {
  transform: rotate(45deg);
}

.seo-faq-item p {
  max-width: 780px;
  margin: 0;
  padding: 0 56px 24px 4px;
}

.seo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.seo-card {
  padding: 24px;
  transition: border-color 160ms ease, background-color 160ms ease;
}

.seo-card:hover {
  border-color: #444955;
  background: var(--seo-surface-strong);
}

.seo-card ul {
  margin: 0;
  padding-left: 20px;
}

.telegram-directory-hero {
  min-height: 570px;
  display: flex;
  align-items: flex-end;
  border-color: rgba(255, 255, 255, 0.18);
  background:
    linear-gradient(90deg, rgba(3, 3, 5, 0.98) 0%, rgba(3, 3, 5, 0.9) 47%, rgba(3, 3, 5, 0.48) 100%),
    linear-gradient(0deg, rgba(3, 3, 5, 0.92) 0%, rgba(3, 3, 5, 0.08) 72%),
    url('/girls-tours/telegram-channels-hero.webp') center / cover no-repeat;
}

.telegram-directory-hero-content {
  width: min(790px, 100%);
}

.telegram-directory-hero h1 {
  max-width: 760px;
}

.telegram-directory-hero .seo-lead {
  max-width: 720px;
}

.telegram-button {
  gap: 10px;
}

.telegram-button svg {
  width: 21px;
  height: 21px;
  color: #2aabee;
}

.telegram-directory-overview {
  margin-top: 64px;
  padding: 34px 0 40px;
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: 54px;
  border-top: 1px solid var(--seo-border);
  border-bottom: 1px solid var(--seo-border);
}

.telegram-directory-overview > span,
.telegram-directory-section-head > span,
.telegram-editorial-number,
.telegram-safety-band > div > span,
.telegram-bot-panel > div > span {
  color: var(--seo-brand);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.telegram-directory-overview h2,
.telegram-directory-section-head h2,
.telegram-bot-panel h2,
.telegram-safety-band h2 {
  margin: 0;
}

.telegram-directory-overview p,
.telegram-directory-section-head p,
.telegram-bot-panel p,
.telegram-safety-band p {
  max-width: 800px;
  margin: 14px 0 0;
}

.telegram-directory-toc {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.telegram-directory-toc a,
.telegram-related-links a {
  min-height: 44px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  color: var(--seo-text);
  border: 1px solid var(--seo-border);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.025);
  font-size: 0.86rem;
  font-weight: 800;
  text-decoration: none;
  transition: border-color 160ms ease, color 160ms ease, background-color 160ms ease;
}

.telegram-directory-toc a:hover,
.telegram-related-links a:hover {
  color: var(--seo-brand);
  border-color: var(--seo-brand);
  background: rgba(255, 64, 86, 0.06);
}

.telegram-directory-section {
  padding: 72px 0 12px;
  scroll-margin-top: 24px;
}

.telegram-directory-section-head {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 20px;
  margin-bottom: 28px;
}

.telegram-resource-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.telegram-resource-card {
  min-height: 270px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--seo-border);
  border-radius: 8px;
  background: var(--seo-surface);
  transition: border-color 160ms ease, background-color 160ms ease, transform 160ms ease;
}

.telegram-resource-card:hover {
  border-color: rgba(42, 171, 238, 0.62);
  background: var(--seo-surface-strong);
  transform: translateY(-2px);
}

.telegram-resource-card-head {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.telegram-resource-icon,
.telegram-bot-mark {
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: #fff;
  border: 1px solid rgba(42, 171, 238, 0.7);
  border-radius: 50%;
  background: #168ac5;
}

.telegram-resource-icon svg,
.telegram-bot-mark svg {
  width: 25px;
  height: 25px;
}

.telegram-resource-kind {
  display: block;
  margin-bottom: 5px;
  color: var(--seo-subtle);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.telegram-resource-card h3 {
  margin: 0;
  font-size: 1.15rem;
  line-height: 1.3;
}

.telegram-resource-card p {
  margin: 20px 0 24px;
  font-size: 0.96rem;
  line-height: 1.62;
}

.telegram-resource-card > a {
  min-height: 48px;
  margin-top: auto;
  padding: 0 13px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--seo-text);
  border: 1px solid rgba(42, 171, 238, 0.34);
  border-radius: 6px;
  background: rgba(42, 171, 238, 0.08);
  font-size: 0.85rem;
  font-weight: 900;
  line-height: 1.3;
  text-decoration: none;
}

.telegram-resource-card > a span:first-child {
  min-width: 0;
  overflow-wrap: anywhere;
}

.telegram-resource-card > a span:last-child {
  flex: 0 0 auto;
  color: #66c5f4;
}

.telegram-resource-card > a:hover {
  border-color: #2aabee;
  background: rgba(42, 171, 238, 0.14);
}

.telegram-bot-panel {
  margin-top: 72px;
  padding: 34px 0;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
  border-top: 1px solid var(--seo-border);
  border-bottom: 1px solid var(--seo-border);
  scroll-margin-top: 24px;
}

.telegram-bot-mark {
  width: 58px;
  height: 58px;
}

.telegram-bot-panel > a {
  min-height: 52px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: #fff;
  border: 1px solid #2aabee;
  border-radius: 6px;
  background: #168ac5;
  font-weight: 900;
  text-decoration: none;
  transition: background-color 160ms ease, transform 160ms ease;
}

.telegram-bot-panel > a:hover {
  background: #2aabee;
  transform: translateY(-1px);
}

.telegram-editorial {
  margin-top: 72px;
  border-top: 1px solid var(--seo-border);
}

.telegram-editorial-section {
  padding: 34px 0 38px;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 20px;
  border-bottom: 1px solid var(--seo-border);
}

.telegram-editorial-section h2 {
  margin: 0 0 14px;
}

.telegram-editorial-section p {
  max-width: 820px;
  margin: 0 0 14px;
}

.telegram-editorial-section ul {
  max-width: 820px;
  margin: 20px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
  list-style: none;
}

.telegram-editorial-section li {
  position: relative;
  padding-left: 22px;
}

.telegram-editorial-section li::before {
  content: '';
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: #2aabee;
}

.telegram-safety-band {
  margin-top: 72px;
  padding: 36px 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  align-items: end;
  gap: 44px;
  border-top: 1px solid rgba(255, 64, 86, 0.48);
  border-bottom: 1px solid rgba(255, 64, 86, 0.48);
  scroll-margin-top: 24px;
}

.telegram-related-links {
  display: grid;
  gap: 9px;
}

.telegram-related-links a {
  justify-content: space-between;
}

.telegram-related-links a::after {
  content: '→';
  color: var(--seo-brand);
}

.seo-bottom-cta {
  margin-top: 64px;
  padding: 34px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--seo-border);
  border-bottom: 1px solid var(--seo-border);
}

.seo-bottom-cta p {
  margin: 0;
  color: var(--seo-text);
  font-size: 1.35rem;
  font-weight: 900;
}

.seo-bottom-cta .seo-button {
  min-width: 260px;
}

.seo-trust-hero {
  min-height: 500px;
}

.seo-trust-content {
  margin-bottom: 52px;
}

.seo-trust-bar {
  margin-top: 48px;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-top: 1px solid var(--seo-border);
  border-bottom: 1px solid var(--seo-border);
}

.seo-trust-bar div {
  max-width: 780px;
}

.seo-trust-bar strong {
  display: block;
  margin-bottom: 6px;
  color: var(--seo-text);
  font-size: 1.08rem;
}

.seo-trust-bar p {
  margin: 0;
  color: var(--seo-muted);
  line-height: 1.55;
}

.seo-trust-bar a {
  flex: 0 0 auto;
  min-height: 44px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--seo-text);
  border: 1px solid var(--seo-border);
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
}

.seo-trust-bar a:hover {
  color: var(--seo-brand);
  border-color: var(--seo-brand);
}

.seo-settings-button {
  min-height: 48px;
  padding: 0 18px;
  color: var(--seo-text);
  background: var(--seo-surface-strong);
  border: 1px solid var(--seo-border);
  border-radius: 6px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.seo-settings-button:hover {
  border-color: var(--seo-brand);
}

.seo-settings-button:focus-visible {
  outline: 3px solid var(--seo-accent);
  outline-offset: 4px;
}

.seo-footer {
  margin-top: 26px;
  color: var(--seo-subtle);
  font-size: 0.92rem;
}

.seo-site-footer {
  position: relative;
  margin-top: 64px;
  padding: 38px 0 0;
  display: grid;
  grid-template-columns: minmax(220px, 0.65fr) minmax(0, 1.7fr);
  gap: 38px 56px;
  border-top: 1px solid var(--seo-border);
}

.seo-site-footer::before {
  position: absolute;
  top: -1px;
  left: 0;
  width: 64px;
  height: 2px;
  content: '';
  background: var(--seo-brand);
}

.seo-site-footer-intro {
  max-width: 300px;
}

.seo-site-footer-brand {
  width: fit-content;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--seo-text);
  font-size: 1.06rem;
  font-weight: 900;
  text-decoration: none;
}

.seo-site-footer-brand img {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 64, 86, 0.35);
  border-radius: 8px;
  background: #090a0d;
}

.seo-site-footer-intro p {
  margin: 18px 0;
  color: var(--seo-muted);
  font-size: 0.92rem;
  line-height: 1.62;
}

.seo-site-footer-support {
  min-height: 44px;
  padding: 0 13px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--seo-text);
  border: 1px solid var(--seo-border);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.025);
  font-size: 0.84rem;
  font-weight: 800;
  text-decoration: none;
  transition: color 160ms ease, border-color 160ms ease, background 160ms ease;
}

.seo-site-footer-support::after {
  content: '›';
  color: var(--seo-brand);
  font-size: 1.2rem;
  line-height: 1;
}

.seo-site-footer-support:hover {
  color: var(--seo-text);
  border-color: rgba(255, 64, 86, 0.72);
  background: rgba(255, 64, 86, 0.08);
}

.seo-site-footer-groups {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}

.seo-site-footer-group {
  min-width: 0;
}

.seo-site-footer-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
  color: var(--seo-text);
  font-size: 0.86rem;
  font-weight: 800;
  list-style: none;
}

.seo-site-footer-heading::-webkit-details-marker {
  display: none;
}

.seo-site-footer-group nav {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 9px;
}

.seo-site-footer-group a {
  max-width: 100%;
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  color: var(--seo-muted);
  font-size: 0.92rem;
  line-height: 1.42;
  text-decoration: none;
  transition: color 160ms ease;
}

.seo-site-footer-group a::after {
  content: '›';
  flex: 0 0 auto;
  color: var(--seo-brand);
  opacity: 0;
  transform: translateX(-3px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.seo-site-footer-group a:hover::after,
.seo-site-footer-group a:focus-visible::after {
  opacity: 1;
  transform: translateX(0);
}

.seo-site-footer-meta {
  grid-column: 1 / -1;
  min-height: 58px;
  padding: 17px 0 2px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  color: var(--seo-subtle);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.78rem;
  line-height: 1.5;
}

.seo-not-found {
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (max-width: 940px) {
  .seo-hero,
  .seo-route-hero {
    padding: 40px;
  }

  h1,
  .seo-brand-label,
  .blog-hero-heading h1 {
    font-size: 3.2rem;
  }

  .seo-content-layout,
  .seo-faq-section {
    grid-template-columns: 190px minmax(0, 1fr);
    gap: 34px;
  }

  .seo-check-list {
    grid-template-columns: 1fr;
  }

  .seo-resource-links {
    grid-template-columns: 1fr;
  }

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

  .seo-site-footer {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .seo-site-footer-intro {
    max-width: 580px;
  }

  .seo-site-footer-groups {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px 24px;
  }
}

@media (max-width: 720px) {
  .seo-site-header,
  .seo-page {
    width: min(100% - 24px, 1180px);
  }

  .seo-site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .seo-header-actions {
    width: 100%;
    align-items: center;
    justify-content: flex-start;
    flex-direction: row;
    gap: 10px;
  }

  .seo-site-nav {
    min-width: 0;
    flex: 1 1 auto;
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 18px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scrollbar-width: none;
  }

  .seo-site-nav::-webkit-scrollbar {
    display: none;
  }

  .seo-site-nav a {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .seo-breadcrumbs a,
  .seo-page-nav a {
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .seo-page {
    padding-top: 20px;
  }

  .seo-breadcrumbs {
    margin-bottom: 12px;
  }

  .seo-hero,
  .seo-route-hero {
    padding: 28px 22px;
  }

  .seo-route-hero {
    min-height: 560px;
    align-items: flex-end;
  }

  .seo-hero-overlay {
    background:
      linear-gradient(0deg, rgba(3, 3, 5, 0.98) 0%, rgba(3, 3, 5, 0.76) 62%, rgba(3, 3, 5, 0.2) 100%),
      linear-gradient(90deg, rgba(3, 3, 5, 0.55), transparent);
  }

  h1,
  .seo-brand-label,
  .blog-hero-heading h1 {
    font-size: 2.35rem;
    line-height: 1.06;
  }

  .seo-trust-page-privacy .seo-trust-hero h1 {
    font-size: 1.45rem;
    line-height: 1.08;
  }

  h2 {
    font-size: 1.42rem;
  }

  .seo-lead,
  .blog-hero-lead {
    font-size: 1.04rem;
    line-height: 1.58;
  }

  .seo-actions,
  .seo-bottom-cta,
  .seo-trust-bar {
    align-items: stretch;
    flex-direction: column;
  }

  .seo-button,
  .seo-link,
  .seo-bottom-cta .seo-button {
    width: 100%;
    min-width: 0;
  }

  .seo-content-layout,
  .seo-faq-section,
  .telegram-directory-overview {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .seo-content-layout {
    margin-top: 42px;
  }

  .seo-page-nav {
    position: static;
  }

  .seo-page-nav nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 18px;
  }

  .seo-content-section {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 12px;
    padding: 28px 0 30px;
  }

  .seo-faq-section {
    margin-top: 48px;
    padding-top: 38px;
  }

  .seo-faq-item summary {
    min-height: 68px;
    gap: 14px;
  }

  .seo-faq-item p {
    padding-right: 4px;
  }

  .seo-grid {
    grid-template-columns: 1fr;
  }

  .telegram-directory-hero {
    min-height: 620px;
    align-items: flex-end;
    background:
      linear-gradient(0deg, rgba(3, 3, 5, 0.98) 0%, rgba(3, 3, 5, 0.86) 62%, rgba(3, 3, 5, 0.34) 100%),
      url('/girls-tours/telegram-channels-hero.webp') center / cover no-repeat;
  }

  .telegram-directory-hero h1 {
    font-size: 2.05rem;
  }

  .telegram-directory-overview {
    margin-top: 42px;
  }

  .telegram-directory-toc {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .telegram-directory-toc a {
    justify-content: center;
    text-align: center;
  }

  .telegram-directory-section {
    padding-top: 52px;
  }

  .telegram-resource-grid {
    grid-template-columns: 1fr;
  }

  .telegram-resource-card {
    min-height: 0;
  }

  .telegram-bot-panel,
  .telegram-safety-band {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .telegram-bot-panel > a {
    justify-content: space-between;
  }

  .telegram-editorial {
    margin-top: 52px;
  }

  .seo-bottom-cta {
    margin-top: 48px;
  }

  .seo-site-footer {
    margin-top: 48px;
    padding-top: 28px;
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .seo-site-footer-groups {
    grid-template-columns: 1fr;
    gap: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .seo-site-footer-group {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .seo-site-footer-heading {
    min-height: 56px;
    margin: 0;
    cursor: pointer;
  }

  .seo-site-footer-heading::after {
    content: '+';
    width: 24px;
    color: var(--seo-brand);
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1;
    text-align: center;
  }

  .seo-site-footer-group[open] > .seo-site-footer-heading::after {
    content: '−';
  }

  .seo-site-footer-group nav {
    gap: 0;
    padding: 0 0 12px;
  }

  .seo-site-footer-group a {
    width: 100%;
    min-height: 44px;
    padding: 9px 0;
    justify-content: space-between;
  }

  .seo-site-footer-group a::after {
    opacity: 0.78;
    transform: none;
  }

  .seo-site-footer-meta {
    min-height: 0;
    padding-top: 18px;
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .seo-trust-bar a {
    width: 100%;
  }
}

@media (max-width: 420px) {
  h1,
  .seo-brand-label,
  .blog-hero-heading h1 {
    font-size: 2rem;
  }

  .seo-route-hero {
    min-height: 590px;
  }

  .seo-page-nav nav {
    grid-template-columns: 1fr;
  }

  .seo-content-section {
    grid-template-columns: 1fr;
  }

  .telegram-directory-toc {
    grid-template-columns: 1fr;
  }

  .telegram-directory-section-head,
  .telegram-editorial-section {
    grid-template-columns: 1fr;
  }

  .seo-section-number {
    margin-bottom: -4px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .seo-button,
  .seo-link,
  .seo-faq-item summary span,
  .seo-card,
  .telegram-directory-toc a,
  .telegram-related-links a,
  .telegram-resource-card,
  .telegram-bot-panel > a,
  .seo-site-footer-support,
  .seo-site-footer-group a,
  .seo-site-footer-group a::after {
    transition: none;
  }
}
