:root {
  --bg-dark: #0f1530;
  --bg-panel: rgba(16, 20, 44, 0.82);
  --bg-panel-2: rgba(255, 255, 255, 0.08);
  --line: rgba(255, 255, 255, 0.14);
  --text: #ffffff;
  --text-soft: rgba(255, 255, 255, 0.82);
  --text-dim: rgba(255, 255, 255, 0.62);
  --chip: rgba(163, 127, 255, 0.18);
  --primary-a: #4d63ff;
  --primary-b: #d77cff;
  --shadow: 0 25px 80px rgba(0, 0, 0, 0.30);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  font-family: Inter, Arial, Helvetica, sans-serif;
  background: #0a1025;
  color: var(--text);
}

.guest-body {
  min-height: 100vh;
}

.guest-home {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  overflow: hidden;
}

.guest-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 10, 24, 0.70) 0%, rgba(28, 25, 65, 0.38) 48%, rgba(34, 26, 78, 0.48) 100%),
    url("/static/root/background-city.jpg") center center / cover no-repeat;
  transform: scale(1.02);
}

.guest-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 35% 55%, rgba(210, 132, 255, 0.20), transparent 26%),
    radial-gradient(circle at 78% 35%, rgba(130, 110, 255, 0.16), transparent 22%);
  pointer-events: none;
}

.guest-left,
.guest-right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.guest-left {
  position: relative;
  height: 100vh;
  overflow: hidden;
  padding: 72px 60px 56px 86px;
  border-right: 1px solid rgba(255,255,255,0.08);
}

.guest-right {
  padding: 78px 62px 38px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: rgba(17, 22, 49, 0.28);
  backdrop-filter: blur(2px);
}

.guest-panel {
  display: none;
  height: 100%;
}

.guest-panel.is-active {
  display: block;
}

.guest-panel-main {
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  padding-right: 30px;
}



.guest-panel-main::-webkit-scrollbar,
.guest-panel-alt::-webkit-scrollbar {
  width: 8px;
}

.guest-panel-main::-webkit-scrollbar-thumb,
.guest-panel-alt::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.16);
  border-radius: 999px;
}

.guest-panel-main::-webkit-scrollbar-track,
.guest-panel-alt::-webkit-scrollbar-track {
  background: transparent;
}

.guest-copy-wrap {
  max-width: 820px;
}

.guest-title {
  margin: 0;
  font-size: 72px;
  line-height: 0.98;
  letter-spacing: -0.04em;
  font-weight: 700;
}

.guest-subtitle {
  margin: 34px 0 0;
  font-size: 24px;
  line-height: 1.45;
  color: var(--text-soft);
  max-width: 760px;
}

.guest-chips {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.guest-chips span {
  display: inline-flex;
  align-items: center;
  height: 46px;
  padding: 0 18px;
  border-radius: 14px;
  background: rgba(190, 151, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text-soft);
  font-size: 16px;
  backdrop-filter: blur(8px);
}

.guest-visual-card {
  margin-top: 38px;
  width: 100%;
  max-width: 860px;
  padding: 22px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(191, 146, 255, 0.20), rgba(95, 84, 180, 0.20));
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.guest-visual-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.guest-visual-user {
  display: flex;
  align-items: center;
  gap: 14px;
}

.guest-visual-avatar-img,
.guest-post-avatar-img {
  display: block;
  object-fit: cover;
  border-radius: 999px;
  box-shadow: 0 0 0 2px rgba(255,255,255,0.16);
}

.guest-visual-avatar-img {
  width: 56px;
  height: 56px;
}

.guest-post-avatar-img {
  width: 56px;
  height: 56px;
}

.guest-post-avatar-img.small {
  width: 38px;
  height: 38px;
}

.guest-post-avatar-img.tiny {
  width: 28px;
  height: 28px;
}

.guest-visual-name {
  font-size: 24px;
  font-weight: 700;
}

.guest-visual-meta {
  font-size: 15px;
  color: var(--text-soft);
}

.guest-visual-count {
  min-width: 42px;
  height: 42px;
  padding: 0 12px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(122, 104, 219, 0.72);
  font-weight: 700;
}

.guest-post-card {
  overflow: hidden;
  border-radius: 22px;
  background: rgba(255,255,255,0.94);
  color: #2e3151;
}

.guest-post-head {
  padding: 18px 18px 8px;
}

.guest-post-author {
  display: flex;
  gap: 14px;
  align-items: center;
}

.guest-post-title {
  font-size: 19px;
  font-weight: 700;
}

.guest-post-time {
  font-size: 14px;
  color: #6d718e;
  margin-top: 4px;
}

.guest-post-image {
  display: block;
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.guest-post-reply {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  border-top: 1px solid rgba(46, 49, 81, 0.08);
}

.guest-post-reply-body {
  color: #525678;
  flex: 1;
}

.guest-post-space {
  font-size: 14px;
  color: #696ea1;
  white-space: nowrap;
}

.guest-post-bar {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 18px;
  border-top: 1px solid rgba(46, 49, 81, 0.08);
  color: #646896;
  font-size: 15px;
  flex-wrap: wrap;
}

.guest-post-input {
  margin: 0 18px 18px;
  height: 52px;
  border-radius: 999px;
  background: #eef0fa;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 16px;
  color: #7a7fa8;
}

.guest-login-panel {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
}

.guest-brand-row {
  margin-bottom: 42px;
}

.guest-brand-lockup {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 42px;
}

.guest-logo {
  display: block;
  width: 310px;
  max-width: 100%;
  height: auto;
}

.guest-logo-small {
  width: 82px;
  height: 82px;
  object-fit: contain;
  flex: 0 0 auto;
}

.guest-brand-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.guest-brand-name {
  font-size: 36px;
  line-height: 1;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.03em;
}

.guest-brand-tag {
  margin-top: 8px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.68);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.guest-form {
  display: flex;
  flex-direction: column;
}

.guest-label {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text);
}

.guest-input {
  height: 56px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.92);
  color: #2d3151;
  padding: 0 16px;
  font-size: 16px;
  margin-bottom: 22px;
  outline: none;
}

