/* Site interface */

/* Theme tokens */
:root {
  --brand-accent: #e24d67;
  --brand-accent-strong: #9d2444;
  --ink: #44313a;
  --ink-strong: #1e1218;
  --line: #ead4dc;
  --surface-muted: #fff3f6;
  --surface-soft: #fff9fa;
  --white: #ffffff;
  --black: #000000;
  --space-xs: 0.44rem;
  --space-sm: 0.67rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --layout-max: 1200px;
  --type-small: 13px;
  --type-medium: 20px;
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background-color: var(--white);
}

body.has-telegram-band {
  padding-bottom: 60px;
}

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

a:hover {
  color: var(--brand-accent-strong);
}

img {
  max-width: 100%;
  height: auto;
}

/* Layout */
.container {
  max-width: var(--layout-max);
  margin: 0 auto;
  padding: 0 20px;
}

.skip-link {
  position: absolute;
  left: -9999px;
}

/* Header */
#header {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 100;
}

.layout-wrap {
  max-width: var(--layout-max);
  margin: 0 auto;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand-title a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: var(--ink-strong);
  text-decoration: none;
}

.brand-logo {
  display: block;
  width: 34px;
  height: 34px;
  object-fit: contain;
  flex: 0 0 auto;
}

/* Navigation */
.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 20px;
}

.nav-list li {
  margin: 0;
}

.nav-link {
  color: var(--ink);
  font-weight: 500;
  padding: 8px 12px;
  transition: color 0.2s;
}

.nav-link:hover {
  color: var(--brand-accent);
}

/* Mobile Menu */
.drawer-trigger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.ui-icon {
  fill: var(--ink);
}

/* Offcanvas Menu */
.drawer-shell {
  display: none;
}

.drawer-panel {
  position: fixed;
  top: 0;
  right: -300px;
  width: 300px;
  height: 100%;
  background: var(--white);
  box-shadow: -2px 0 10px rgba(0,0,0,0.1);
  transition: right 0.3s;
  z-index: 1000;
}

.drawer-panel.is-active {
  right: 0;
}

.drawer-inner {
  padding: 20px;
}

.drawer-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  float: right;
}

.drawer-nav ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.drawer-nav li {
  margin: 10px 0;
}

.drawer-nav a {
  display: block;
  padding: 10px;
  color: var(--ink);
}

/* Main Content */
#main {
  min-height: calc(100vh - 200px);
}

.page-area {
  padding: 40px 20px;
}

/* Hero Section */
.hero-panel {
  background: linear-gradient(135deg, var(--brand-accent) 0%, var(--brand-accent-strong) 100%);
  padding: 40px 20px;
  text-align: center;
  border-radius: 8px;
  margin-bottom: 30px;
}

.hero-panel .headline {
  color: var(--white) !important;
  margin: 0;
  font-size: 2em;
}

.headline {
  color: var(--ink) !important;
  font-size: 2em;
  margin-bottom: 20px;
}

/* Entry Content */
.content-body {
  max-width: 900px;
  margin: 0 auto;
}

.seo-panel,
.contact-panel,
.service-intro,
.service-note,
.legal-summary {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  margin-bottom: 28px;
}

.seo-panel h2,
.contact-panel h2,
.service-intro h2,
.service-note h2 {
  margin-top: 0;
}

.seo-copy {
  margin: 30px 0;
}

.section-title {
  text-align: center;
}

.request-card {
  flex-basis: 60%;
  max-width: 75%;
  margin: 0 auto;
}

.faq-list {
  margin-top: 32px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 0 18px;
  margin: 12px 0;
}

.faq-list summary {
  cursor: pointer;
  color: var(--ink-strong);
  font-weight: 700;
  padding: 16px 0;
}

.faq-list details p {
  margin-top: 0;
}

.compact-faq {
  margin-top: 24px;
}

.text-center {
  text-align: center;
}

.text-small {
  font-size: var(--type-small);
}

/* Headings */
h2 {
  font-size: 1.5em;
  margin-top: 30px;
  margin-bottom: 15px;
  color: var(--ink-strong);
  font-weight: 600;
}

h5 {
  font-size: 1.2em;
  margin-top: 0;
  margin-bottom: 15px;
  color: var(--ink-strong);
  font-weight: 600;
}

/* Columns / Grid */
.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}

.service-card {
  flex: 1;
  min-width: 200px;
  padding: var(--space-sm);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.service-card h5 {
  text-align: center;
  margin-bottom: 15px;
  color: var(--ink-strong);
}

/* Buttons */
.action-list {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.action-item {
  display: inline-block;
}

.action-item.is-fluid.is-fill {
  width: 100%;
}

.action-link {
  display: inline-block;
  padding: 12px 24px;
  background: var(--brand-accent);
  color: var(--white) !important;
  border-radius: 6px;
  font-weight: 600;
  text-align: center;
  transition: all 0.2s;
  width: 100%;
}

.action-link:hover {
  background: var(--brand-accent-strong);
  transform: translateY(-1px);
}

/* Download Button Variants */
.btn-download-1 .action-link {
  background-image: linear-gradient(45deg, #ff5c57, #c62828) !important;
}
.btn-download-2 .action-link {
  background-image: linear-gradient(45deg, #43aa8b, #1e5f48) !important;
}
.btn-download-3 .action-link {
  background-image: linear-gradient(45deg, #9b5de5, #4c1d95) !important;
}
.btn-download-4 .action-link {
  background-image: linear-gradient(45deg, #a16207, #713f12) !important;
}
.btn-download-5 .action-link {
  background-image: linear-gradient(45deg, #ff7f11, #b34700) !important;
}

.btn-download-1 .action-link:hover,
.btn-download-2 .action-link:hover,
.btn-download-3 .action-link:hover,
.btn-download-4 .action-link:hover,
.btn-download-5 .action-link:hover {
  filter: brightness(1.1);
}

/* Form */
#service-request-form {
  background: var(--white);
  padding: 10px 20px;
  border-radius: 8px;
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

#service-request-form input[type="url"] {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 4px;
  font-size: 16px;
  flex: 1;
}

#service-request-form button {
  padding: 12px 24px;
  background-color: var(--brand-accent);
  color: var(--white);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  transition: background-color 0.2s;
}

#service-request-form button:hover {
  background-color: var(--brand-accent-strong);
}

@media (min-width: 600px) {
  #service-request-form {
    flex-direction: row;
    align-items: center;
  }
  #service-request-form button {
    margin-left: 10px;
  }
}

/* Lists */
.content-list {
  padding-left: 20px;
}

.content-list li + li {
  margin-top: 12px;
}

/* Separator */
.section-divider {
  border: none;
  border-top: 1px solid var(--line);
  margin: 20px 0;
}

/* Footer */
#footer {
  background: var(--surface-muted);
  padding: 30px 20px;
  text-align: center;
}

.telegram-band {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100vw;
  max-width: 100vw;
  overflow: hidden;
  z-index: 900;
  background: #0b8fc7;
  color: var(--white);
  box-shadow: 0 -6px 24px rgba(0, 0, 0, 0.16);
}

.telegram-band.is-hidden {
  display: none;
}

.telegram-band-inner {
  width: 100%;
  box-sizing: border-box;
  max-width: 760px;
  min-height: 44px;
  margin: 0 auto;
  padding: 7px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.telegram-band-link {
  flex: 1 1 0;
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
}

.telegram-band-link:hover {
  color: var(--white);
}

.telegram-band-icon {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  display: block;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  padding: 5px;
  fill: var(--white);
}

.telegram-band-copy {
  display: block;
  min-width: 0;
  line-height: 1.15;
}

.telegram-band-copy strong,
.telegram-band-copy span {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.telegram-band-copy strong {
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
}

.telegram-band-copy span {
  color: rgba(255, 255, 255, 0.88);
  font-size: 11px;
}

.telegram-band-join {
  flex: 0 0 auto;
  min-width: 74px;
  border-radius: 999px;
  background: var(--white);
  color: #0b79b0;
  padding: 6px 18px;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
}

.telegram-band-join:hover {
  color: #075a83;
}

.telegram-band-close {
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  color: var(--white);
  font-size: 20px;
  line-height: 1;
  padding: 0;
  cursor: pointer;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}

.footer-links li {
  display: inline;
}

.footer-links li:not(:last-child)::after {
  content: "|";
  margin-left: 4px;
}

/* Terms Section Highlight */
.terms-section:target {
  background-color: #ffff00;
  border: 2px solid #ffeeba;
  padding: 5px;
  scroll-margin-top: 80px;
}

/* Utilities */
.btext {
  font-weight: 700;
}

/* Responsive */
@media (max-width: 768px) {
  body.has-telegram-band {
    padding-bottom: 70px;
  }

  [data-device="desktop"] {
    display: none !important;
  }
  
  [data-device="mobile"] {
    display: block !important;
  }
  
  .drawer-trigger {
    display: block;
  }
  
  .service-grid {
    flex-direction: column;
  }
  
  .service-card {
    min-width: 100%;
  }

  .telegram-band-inner {
    max-width: 390px;
    min-height: 58px;
    margin: 0;
    padding: 8px 12px;
    justify-content: space-between;
    gap: 8px;
  }

  .telegram-band-icon {
    width: 26px;
    height: 26px;
    padding: 5px;
  }

  .telegram-band-copy strong {
    font-size: 12px;
  }

  .telegram-band-copy span {
    font-size: 10px;
  }

  .telegram-band-join {
    min-width: 58px;
    padding: 6px 10px;
    font-size: 12px;
  }

  .telegram-band-close {
    width: 24px;
    height: 24px;
    font-size: 18px;
  }

  .request-card {
    max-width: 100%;
  }
}

@media (min-width: 769px) {
  [data-device="mobile"] {
    display: none !important;
  }
  
  [data-device="desktop"] {
    display: block !important;
  }
}

/* Background colors */
.surface-light,
.surface {
  background-color: var(--white);
}

.border-muted {
  border-color: var(--line);
}

/* Constrained layout */
.content-frame {
  max-width: 900px;
  margin: 0 auto;
}

.content-frame > * {
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.layout-flex {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.layout-flow > * + * {
  margin-top: var(--space-md);
}

/* Article */
article {
  padding: 20px;
}

/* Small text */
small {
  color: #666;
  font-size: 12px;
}

/* Domain Variant Start */
body {
  background: linear-gradient(180deg, #fff7fa 0%, #ffffff 34%);
}

#header {
  border-bottom-color: #ead4dc;
  box-shadow: 0 8px 24px rgba(157, 36, 68, 0.14);
}

.brand-title a {
  color: #1e1218;
}

.nav-link:hover,
.drawer-nav a:hover {
  color: #e24d67;
}

.hero-panel {
  background: linear-gradient(135deg, #e24d67 0%, #9d2444 100%);
  box-shadow: 0 18px 38px rgba(157, 36, 68, 0.14);
}

.seo-panel,
.contact-panel,
.service-intro,
.service-note,
.legal-summary,
.faq-list details,
.service-card {
  background: #fff9fa;
  border-color: #ead4dc;
  box-shadow: 0 12px 28px rgba(157, 36, 68, 0.14);
}

.seo-copy {
  border-left: 4px solid #e24d67;
  padding-left: 20px;
}

.action-link,
#service-request-form button {
  background: #e24d67;
}

.action-link:hover,
#service-request-form button:hover {
  background: #9d2444;
}

#service-request-form input[type="url"]:focus {
  border-color: #e24d67;
  box-shadow: 0 0 0 3px rgba(157, 36, 68, 0.14);
  outline: none;
}

.telegram-band {
  background: linear-gradient(90deg, #d83c5b 0%, #f07182 100%);
}

.telegram-band-join {
  color: #9d2444;
}

#footer {
  background: #fff3f6;
}
/* Domain Variant End */

/* Independent Domain Layout Start */
.independent-ui .page-area {
  padding: 36px 18px 48px;
}

.brand-hero,
.service-stage,
.info-stage {
  width: min(1120px, calc(100vw - 36px));
  margin: 0 auto 32px;
  display: grid;
  align-items: center;
  gap: 28px;
  overflow: hidden;
}

.brand-hero {
  min-height: 380px;
}

.info-stage {
  min-height: 250px;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-copy p,
.service-stage-copy p,
.info-stage-copy p {
  margin: 12px 0 0;
  max-width: 650px;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.primary-cta,
.secondary-cta {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  font-weight: 800;
  text-decoration: none;
}

.hero-art {
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.site-drawing {
  width: min(320px, 80vw);
  max-height: 280px;
  display: block;
}

.home-independent .intro-panel {
  margin-bottom: 26px;
}

.home-independent .service-card p,
.service-independent .service-card p {
  margin: 0 0 18px;
}

.home-independent .service-card h5,
.service-independent .service-card h5 {
  margin-bottom: 8px;
}

.service-request-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(260px, 1.05fr);
  gap: 22px;
  align-items: stretch;
}

.service-request-layout .request-card {
  max-width: none;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-request-layout .service-note {
  margin-bottom: 0;
}

.info-independent {
  position: relative;
}

@media (max-width: 820px) {
  .brand-hero,
  .service-stage,
  .info-stage {
    grid-template-columns: 1fr !important;
    min-height: auto;
    width: min(100%, calc(100vw - 24px));
    margin-bottom: 22px;
    padding: 24px !important;
  }

  .hero-art {
    min-height: 170px;
    order: -1;
  }

  .service-request-layout {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
  }

  .primary-cta,
  .secondary-cta {
    width: 100%;
  }
}

.site-social .brand-hero,
.site-social .service-stage,
.site-social .info-stage {
  grid-template-columns: 1.08fr 0.92fr;
  padding: 38px;
  border-radius: 30px;
  background:
    radial-gradient(circle at 82% 16%, rgba(226, 77, 103, 0.24), transparent 34%),
    linear-gradient(135deg, #fff9fb 0%, #fff0f4 100%);
  border: 1px solid #f1ccd6;
  box-shadow: 0 24px 60px rgba(157, 36, 68, 0.16);
}

.site-social .hero-kicker {
  background: #ffe2e9;
  color: #9d2444;
}

.site-social .headline {
  color: #1e1218 !important;
}

.site-social .primary-cta,
.site-social .action-link,
.site-social #service-request-form button {
  border-radius: 999px;
  background: #e24d67;
  color: #fff !important;
}

.site-social .secondary-cta {
  border-radius: 999px;
  border: 1px solid #e24d67;
  color: #9d2444;
  background: #fff;
}

.site-social .social-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 22px;
}

.site-social .social-strip span {
  padding: 16px;
  border-radius: 999px;
  text-align: center;
  font-weight: 800;
  background: #fff0f4;
  border: 1px solid #f0c2cf;
}

.site-social .social-mosaic {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  align-items: stretch;
}

.site-social .social-tile {
  min-height: 190px;
  border-radius: 26px;
  padding: 24px;
  position: relative;
}

.site-social .tile-1,
.site-social .tile-4 {
  grid-row: span 2;
}

.site-social .tile-mark {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #ffe2e9;
  color: #9d2444;
  font-weight: 900;
  margin-bottom: 16px;
}

.site-social .draw-line {
  fill: none;
  stroke: #9d2444;
  stroke-width: 8;
  stroke-linecap: round;
  opacity: 0.26;
}

.site-social .draw-line-soft {
  stroke: #e24d67;
  opacity: 0.18;
}

.site-social .draw-node {
  fill: #e24d67;
  opacity: 0.86;
}

.site-social .draw-node-alt {
  fill: #9d2444;
}

.site-social .draw-node-small {
  fill: #ffd1dc;
}

@media (max-width: 900px) {
  .site-social .social-strip,
  .site-vip .vip-status,
  .site-win .win-scorebar {
    grid-template-columns: 1fr;
  }

  .site-social .social-mosaic,
  .site-world .world-route-grid,
  .site-win .win-board-grid {
    grid-template-columns: 1fr;
  }

  .site-social .tile-1,
  .site-social .tile-4 {
    grid-row: auto;
  }

  .site-vip .vip-slot {
    grid-template-columns: 1fr;
  }
}
/* Independent Domain Layout End */

/* Radical Domain Theme Start */
.theme-social-feed,
.theme-vip-vault,
.theme-world-atlas,
.theme-win-arena {
  letter-spacing: 0;
}

.theme-social-feed .page-area,
.theme-vip-vault .page-area,
.theme-world-atlas .page-area,
.theme-win-arena .page-area {
  padding: 28px 18px 48px;
}

.theme-social-feed #header {
  background: #fff9fb;
  border-bottom: 1px solid #f3ccd5;
}

.theme-social-feed .social-app-shell {
  max-width: 1220px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr) 260px;
  gap: 20px;
}

.theme-social-feed .social-left-rail,
.theme-social-feed .social-right-rail {
  position: sticky;
  top: 92px;
  align-self: start;
}

.theme-social-feed .profile-chip,
.theme-social-feed .side-note,
.theme-social-feed .feed-post,
.theme-social-feed .doc-feed-card {
  background: #ffffff;
  border: 1px solid #f0c7d1;
  border-radius: 24px;
  box-shadow: 0 16px 34px rgba(157, 36, 68, 0.12);
}

.theme-social-feed .profile-chip {
  padding: 18px;
  margin-bottom: 14px;
}

.theme-social-feed .profile-mark,
.theme-social-feed .post-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e24d67, #9d2444);
  color: #fff;
  font-weight: 900;
}

.theme-social-feed .social-left-rail a,
.theme-social-feed .doc-tabs a {
  display: block;
  padding: 13px 16px;
  margin: 9px 0;
  border-radius: 999px;
  background: #ffe9ee;
  color: #9d2444;
  font-weight: 800;
}

.theme-social-feed .story-row {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 14px;
}

.theme-social-feed .story-row span {
  flex: 0 0 auto;
  padding: 12px 16px;
  border-radius: 999px;
  background: #ffe9ee;
  border: 1px solid #f0c7d1;
  font-weight: 800;
}

.theme-social-feed .feed-post {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 14px;
  padding: 20px;
  margin-bottom: 16px;
}

.theme-social-feed .lead-post {
  padding: 28px;
}

.theme-social-feed .post-label {
  color: #9d2444;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.theme-social-feed .feed-action,
.theme-social-feed #service-request-form button {
  display: inline-flex;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: #e24d67;
  color: #fff !important;
  padding: 10px 18px;
  font-weight: 900;
}

.theme-social-feed .side-note {
  padding: 18px;
  margin-bottom: 14px;
}

.theme-social-feed .social-service-page,
.theme-social-feed .social-doc-page {
  max-width: 1060px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 22px;
}

.theme-social-feed .social-thread-info,
.theme-social-feed .doc-tabs {
  background: #ffe9ee;
  border-radius: 28px;
  padding: 24px;
  align-self: start;
}

.theme-social-feed .chat-composer-card {
  background: #fff;
  border: 1px solid #f0c7d1;
  border-radius: 28px;
  padding: 22px;
}

.theme-social-feed .chat-bubble {
  max-width: 78%;
  padding: 12px 16px;
  border-radius: 20px;
  margin: 10px 0;
  background: #ffe9ee;
}

.theme-social-feed .chat-bubble.right {
  margin-left: auto;
  background: #e24d67;
  color: #fff;
}

.theme-vip-vault {
  background: #100d08;
  color: #f8edd2;
}

.theme-vip-vault #header,
.theme-vip-vault #footer {
  background: #100d08;
  border-color: #5b4316;
}

.theme-vip-vault .brand-title a,
.theme-vip-vault .nav-link,
.theme-vip-vault h1,
.theme-vip-vault h2,
.theme-vip-vault h3,
.theme-vip-vault h5 {
  color: #f8edd2 !important;
}

.theme-vip-vault .vip-shell {
  max-width: 1180px;
  margin: 0 auto;
}

.theme-vip-vault .vip-top-console,
.theme-vip-vault .terminal-head,
.theme-vip-vault .vip-vault-page {
  border: 1px solid #c79b35;
  background: linear-gradient(135deg, #18130b, #2b2112);
  padding: 32px;
  box-shadow: 0 0 0 1px rgba(199, 155, 53, 0.2), 0 24px 60px rgba(0,0,0,.35);
}

.theme-vip-vault .vip-badge,
.theme-vip-vault .vault-label {
  color: #c79b35;
  font-weight: 900;
  text-transform: uppercase;
}

.theme-vip-vault .vip-metric-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 18px 0;
}

.theme-vip-vault .vip-metric-grid div {
  background: #1b160d;
  border-left: 4px solid #c79b35;
  padding: 18px;
}

.theme-vip-vault .vip-metric-grid strong {
  display: block;
  color: #c79b35;
  font-size: 28px;
}

.theme-vip-vault .vip-workbench {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 18px;
}

.theme-vip-vault .vip-console-note,
.theme-vip-vault .vip-command-list,
.theme-vip-vault .terminal-window,
.theme-vip-vault .vault-document {
  background: #18130b;
  border: 1px solid #5b4316;
  padding: 22px;
}

.theme-vip-vault .vip-command-row {
  display: grid;
  grid-template-columns: 92px 1fr 1.3fr 110px;
  gap: 12px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid #5b4316;
  color: #f8edd2;
}

.theme-vip-vault .vip-command-id,
.theme-vip-vault .vip-command-arrow {
  color: #c79b35;
  font-weight: 900;
}

.theme-vip-vault .vip-terminal-page {
  max-width: 920px;
  margin: 0 auto;
}

.theme-vip-vault .terminal-bars span {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #c79b35;
  margin-right: 6px;
}

.theme-vip-vault .terminal-window code {
  display: block;
  margin: 12px 0;
  color: #f8edd2;
}

.theme-vip-vault #service-request-form button {
  background: #c79b35;
  color: #18130b;
  border-radius: 0;
  border: 0;
  font-weight: 900;
}