.guest-btn {
  height: 58px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 22px;
  font-weight: 700;
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: 0 10px 30px rgba(44, 28, 84, 0.22);
}

.guest-btn-primary {
  color: white;
  background: linear-gradient(90deg, #4758f6, #d67eff);
}

.guest-btn-secondary {
  margin-top: 18px;
  color: #d9cfff;
  background: transparent;
  border: 1px solid rgba(214, 126, 255, 0.42);
  box-shadow: none;
}

.guest-btn-secondary:hover {
  background: rgba(214, 126, 255, 0.08);
}

.guest-forgot {
  text-align: center;
  color: rgba(255,255,255,0.84);
  font-size: 15px;
  margin: 22px 0 8px;
}

.guest-divider {
  position: relative;
  text-align: center;
  margin: 18px 0 8px;
  color: rgba(255,255,255,0.94);
  font-size: 18px;
  font-weight: 700;
}

.guest-divider::before,
.guest-divider::after {
  content: "";
  position: absolute;
  top: 50%;
  width: calc(50% - 24px);
  height: 1px;
  background: rgba(255,255,255,0.22);
}

.guest-divider::before {
  left: 0;
}

.guest-divider::after {
  right: 0;
}

.guest-footer {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex;
  justify-content: center;
  gap: 26px;
  flex-wrap: wrap;
}

.guest-footer a {
  color: rgba(255,255,255,0.84);
  font-size: 15px;
}



.guest-alt-title {
  margin: 0 0 14px;
  font-size: 54px;
  line-height: 1;
  letter-spacing: -0.04em;
  font-weight: 700;
  color: #ffffff;
}

.guest-alt-subtitle {
  margin: 0 0 24px;
  font-size: 21px;
  line-height: 1.5;
  color: rgba(255,255,255,0.82);
}

.guest-info-sticky {
  position: sticky;
  top: 0;
  z-index: 30;
  padding: 0 0 14px;
  background: transparent;
  backdrop-filter: blur(10px);
}


.guest-panel-alt {
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  padding-right: 30px;
  position: relative;
}

.guest-panel-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0 0 14px;
  height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.88);
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  box-shadow: 0 4px 14px rgba(0,0,0,0.12);
}

.guest-panel-close:hover {
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.18);
}

.guest-info-tabs {
  position: sticky;
  top: 56px;
  z-index: 19;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0 0 14px;
  background: transparent;
}

.guest-alt-wrap {
  max-width: 820px;
  padding-top: 110px;
  padding-bottom: 80px;
}

.guest-info-tab,
.guest-info-tab:link,
.guest-info-tab:visited,
.guest-info-tab:hover,
.guest-info-tab:active {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.84);
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.02);
}

.guest-info-tab:hover {
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.18);
  color: #ffffff;
}