.theme-world-atlas {
  background: #f4fffc;
}

.theme-world-atlas #header {
  background: rgba(244,255,252,.92);
  border-bottom: 2px dashed #0f9f8f;
}

.theme-world-atlas .atlas-shell {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
}

.theme-world-atlas .atlas-map-panel {
  min-height: 460px;
  border-radius: 54px 12px 54px 12px;
  background: linear-gradient(90deg, rgba(15,159,143,.14) 1px, transparent 1px), linear-gradient(180deg, rgba(15,159,143,.14) 1px, transparent 1px), #eafffb;
  background-size: 30px 30px;
  position: relative;
  border: 1px solid #9bd8d0;
}

.theme-world-atlas .atlas-globe {
  position: absolute;
  inset: 70px;
  border: 8px solid #0f9f8f;
  border-radius: 50%;
}

.theme-world-atlas .atlas-globe span {
  position: absolute;
  inset: 18%;
  border: 2px solid #116a61;
  border-radius: 50%;
}

.theme-world-atlas .atlas-route-line {
  position: absolute;
  left: 18%;
  right: 14%;
  top: 58%;
  border-top: 5px dashed #0f9f8f;
  transform: rotate(-12deg);
}

.theme-world-atlas .atlas-intro {
  align-self: center;
  padding: 24px;
}