.guest-info-tab.is-active,
.guest-info-tab.is-active:link,
.guest-info-tab.is-active:visited,
.guest-info-tab.is-active:hover,
.guest-info-tab.is-active:active {
  background: linear-gradient(90deg, rgba(71, 88, 246, 0.88), rgba(214, 126, 255, 0.88));
  color: #ffffff;
  border-color: transparent;
  text-decoration: none;
}

.guest-info-tab.is-active {
  background: linear-gradient(90deg, rgba(71, 88, 246, 0.88), rgba(214, 126, 255, 0.88));
  color: #ffffff;
  border-color: transparent;
}

.guest-info-content {
  display: none;
}

.guest-info-content.is-active {
  display: block;
}

.guest-info-content-inner {
  padding-top: 8px;
}

.guest-legal-text {
  color: rgba(255,255,255,0.86);
  line-height: 1.75;
  font-size: 16px;
}

.guest-legal-text h1,
.guest-legal-text h2,
.guest-legal-text h3 {
  color: #ffffff;
  margin: 0;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.guest-legal-text h1 {
  font-size: 34px;
  margin-bottom: 18px;
}

.guest-legal-text h2 {
  font-size: 24px;
  margin-top: 26px;
  margin-bottom: 12px;
}

.guest-legal-text h3 {
  font-size: 18px;
  margin-top: 20px;
  margin-bottom: 10px;
}

.guest-legal-text p {
  margin: 0 0 16px;
  color: rgba(255,255,255,0.86);
  line-height: 1.8;
  font-size: 16px;
}

.guest-legal-text ul {
  margin: 0 0 18px 0;
  padding-left: 20px;
}

.guest-legal-text li {
  margin: 0 0 8px;
  color: rgba(255,255,255,0.86);
  line-height: 1.75;
  font-size: 16px;
}

.guest-legal-divider {
  border: 0;
  height: 1px;
  margin: 24px 0;
  background: rgba(255,255,255,0.12);
}

@media (max-width: 900px) {
  .guest-home {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .guest-left {
    padding: 52px 28px 20px;
    border-right: none;
    height: auto;
    overflow: visible;
  }

  .guest-right {
    padding: 36px 24px 34px;
  }

  .guest-title {
    font-size: 50px;
  }

  .guest-subtitle {
    font-size: 21px;
  }

  .guest-panel {
    display: none;
    height: auto;
  }

  .guest-panel.is-active {
    display: block;
  }

  .guest-panel-main,
  .guest-panel-alt {
    height: auto;
    overflow: visible;
    padding-right: 0;
  }

  .guest-panel-close,
  .guest-info-tabs {
    position: static;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .guest-alt-title {
    font-size: 38px;
  }

  .guest-alt-subtitle {
    font-size: 18px;
  }
}

@media (max-width: 760px) {
  .guest-title {
    font-size: 40px;
  }

  .guest-subtitle {
    font-size: 18px;
  }

  .guest-left {
    padding: 28px 18px 8px 18px;
  }

  .guest-right {
    padding: 14px 18px 20px;
  }

  .guest-visual-card {
    padding: 14px;
    margin-top: 18px;
  }

  .guest-post-image {
    height: 180px;
  }

  .guest-btn {
    font-size: 18px;
  }

  .guest-footer {
    gap: 16px;
  }

  .guest-logo-small {
    width: 64px;
    height: 64px;
  }

  .guest-brand-name {
    font-size: 28px;
  }

  .guest-brand-tag {
    font-size: 12px;
  }
}


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

.guest-support-card {
  padding: 22px;
  border-radius: 18px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  text-align: left;
}

.guest-support-card h3 {
  margin: 0 0 12px;
  font-size: 22px;
  line-height: 1.15;
  color: #ffffff;
}

.guest-support-card p {
  margin: 0;
  color: rgba(255,255,255,0.84);
  line-height: 1.7;
  font-size: 16px;
}

.guest-support-card-button {
  width: 100%;
  cursor: pointer;
}

.guest-support-card-button:hover {
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.14);
}

.guest-support-fallback {
  margin-top: 26px;
  padding: 22px;
  border-radius: 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
}

.guest-support-fallback h3 {
  margin: 0 0 10px;
  font-size: 24px;
  color: #ffffff;
}

.guest-support-fallback p {
  margin: 0;
  color: rgba(255,255,255,0.84);
  line-height: 1.75;
  font-size: 16px;
}

.guest-support-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.guest-btn-inline {
  width: auto;
  min-width: 240px;
  padding: 0 22px;
}

.guest-support-list {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

.guest-support-list-item {
  padding: 20px;
  border-radius: 18px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
}

.guest-support-list-item h3 {
  margin: 0 0 10px;
  font-size: 22px;
  color: #ffffff;
}

.guest-support-list-item p {
  margin: 0;
  color: rgba(255,255,255,0.84);
  line-height: 1.75;
  font-size: 16px;
}

@media (max-width: 900px) {
  .guest-support-grid {
    grid-template-columns: 1fr;
  }

  .guest-support-actions {
    flex-direction: column;
  }

  .guest-btn-inline {
    width: 100%;
    min-width: 0;
  }
}

.guest-support-list-button,
.guest-support-list-button:link,
.guest-support-list-button:visited,
.guest-support-list-button:hover,
.guest-support-list-button:active {
  display: block;
  width: 100%;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
}

.guest-support-list-button:hover {
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.14);
}

.guest-help-expand {
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 18px;
  background: rgba(255,255,255,0.05);
  padding: 0;
}

.guest-help-expand summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 20px;
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
}

.guest-help-expand summary::-webkit-details-marker {
  display: none;
}

.guest-help-expand-body {
  padding: 0 20px 20px;
  color: rgba(255,255,255,0.84);
  line-height: 1.75;
  font-size: 16px;
}


.guest-report-form-wrap {
  margin-top: 20px;
  padding: 22px;
  border-radius: 18px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
}

.guest-report-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.guest-report-form .guest-label {
  display: block;
  margin: 0 0 8px;
}

.guest-report-form .guest-input,
.guest-report-form select.guest-input,
.guest-report-form textarea.guest-input {
  display: block;
  width: 100%;
  margin: 0;
}
.guest-report-main-fields:not([hidden]) {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.guest-report-email-fields:not([hidden]) {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

[hidden] {
  display: none !important;
}

.guest-report-elm-gate {
  margin: 6px 0 10px;
}

.guest-report-note {
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.82);
  line-height: 1.6;
  font-size: 14px;
}

.guest-report-form .guest-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0;
}

.guest-report-form .guest-checkbox input {
  margin-top: 3px;
}

.guest-report-form .guest-btn-inline {
  width: auto;
  min-width: 220px;
}

.guest-report-form .guest-textarea {
  min-height: 140px;
  resize: vertical;
}

.guest-support-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
}