.theme-world-atlas .atlas-label,
.theme-world-atlas .ticket-kicker {
  color: #116a61;
  font-weight: 900;
  text-transform: uppercase;
}

.theme-world-atlas .atlas-destination-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(7, minmax(120px, 1fr));
  gap: 12px;
}

.theme-world-atlas .atlas-destination {
  min-height: 150px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border: 1px solid #9bd8d0;
  border-radius: 24px;
  padding: 16px;
  background: #fff;
  color: #10272b;
}

.theme-world-atlas .map-pin {
  width: 34px;
  height: 34px;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  background: #0f9f8f;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
}

.theme-world-atlas .route-service-page,
.theme-world-atlas .atlas-doc-page {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 22px;
}

.theme-world-atlas .route-ticket,
.theme-world-atlas .route-form,
.theme-world-atlas .atlas-doc-copy {
  background: #fff;
  border: 1px solid #9bd8d0;
  border-radius: 28px;
  padding: 24px;
}

.theme-world-atlas .route-form-map,
.theme-world-atlas .atlas-doc-map {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 18px;
}

.theme-world-atlas .mini-map,
.theme-world-atlas .atlas-doc-map {
  min-height: 260px;
  border-radius: 40px 10px 40px 10px;
  background: #eafffb;
  border: 1px dashed #0f9f8f;
}

.theme-world-atlas #service-request-form button {
  border-radius: 14px;
  background: #0f9f8f;
  color: #fff;
  border: 0;
}

.theme-win-arena {
  background: #fff7f0;
}

.theme-win-arena #header {
  border-bottom: 4px solid #20130f;
  background: #fff;
}

.theme-win-arena .arena-shell {
  max-width: 1180px;
  margin: 0 auto;
}

.theme-win-arena .arena-scoreboard,
.theme-win-arena .mini-scoreboard,
.theme-win-arena .rulebook-head {
  background: #20130f;
  color: #fff;
  border: 4px solid #ef4444;
  box-shadow: 8px 8px 0 #ffd6c2;
  padding: 26px;
}

.theme-win-arena .arena-scoreboard .headline,
.theme-win-arena .mini-scoreboard .headline,
.theme-win-arena .rulebook-head .headline {
  color: #fff !important;
}

.theme-win-arena .score-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 18px;
}

.theme-win-arena .score-row span,
.theme-win-arena .score-row strong {
  background: #ef4444;
  padding: 12px;
  text-align: center;
}

.theme-win-arena .arena-layout,
.theme-win-arena .win-play-panel {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 18px;
  margin-top: 26px;
}

.theme-win-arena .arena-rules,
.theme-win-arena .play-steps,
.theme-win-arena .rulebook-body {
  border: 3px solid #20130f;
  background: #fff;
  box-shadow: 6px 6px 0 #ffd6c2;
  padding: 22px;
}