.guest-support-actions .guest-btn-inline {
  min-width: 220px;
}

@media (max-width: 760px) {
  .guest-support-actions {
    flex-direction: column;
  }

  .guest-support-actions .guest-btn-inline {
    width: 100%;
    min-width: 0;
  }
}

.guest-signed-in-card {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
}

.guest-signed-in-label {
  font-size: 14px;
  color: rgba(255,255,255,0.72);
  margin-bottom: 6px;
}

.guest-signed-in-pin {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  letter-spacing: 0.01em;
}

.guest-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 12px 0 18px;
  color: rgba(255,255,255,0.86);
  font-size: 14px;
  line-height: 1.6;
}

.guest-checkbox input {
  margin-top: 3px;
}

.guest-checkbox a {
  color: #ffffff;
}


@media (max-width: 1200px) and (min-width: 901px) and (orientation: portrait) {
  .guest-home {
    grid-template-columns: 1.02fr 0.98fr;
    min-height: 100vh;
    gap: 0;
    overflow: hidden;
  }

  .guest-left {
    height: 100vh;
    overflow: hidden;
    padding: 28px 22px 16px 24px;
    border-right: 1px solid rgba(255,255,255,0.08);
  }

  .guest-right {
    height: 100vh;
    padding: 28px 22px 18px;
    justify-content: flex-start;
    gap: 14px;
    background: rgba(17, 22, 49, 0.24);
  }

  .guest-panel-main,
  .guest-panel-alt {
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 12px;
  }

  .guest-copy-wrap {
    max-width: 100%;
  }

  .guest-title {
    font-size: 50px;
    line-height: 0.98;
  }

  .guest-subtitle {
    margin-top: 14px;
    font-size: 18px;
    line-height: 1.4;
    max-width: 100%;
  }

  .guest-chips {
    margin-top: 14px;
    gap: 10px;
  }

  .guest-chips span,
  .guest-chip-btn {
    height: 42px;
    padding: 0 16px;
    font-size: 15px;
  }

  .guest-visual-card {
    margin-top: 18px;
    max-width: 100%;
    padding: 18px;
  }

  .guest-post-image {
    height: 190px;
  }

  .guest-login-panel {
    max-width: 100%;
  }

  .guest-brand-lockup {
    margin-bottom: 24px;
  }

  .guest-form {
    gap: 0;
  }

  .guest-input {
    margin-bottom: 18px;
  }

  .guest-forgot {
    margin: 16px 0 6px;
  }

  .guest-divider {
    margin: 14px 0 6px;
  }

  .guest-btn-secondary {
    margin-top: 14px;
  }

  .guest-footer {
    margin-top: 14px;
    padding-top: 14px;
    gap: 18px;
  }
}