.theme-win-arena .arena-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.theme-win-arena .arena-tile {
  display: flex;
  min-height: 170px;
  flex-direction: column;
  justify-content: space-between;
  border: 3px solid #20130f;
  background: #fff;
  box-shadow: 6px 6px 0 #ffd6c2;
  padding: 18px;
  color: #20130f;
}

.theme-win-arena .arena-tile span,
.theme-win-arena .play-steps strong {
  color: #ef4444;
  font-weight: 900;
}

.theme-win-arena .win-service-page,
.theme-win-arena .arena-rulebook-page {
  max-width: 980px;
  margin: 0 auto;
}

.theme-win-arena .play-form {
  border: 3px solid #20130f;
  background: #fff;
  box-shadow: 6px 6px 0 #ffd6c2;
  padding: 22px;
}

.theme-win-arena #service-request-form button {
  border: 0;
  border-radius: 0;
  background: #ef4444;
  color: #fff;
  font-weight: 900;
}

@media (max-width: 960px) {
  .theme-social-feed .social-app-shell,
  .theme-social-feed .social-service-page,
  .theme-social-feed .social-doc-page,
  .theme-vip-vault .vip-workbench,
  .theme-world-atlas .atlas-shell,
  .theme-world-atlas .route-service-page,
  .theme-world-atlas .atlas-doc-page,
  .theme-win-arena .arena-layout,
  .theme-win-arena .win-play-panel {
    grid-template-columns: 1fr;
  }

  .theme-social-feed .social-left-rail,
  .theme-social-feed .social-right-rail {
    position: static;
  }

  .theme-vip-vault .vip-metric-grid,
  .theme-world-atlas .atlas-destination-grid,
  .theme-win-arena .arena-grid,
  .theme-win-arena .score-row {
    grid-template-columns: 1fr;
  }

  .theme-vip-vault .vip-command-row {
    grid-template-columns: 1fr;
  }

  .theme-world-atlas .route-form-map {
    grid-template-columns: 1fr;
  }
}
/* Radical Domain Theme End */