.guest-chip-btn {
  display: inline-flex;
  align-items: center;
  height: 46px;
  padding: 0 18px;
  border-radius: 14px;
  background: rgba(190, 151, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text-soft);
  font-size: 16px;
  backdrop-filter: blur(8px);
  cursor: pointer;
}

.guest-chip-btn:hover {
  background: rgba(190, 151, 255, 0.22);
  color: #ffffff;
}





.guest-home-auth .guest-left,
.guest-home-auth .guest-right {
  align-self: stretch;
}

.guest-auth-head {
  margin-bottom: 18px;
}

.guest-auth-kicker {
  color: var(--guest-text-soft, #7a86a8);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.guest-auth-title {
  margin: 8px 0 6px;
  font-size: 32px;
  line-height: 1.04;
  font-weight: 900;
  color: var(--guest-text-strong, #20294a);
  letter-spacing: -0.03em;
}

.guest-auth-copy {
  margin: 0;
  color: var(--guest-text-soft, #7a86a8);
  font-size: 14px;
  line-height: 1.6;
}

.guest-auth-form {
  margin-top: 10px;
}

.guest-auth-info-card {
  padding: 18px;
}

.guest-auth-info-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.guest-auth-info-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 16px;
  border-radius: 20px;
  background: rgba(255,255,255,0.58);
  border: 1px solid rgba(83, 98, 170, 0.08);
}

.guest-auth-info-mark {
  width: 28px;
  height: 28px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(111,97,246,0.18), rgba(145,186,255,0.22));
  color: #20294a;
  font-weight: 900;
  flex: 0 0 auto;
}

.guest-auth-info-title {
  color: #20294a;
  font-size: 14px;
  font-weight: 900;
  margin-bottom: 3px;
}

.guest-auth-info-copy {
  color: #7382ab;
  font-size: 13px;
  line-height: 1.5;
}

.guest-auth-return-note {
  margin-top: 14px;
  color: #96a2c3;
  font-size: 12px;
}

.guest-auth-check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 6px 0 2px;
  color: #7382ab;
  font-size: 13px;
  line-height: 1.5;
}

.guest-auth-check input {
  margin-top: 3px;
}

.guest-chip-btn.is-static {
  cursor: default;
}

@media (max-width: 900px) {
  .guest-auth-title {
    font-size: 28px;
  }
}


.guest-auth-chips .guest-chip-btn.is-active {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.20);
}

.guest-auth-info-card {
  padding: 18px;
  min-height: 170px;
  display: flex;
  align-items: stretch;
}

.guest-auth-info-content {
  display: none;
  width: 100%;
}

.guest-auth-info-content.is-active {
  display: block;
}

.guest-auth-info-inner {
  width: 100%;
}

.guest-auth-info-row {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
}

.guest-auth-info-mark {
  width: 28px;
  height: 28px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  align-self: center;
  background: linear-gradient(135deg, rgba(111,97,246,0.18), rgba(145,186,255,0.22));
  color: #ffffff;
  font-weight: 900;
  font-size: 14px;
  line-height: 1;
  margin-top: 0;
}

.guest-auth-info-title {
  color: #ffffff;
  font-size: 15px;
  font-weight: 900;
  margin-bottom: 5px;
}

.guest-auth-info-copy {
  color: rgba(255,255,255,0.86);
  font-size: 14px;
  line-height: 1.6;
}

.guest-btn-ghost {
  margin-top: 12px;
  text-align: center;
}

.guest-btn-ghost:hover {
  background: rgba(255,255,255,0.08);
}


.guest-chip-content-wrap {
  margin: 14px 0 18px;
}

.guest-chip-content {
  display: none;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.guest-chip-content.is-active {
  display: block;
}

.guest-chip-content h3 {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 900;
  color: #ffffff;
}

.guest-chip-content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.6;
}

.guest-chip-content .guest-support-actions {
  margin-top: 14px;
}
.guest-chip-content.is-active {
  display: block;
}


.guest-chip-content-wrap {
  margin: 14px 0 18px;
}

.guest-chip-content {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.guest-chip-content h3 {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 900;
  color: #ffffff;
}

.guest-chip-content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.6;
}