/* Single homepage FAQ styling */
.home-faq-single details {
  margin-top: 12px;
  padding: 14px 0;
  border-top: 1px solid currentColor;
}
.home-faq-single summary {
  cursor: pointer;
  font-weight: 900;
}
.theme-social-feed .feed-faq {
  border-color: #f0c7d1;
}
.theme-social-feed .feed-faq details {
  color: #9d2444;
  border-color: rgba(157, 36, 68, 0.22);
}
.theme-social-feed .feed-faq details p {
  color: #1e1218;
}
.theme-vip-vault .vip-faq-panel {
  margin-top: 18px;
  background: #18130b;
  border: 1px solid #5b4316;
  padding: 22px;
  color: #f8edd2;
}
.theme-vip-vault .vip-faq-panel details {
  color: #c79b35;
  border-color: rgba(199, 155, 53, 0.38);
}
.theme-vip-vault .vip-faq-panel details p {
  color: #f8edd2;
}
.theme-world-atlas .atlas-faq-panel {
  grid-column: 1 / -1;
  background: #ffffff;
  border: 1px solid #9bd8d0;
  border-radius: 28px;
  padding: 24px;
}
.theme-world-atlas .atlas-faq-panel details {
  color: #116a61;
  border-color: rgba(17, 106, 97, 0.24);
}
.theme-world-atlas .atlas-faq-panel details p {
  color: #10272b;
}

