body.page-inner { padding-top: 84px; }

.flash-stack {
  position: fixed;
  z-index: 250;
  top: 96px;
  right: 20px;
  width: min(390px, calc(100% - 40px));
  display: grid;
  gap: 8px;
}
.flash {
  padding: 14px 16px;
  border: 1px solid var(--line-strong);
  background: #101010;
  color: #d9d9d9;
  font-size: 12px;
  line-height: 1.5;
}
.flash-success { border-left: 3px solid #3fa66a; }
.flash-error { border-left: 3px solid var(--red); }
.flash-info { border-left: 3px solid #777; }

.inner-main {
  min-height: calc(100vh - 84px);
  padding: clamp(70px, 8vw, 120px) 0;
}
.page-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .68fr);
  gap: clamp(50px, 9vw, 130px);
  align-items: start;
}
.page-title {
  max-width: 900px;
  margin: 18px 0 0;
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 710;
  line-height: .9;
  letter-spacing: -.07em;
  text-transform: uppercase;
}
.page-title em { color: var(--red); font-style: normal; }
.page-copy {
  max-width: 620px;
  margin: 28px 0 0;
  color: #858585;
  font-size: 14px;
  line-height: 1.75;
}
.panel {
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid var(--line-strong);
  background: #0d0d0d;
}
.panel-title {
  margin: 0 0 24px;
  font-size: 28px;
  font-weight: 650;
  letter-spacing: -.045em;
}
.form-grid { display: grid; gap: 16px; }
.field { display: grid; gap: 8px; }
.field label {
  color: #8b8b8b;
  font-size: 9px;
  font-weight: 720;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.field input,
.field select {
  width: 100%;
  height: 50px;
  padding: 0 15px;
  border: 1px solid var(--line);
  outline: 0;
  color: white;
  background: #090909;
  font-size: 13px;
  transition: border-color .2s ease;
}
.field input:focus,
.field select:focus { border-color: var(--line-strong); }
.field select { cursor: pointer; appearance: auto; }
.form-note { margin: 17px 0 0; color: #6f6f6f; font-size: 11px; line-height: 1.6; }
.form-note a { color: white; border-bottom: 1px solid var(--red); }

.account-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 42px;
}
.stat-card {
  min-height: 145px;
  padding: 22px;
  border: 1px solid var(--line);
  background: #0c0c0c;
}
.stat-card span {
  display: block;
  color: #707070;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.stat-card strong {
  display: block;
  margin-top: 25px;
  font-size: 25px;
  font-weight: 620;
  letter-spacing: -.04em;
}
.dashboard-section { margin-top: 54px; }
.dashboard-head { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin-bottom: 18px; }
.dashboard-head h2 { margin: 0; font-size: 30px; font-weight: 620; letter-spacing: -.045em; }
.table-wrap { overflow-x: auto; border-top: 1px solid var(--line-strong); }
.data-table { width: 100%; border-collapse: collapse; min-width: 680px; }
.data-table th, .data-table td { padding: 18px 12px; border-bottom: 1px solid var(--line); text-align: left; }
.data-table th { color: #6d6d6d; font-size: 9px; letter-spacing: .1em; text-transform: uppercase; }
.data-table td { color: #c8c8c8; font-size: 12px; }
.status-badge { display: inline-flex; align-items: center; gap: 7px; }
.status-badge::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--red); }
.credentials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 24px 0;
  border: 1px solid var(--line);
}
.credentials-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-width: 0;
  padding: 18px;
}
.credentials-item + .credentials-item { border-left: 1px solid var(--line); }
.credentials-value { min-width: 0; }
.credentials-value span { display: block; color: #666; font-size: 8px; letter-spacing: .1em; text-transform: uppercase; }
.credentials-value code {
  display: block;
  margin-top: 9px;
  color: white;
  font-family: Consolas, monospace;
  font-size: 13px;
  line-height: 1.35;
  overflow-wrap: anywhere;
  user-select: all;
}
.legal-content { max-width: 860px; }
.legal-content h2 { margin: 45px 0 14px; font-size: 25px; font-weight: 620; }
.legal-content p { color: #8b8b8b; font-size: 14px; line-height: 1.75; }
.empty-state { padding: 35px 0; color: #777; border-top: 1px solid var(--line); font-size: 13px; }
.inline-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }

@media (max-width: 850px) {
  .page-grid { grid-template-columns: 1fr; }
  .account-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .credentials { grid-template-columns: 1fr; }
  .credentials-item + .credentials-item { border-left: 0; border-top: 1px solid var(--line); }
}

.catalog-page { min-height: calc(100vh - 84px); }
.catalog-page-hero {
  padding: clamp(80px, 9vw, 140px) 0 clamp(54px, 7vw, 90px);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 78% 20%, rgba(226,13,24,.17), transparent 27%),
    #090909;
}
.catalog-page-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr);
  gap: clamp(40px, 8vw, 120px);
  align-items: end;
}
.catalog-page-heading .page-copy { margin-bottom: 8px; }
.catalog-page-section { padding-top: clamp(65px, 8vw, 110px); }

@media (max-width: 850px) {
  .catalog-page-heading { grid-template-columns: 1fr; gap: 10px; }
}

/* PLAN PAGE */
.plan-page { min-height: calc(100vh - 84px); }
.plan-page-hero {
  padding: clamp(82px, 10vw, 150px) 0 clamp(60px, 7vw, 100px);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 78% 18%, rgba(226,13,24,.18), transparent 30%),
    #090909;
}
.plan-page-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, .75fr);
  gap: clamp(42px, 8vw, 120px);
  align-items: end;
}
.plan-page-heading .page-copy { margin-bottom: 8px; }
.plan-page-section { padding-top: clamp(66px, 8vw, 112px); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.pricing-card {
  position: relative;
  min-height: 590px;
  display: flex;
  flex-direction: column;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid var(--line);
  background: #0b0b0b;
}
.pricing-card-featured { border-color: rgba(226,13,24,.72); }
.pricing-card-featured::before {
  content: "";
  position: absolute;
  left: -1px;
  top: -1px;
  width: 74px;
  height: 2px;
  background: var(--red);
}
.pricing-top { min-height: 74px; display: flex; align-items: flex-start; justify-content: space-between; gap: 14px; }
.pricing-index { display: block; color: var(--red); font-size: 9px; font-weight: 750; letter-spacing: .13em; }
.pricing-top h2 { margin: 10px 0 0; font-size: 34px; font-weight: 660; letter-spacing: -.055em; }
.pricing-label {
  display: inline-flex;
  min-height: 25px;
  align-items: center;
  padding: 0 9px;
  border: 1px solid rgba(226,13,24,.55);
  color: #ddd;
  font-size: 8px;
  font-weight: 740;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.pricing-label.current { color: white; background: var(--red); border-color: var(--red); }
.pricing-description { min-height: 78px; margin: 24px 0 0; color: #7e7e7e; font-size: 12px; line-height: 1.7; }
.pricing-price { display: flex; align-items: baseline; gap: 9px; margin-top: 27px; padding-bottom: 27px; border-bottom: 1px solid var(--line); }
.pricing-price strong { font-size: 60px; font-weight: 690; line-height: .9; letter-spacing: -.07em; }
.pricing-price span { color: #777; font-size: 10px; }
.pricing-features { display: grid; gap: 15px; padding: 25px 0 30px; margin: 0; list-style: none; }
.pricing-features li { display: flex; align-items: flex-start; gap: 11px; color: #b7b7b7; font-size: 12px; line-height: 1.55; }
.pricing-features svg { width: 14px; height: 14px; margin-top: 2px; flex: 0 0 auto; color: var(--red); }
.pricing-card > form, .pricing-card > .button { margin-top: auto; }
.pricing-card form .button { width: 100%; }
.pricing-card > .open-plan-modal,
.pricing-card > .pricing-disabled-button { width: 100%; margin-top: auto; }
.pricing-card-locked { opacity: .62; }
.pricing-disabled-button { cursor: not-allowed; transform: none !important; }
.pricing-current-button { width: 100%; cursor: default; }
.plan-clarifications {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 54px;
  border-top: 1px solid var(--line-strong);
}
.plan-clarifications > div { padding: 26px 28px 0 0; }
.plan-clarifications span { color: #d9d9d9; font-size: 9px; font-weight: 720; letter-spacing: .11em; text-transform: uppercase; }
.plan-clarifications p { margin: 13px 0 0; color: #737373; font-size: 11px; line-height: 1.7; }

/* LEGAL PAGES */
.legal-page { min-height: calc(100vh - 84px); }
.legal-hero {
  padding: clamp(78px, 9vw, 138px) 0 clamp(58px, 7vw, 92px);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(8,8,8,.98), rgba(8,8,8,.78)),
    radial-gradient(circle at 85% 20%, rgba(226,13,24,.20), transparent 30%);
}
.legal-meta { display: flex; flex-wrap: wrap; gap: 10px 28px; margin-top: 34px; color: #686868; font-size: 9px; font-weight: 680; letter-spacing: .1em; text-transform: uppercase; }
.legal-layout {
  display: grid;
  grid-template-columns: minmax(210px, .42fr) minmax(0, 1.58fr);
  gap: clamp(45px, 8vw, 120px);
  padding-top: clamp(65px, 8vw, 110px);
  padding-bottom: clamp(85px, 10vw, 150px);
  align-items: start;
}
.legal-toc {
  position: sticky;
  top: 30px;
  display: grid;
  gap: 12px;
  padding-top: 17px;
  border-top: 1px solid var(--line-strong);
}
.legal-toc > span { margin-bottom: 7px; color: #d7d7d7; font-size: 9px; font-weight: 720; letter-spacing: .12em; text-transform: uppercase; }
.legal-toc a { color: #696969; font-size: 10px; line-height: 1.45; transition: color .2s ease; }
.legal-toc a:hover { color: white; }
.legal-document { max-width: 900px; }
.legal-intro {
  padding: 25px 27px;
  border: 1px solid var(--line-strong);
  border-left: 2px solid var(--red);
  background: #0b0b0b;
  color: #b4b4b4;
  font-size: 14px;
  line-height: 1.75;
}
.legal-document section { scroll-margin-top: 30px; }
.legal-document h2 { margin: 58px 0 20px; font-size: clamp(25px, 3vw, 36px); font-weight: 650; letter-spacing: -.045em; }
.legal-document p { margin: 0 0 15px; color: #888; font-size: 13px; line-height: 1.82; }
.legal-document strong { color: #d5d5d5; font-weight: 610; }
.legal-document a { color: #ddd; border-bottom: 1px solid var(--red); }

/* SUPPORT */
.support-page .page-grid { align-items: center; }
.support-list { display: grid; gap: 0; padding: 0; margin: 0; list-style: none; border-top: 1px solid var(--line); }
.support-list li { display: grid; grid-template-columns: 42px 1fr; gap: 13px; padding: 17px 0; border-bottom: 1px solid var(--line); }
.support-list span { color: var(--red); font-size: 9px; font-weight: 750; letter-spacing: .1em; }
.support-list p { margin: 0; color: #989898; font-size: 12px; line-height: 1.65; }
.support-contact { display: grid; gap: 8px; margin-top: 25px; }
.support-contact span { color: #666; font-size: 8px; font-weight: 720; letter-spacing: .1em; text-transform: uppercase; }
.support-contact a { color: white; font-size: 14px; }

@media (max-width: 980px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card { min-height: 0; }
  .pricing-description { min-height: 0; }
  .plan-clarifications { grid-template-columns: 1fr; }
  .legal-layout { grid-template-columns: 1fr; }
  .legal-toc { position: static; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .legal-toc > span { grid-column: 1 / -1; }
}

@media (max-width: 850px) {
  .plan-page-heading { grid-template-columns: 1fr; gap: 12px; }
}

@media (max-width: 560px) {
  .legal-toc { grid-template-columns: 1fr; }
  .legal-toc > span { grid-column: auto; }
  .legal-intro { padding: 21px; font-size: 13px; }
}


/* PLAN PURCHASE MODAL */
.plan-modal-card { width: min(100%, 650px); max-height: calc(100vh - 40px); overflow-y: auto; }
.plan-modal-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-top: 14px; }
.plan-modal-heading h3 { margin: 0; }
.plan-modal-price { display: flex; align-items: baseline; gap: 7px; flex: 0 0 auto; }
.plan-modal-price strong { color: var(--red); font-size: 38px; font-weight: 690; letter-spacing: -.06em; }
.plan-modal-price span { color: #777; font-size: 9px; text-transform: uppercase; }
.plan-purchase-modal .modal-copy { margin-top: 18px; margin-bottom: 20px; }
.plan-modal-features { display: grid; gap: 11px; padding: 18px 0; margin: 0; border-block: 1px solid var(--line); list-style: none; }
.plan-modal-features li { display: grid; grid-template-columns: 18px 1fr; gap: 9px; color: #b9b9b9; font-size: 12px; line-height: 1.55; }
.plan-modal-features li > span:first-child { color: var(--red); font-weight: 800; }
.plan-agreements { display: grid; gap: 10px; margin: 20px 0; }
.plan-agreement { display: grid; grid-template-columns: 17px 1fr; gap: 11px; align-items: start; color: #8c8c8c; font-size: 11px; line-height: 1.55; cursor: pointer; }
.plan-agreement input { width: 15px; height: 15px; margin: 1px 0 0; accent-color: var(--red); }
.plan-agreement a { color: #d8d8d8; border-bottom: 1px solid var(--red); }
.plan-pay-button:disabled { opacity: .38; cursor: not-allowed; transform: none; }

@media (max-width: 560px) {
  .plan-modal-heading { align-items: flex-start; flex-direction: column; gap: 10px; }
}

/* TASKS PAGE */
.tasks-page { min-height: calc(100vh - 84px); }
.tasks-hero {
  padding: clamp(90px, 10vw, 150px) 0 clamp(62px, 8vw, 105px);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 82% 18%, rgba(226,13,24,.18), transparent 30%),
    #090909;
}
.tasks-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr);
  gap: clamp(40px, 8vw, 120px);
  align-items: end;
}
.tasks-heading .page-copy { margin-bottom: 9px; }
.tasks-section { padding-top: clamp(64px, 8vw, 108px); }
.tasks-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 42px;
  border: 1px solid var(--line);
  background: var(--line);
  gap: 1px;
}
.tasks-summary > div {
  min-height: 118px;
  display: grid;
  align-content: center;
  padding: 23px;
  background: #0b0b0b;
}
.tasks-summary span,
.tasks-summary small {
  color: #6e6e6e;
  font-size: 8px;
  font-weight: 720;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.tasks-summary strong {
  margin: 9px 0 6px;
  font-size: 28px;
  font-weight: 640;
  letter-spacing: -.045em;
}
.tasks-list { border-top: 1px solid var(--line-strong); }
.task-card {
  min-height: 145px;
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr) auto;
  align-items: center;
  gap: 26px;
  padding: 25px 0;
  border-bottom: 1px solid var(--line);
}
.task-index { color: var(--red); font-size: 9px; font-weight: 760; letter-spacing: .13em; }
.task-copy > span { color: #6e6e6e; font-size: 8px; font-weight: 720; letter-spacing: .11em; text-transform: uppercase; }
.task-copy h2 { margin: 10px 0 8px; font-size: 23px; font-weight: 610; letter-spacing: -.035em; }
.task-copy p { max-width: 680px; margin: 0; color: #777; font-size: 12px; line-height: 1.65; }
.task-state {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border: 1px solid var(--line-strong);
  color: #7c7c7c;
  font-size: 8px;
  font-weight: 730;
  letter-spacing: .1em;
  text-transform: uppercase;
}
@media (max-width: 850px) {
  .tasks-heading { grid-template-columns: 1fr; gap: 12px; }
  .tasks-summary { grid-template-columns: 1fr; }
  .task-card { grid-template-columns: 42px minmax(0, 1fr); }
  .task-state { grid-column: 2; width: max-content; }
}
@media (max-width: 560px) {
  .tasks-page { min-height: calc(100vh - 70px); }
  .task-card { grid-template-columns: 1fr; gap: 12px; }
  .task-state { grid-column: auto; }
}


/* PAYMENT STATUS */
.payment-status-page {
  min-height: calc(100vh - 84px);
  display: grid;
  align-items: center;
  padding: clamp(70px, 9vw, 130px) 0;
  background:
    radial-gradient(circle at 78% 20%, rgba(226,13,24,.17), transparent 30%),
    #080808;
}
.payment-status-shell { display: grid; place-items: center; }
.payment-status-card {
  width: min(100%, 760px);
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid var(--line-strong);
  background: #0b0b0b;
}
.payment-status-indicator {
  width: 12px;
  height: 12px;
  margin-top: 34px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 8px rgba(226,13,24,.12);
}
.payment-status-card[data-payment-status="PENDING"] .payment-status-indicator,
.payment-status-card[data-payment-status="CREATING"] .payment-status-indicator {
  animation: paymentPulse 1.4s ease-in-out infinite;
}
.payment-status-card[data-payment-status="CONFIRMED"] .payment-status-indicator {
  background: #45b86b;
  box-shadow: 0 0 0 8px rgba(69,184,107,.12);
}
.payment-status-card[data-payment-status="CANCELED"] .payment-status-indicator,
.payment-status-card[data-payment-status="FAILED"] .payment-status-indicator,
.payment-status-card[data-payment-status="EXPIRED"] .payment-status-indicator,
.payment-status-card[data-payment-status="CHARGEBACKED"] .payment-status-indicator {
  background: #777;
  box-shadow: 0 0 0 8px rgba(255,255,255,.06);
}
.payment-status-card h1 {
  margin: 23px 0 0;
  font-size: clamp(42px, 7vw, 82px);
  font-weight: 700;
  line-height: .92;
  letter-spacing: -.065em;
  text-transform: uppercase;
}
.payment-status-card > p {
  max-width: 620px;
  margin: 25px 0 0;
  color: #8a8a8a;
  font-size: 14px;
  line-height: 1.7;
}
.payment-status-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 34px;
  border: 1px solid var(--line);
}
.payment-status-meta > div { padding: 17px; }
.payment-status-meta > div + div { border-left: 1px solid var(--line); }
.payment-status-meta span {
  display: block;
  color: #666;
  font-size: 8px;
  font-weight: 720;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.payment-status-meta strong { display: block; margin-top: 8px; font-size: 14px; font-weight: 620; }
@keyframes paymentPulse { 50% { transform: scale(.72); opacity: .52; } }

@media (max-width: 760px) {
  body.page-inner { padding-top: 70px; }
  .payment-status-page { min-height: calc(100vh - 70px); }
}
@media (max-width: 560px) {
  .payment-status-meta { grid-template-columns: 1fr; }
  .payment-status-meta > div + div { border-left: 0; border-top: 1px solid var(--line); }
}

/* GAME SESSION */
.session-page { padding-top: clamp(54px, 7vw, 100px); }
.session-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(330px, .92fr);
  gap: clamp(34px, 7vw, 105px);
  align-items: start;
}
.session-main-copy { min-width: 0; }
.session-state-card {
  max-width: 680px;
  margin-top: 30px;
  padding: 23px;
  border: 1px solid var(--line-strong);
  background: #0b0b0b;
}
.session-state-card.waiting { border-left: 2px solid #777; }
.session-state-card.waiting.error { border-left-color: var(--red); }
.session-state-card.live { border-left: 2px solid var(--red); }
.session-finish-lock {
  max-width: 680px;
  margin-top: 12px;
  padding: 12px 14px;
  border: 1px solid rgba(226, 13, 24, .32);
  background: rgba(226, 13, 24, .07);
  color: #d7d7d7;
  font-size: 11px;
  line-height: 1.55;
}
.session-state-card span {
  display: block;
  color: #6f6f6f;
  font-size: 8px;
  font-weight: 740;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.session-state-card strong {
  display: block;
  margin-top: 12px;
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 640;
  letter-spacing: -.045em;
  transition: opacity .18s ease;
}
.session-state-card.waiting.error strong { color: #fff; }
.session-state-card p {
  margin: 10px 0 0;
  color: #747474;
  font-size: 11px;
  line-height: 1.6;
}
.session-access-panel { position: sticky; top: 112px; }
.session-primary-action { width: 100%; margin: 0 0 22px; }
.session-reminders {
  display: grid;
  gap: 0;
  margin-top: 24px;
  border-top: 1px solid var(--line);
}
.session-reminders p {
  margin: 0;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  color: #777;
  font-size: 11px;
  line-height: 1.65;
}
.session-reminders strong { color: #cfcfcf; font-weight: 620; }
.session-page .inline-actions form { margin: 0; }
.session-end-card { width: min(100%, 620px); }
.copy-button-wrap { position: relative; flex: 0 0 auto; }
.copy-button {
  position: relative;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 9px;
  background: rgba(32, 32, 32, 0.96);
  color: #d8d8d8;
  transition: border-color .16s ease, background .16s ease, transform .16s ease;
}
.copy-button:hover,
.copy-button:focus-visible {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(42, 42, 42, 0.98);
}
.copy-button:disabled {
  opacity: .5;
  cursor: default;
}
.copy-button svg,
.access-code-copy-button svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.copy-button::after {
  content: attr(data-tooltip);
  position: absolute;
  left: 50%;
  bottom: calc(100% + 10px);
  transform: translate(-50%, 6px);
  padding: 10px 13px;
  border-radius: 9px;
  background: rgba(45, 45, 45, 0.98);
  color: #f0f0f0;
  font-size: 11px;
  font-weight: 620;
  line-height: 1;
  white-space: nowrap;
  letter-spacing: -.01em;
  opacity: 0;
  pointer-events: none;
  transition: opacity .14s ease, transform .14s ease;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.34);
}
.copy-button:hover::after,
.copy-button:focus-visible::after,
.copy-button.is-copied::after {
  opacity: 1;
  transform: translate(-50%, 0);
}
.status-good::before { background: #48ad6b; }
.status-live::before { background: var(--red); box-shadow: 0 0 0 4px rgba(226,13,24,.11); }
.status-warn::before { background: #d6a13c; }

@media (max-width: 900px) {
  .session-layout { grid-template-columns: 1fr; }
  .session-access-panel { position: static; }
}
@media (max-width: 560px) {
  .session-page .inline-actions { display: grid; }
  .session-page .inline-actions form,
  .session-page .inline-actions button { width: 100%; }
  .copy-button::after {
    max-width: calc(100vw - 48px);
    white-space: normal;
    text-align: center;
  }
}

.flash-link {
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
  margin-left: 8px;
  white-space: nowrap;
}
.flash-link:hover { border-bottom-color: currentColor; }


.session-code-button {
  width: 100%;
  margin: 0 0 16px;
}
.access-code-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 22px;
  background: rgba(0, 0, 0, .72);
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s ease;
}
.access-code-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}
.access-code-dialog {
  width: min(100%, 430px);
  position: relative;
  padding: 28px;
  border: 1px solid var(--line-strong);
  background: #080808;
  box-shadow: 0 24px 80px rgba(0,0,0,.54);
}
.access-code-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  background: transparent;
  color: #aaa;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}
.access-code-dialog h2 {
  margin: 10px 0 0;
  font-size: 30px;
  letter-spacing: -.04em;
}
.access-code-dialog p {
  min-height: 36px;
  margin: 12px 0 20px;
  color: #777;
  font-size: 12px;
  line-height: 1.55;
}
.access-code-dialog p[data-mode="error"] { color: #fff; }
.access-code-dialog p[data-mode="ready"] { color: #cfcfcf; }
.access-code-cells {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin: 22px 0 16px;
}
.access-code-cells span {
  display: grid;
  place-items: center;
  height: 58px;
  border: 1px solid var(--line-strong);
  background: #0d0d0d;
  color: #555;
  font-size: 25px;
  font-weight: 700;
  letter-spacing: -.03em;
  transition: border-color .15s ease, color .15s ease, transform .15s ease;
}
.access-code-cells span.filled {
  border-color: rgba(255,255,255,.42);
  color: #fff;
  transform: translateY(-1px);
}
.access-code-copy-row {
  margin: 0 0 10px;
}
.access-code-copy-button {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.access-code-copy-button span {
  font-size: 12px;
  font-weight: 720;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.access-code-copy-button:disabled {
  opacity: .55;
  cursor: default;
}
.access-code-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

/* SUPPORT CENTER */
.support-center-page { padding-bottom: clamp(80px, 9vw, 130px); }
.support-layout {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(430px, 1.18fr);
  gap: clamp(42px, 8vw, 120px);
  align-items: start;
}
.support-intro { position: sticky; top: 112px; }
.support-intro .page-title { font-size: clamp(52px, 7vw, 88px); }
.support-safety-note {
  max-width: 570px;
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 16px;
  margin-top: 34px;
  padding: 18px 0;
  border-block: 1px solid var(--line);
}
.support-safety-note span {
  color: var(--red);
  font-size: 8px;
  font-weight: 760;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.support-safety-note p { margin: 0; color: #777; font-size: 11px; line-height: 1.65; }
.support-form-panel { padding: clamp(26px, 4vw, 40px); }

.site-select {
  position: relative;
  width: 100%;
}
.site-select-native {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: 0 !important;
  padding: 0 !important;
  opacity: 0;
  pointer-events: none;
}
.site-select-trigger {
  width: 100%;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 16px 0 17px;
  border: 1px solid var(--line);
  outline: 0;
  color: #e7e7e7;
  background: #090909;
  font-size: 13px;
  text-align: left;
  cursor: pointer;
  transition: border-color .18s ease, background .18s ease;
}
.site-select-trigger:hover { border-color: var(--line-strong); }
.site-select-trigger:focus-visible,
.site-select.is-open .site-select-trigger {
  border-color: rgba(255,255,255,.35);
  background: #0b0b0b;
}
.site-select-trigger svg {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  fill: none;
  stroke: #8b8b8b;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform .18s ease, stroke .18s ease;
}
.site-select.is-open .site-select-trigger svg {
  transform: rotate(180deg);
  stroke: #fff;
}
.site-select-menu {
  position: absolute;
  z-index: 80;
  top: calc(100% + 7px);
  left: 0;
  right: 0;
  max-height: 272px;
  overflow-y: auto;
  padding: 6px;
  border: 1px solid var(--line-strong);
  background: rgba(9,9,9,.985);
  box-shadow: 0 22px 70px rgba(0,0,0,.52);
  scrollbar-width: thin;
  scrollbar-color: #3a3a3a transparent;
}
.site-select-menu[hidden] { display: none; }
.site-select-menu::-webkit-scrollbar { width: 5px; }
.site-select-menu::-webkit-scrollbar-track { background: transparent; }
.site-select-menu::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: #343434;
}
.site-select-option {
  position: relative;
  width: 100%;
  min-height: 43px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 0 12px 0 14px;
  border: 0;
  outline: 0;
  color: #9a9a9a;
  background: transparent;
  font-size: 12px;
  text-align: left;
  cursor: pointer;
  transition: color .14s ease, background .14s ease;
}
.site-select-option::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  bottom: 10px;
  width: 2px;
  background: transparent;
}
.site-select-option:hover,
.site-select-option:focus-visible {
  color: #fff;
  background: #141414;
}
.site-select-option.is-selected {
  color: #fff;
  background: rgba(226,13,24,.055);
}
.site-select-option.is-selected::before { background: var(--red); }
.site-select-option-mark {
  width: 5px;
  height: 5px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: transparent;
}
.site-select-option.is-selected .site-select-option-mark {
  background: var(--red);
  box-shadow: 0 0 0 4px rgba(226,13,24,.09);
}
.site-select-error {
  display: none;
  margin-top: 8px;
  color: #b9b9b9;
  font-size: 10px;
}
.site-select.is-invalid .site-select-trigger { border-color: rgba(226,13,24,.72); }
.site-select.is-invalid .site-select-error { display: block; }
.support-panel-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}
.support-panel-heading span,
.support-panel-heading small {
  color: #686868;
  font-size: 8px;
  font-weight: 720;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.support-panel-heading h2 { margin: 10px 0 0; font-size: 31px; font-weight: 650; letter-spacing: -.045em; }
.field textarea {
  width: 100%;
  min-height: 130px;
  resize: vertical;
  padding: 14px 15px;
  border: 1px solid var(--line);
  outline: 0;
  color: white;
  background: #090909;
  font: inherit;
  font-size: 13px;
  line-height: 1.65;
  transition: border-color .2s ease;
}
.field textarea:focus { border-color: var(--line-strong); }
.support-form .button { width: 100%; }
.support-login-state { display: grid; gap: 12px; }
.support-login-state h2 { margin: 12px 0 0; font-size: 35px; font-weight: 650; letter-spacing: -.05em; }
.support-login-state p { margin: 0 0 14px; color: #777; font-size: 12px; line-height: 1.7; }
.support-login-state .button { width: 100%; }
.support-history-section { padding-top: clamp(68px, 8vw, 112px); }
.support-history-head { margin-bottom: 22px; }
.support-history-head h2 { margin-top: 10px; }
.support-ticket-list { border-top: 1px solid var(--line-strong); }
.support-ticket-card {
  min-height: 120px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  padding: 23px 0;
  border-bottom: 1px solid var(--line);
  transition: padding-left .18s ease, border-color .18s ease;
}
.support-ticket-card:hover { padding-left: 10px; border-bottom-color: var(--line-strong); }
.support-ticket-card.has-unread { border-left: 2px solid var(--red); padding-left: 18px; }
.support-ticket-meta { display: flex; flex-wrap: wrap; gap: 12px; }
.support-ticket-meta span {
  color: #666;
  font-size: 8px;
  font-weight: 720;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.support-ticket-main h3 { margin: 12px 0 8px; color: #eee; font-size: 20px; font-weight: 610; letter-spacing: -.03em; }
.support-ticket-main p { margin: 0; color: #666; font-size: 10px; }
.support-ticket-state { display: grid; justify-items: end; gap: 10px; }
.support-status,
.support-unread-dot {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 10px;
  border: 1px solid var(--line-strong);
  color: #999;
  font-size: 8px;
  font-weight: 730;
  letter-spacing: .09em;
  text-transform: uppercase;
  white-space: nowrap;
}
.support-unread-dot { border-color: rgba(226,13,24,.55); color: #fff; background: rgba(226,13,24,.09); }
.support-status-answered { color: #fff; }
.support-status-closed { color: #5f5f5f; }
.support-empty-state { padding: 36px 0; }

.support-thread-layout {
  display: grid;
  grid-template-columns: minmax(270px, .65fr) minmax(0, 1.35fr);
  gap: clamp(38px, 7vw, 100px);
  align-items: start;
}
.support-thread-sidebar { position: sticky; top: 112px; }
.support-back-link { display: inline-block; margin-bottom: 30px; color: #777; font-size: 10px; }
.support-back-link:hover { color: #fff; }
.support-thread-sidebar h1 { margin: 18px 0 28px; font-size: clamp(34px, 4vw, 56px); font-weight: 650; line-height: .98; letter-spacing: -.055em; }
.support-thread-sidebar > p { margin: 24px 0 0; color: #6f6f6f; font-size: 11px; line-height: 1.7; }
.support-thread-facts { border-top: 1px solid var(--line); }
.support-thread-facts > div { padding: 16px 0; border-bottom: 1px solid var(--line); }
.support-thread-facts span { display: block; color: #666; font-size: 8px; font-weight: 720; letter-spacing: .1em; text-transform: uppercase; }
.support-thread-facts strong { display: block; margin-top: 7px; font-size: 12px; font-weight: 600; }
.support-thread-panel { min-width: 0; border: 1px solid var(--line-strong); background: #0a0a0a; }
.support-messages { display: grid; gap: 1px; padding: 22px; background: var(--line); }
.support-message { padding: 21px; background: #0b0b0b; }
.support-message-admin { border-left: 2px solid var(--red); background: #0e0b0b; }
.support-message-head { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 13px; }
.support-message-head strong { font-size: 11px; font-weight: 650; }
.support-message-head span { color: #606060; font-size: 8px; letter-spacing: .07em; text-transform: uppercase; }
.support-message p { margin: 0; color: #aaa; font-size: 12px; line-height: 1.75; white-space: pre-wrap; overflow-wrap: anywhere; }
.support-reply-form { display: grid; gap: 16px; padding: 22px; border-top: 1px solid var(--line-strong); }
.support-reply-form .button { width: 100%; }
.support-closed-note { display: grid; gap: 12px; padding: 28px; border-top: 1px solid var(--line); }
.support-closed-note strong { font-size: 18px; }
.support-closed-note p { margin: 0 0 8px; color: #777; font-size: 11px; line-height: 1.65; }

@media (max-width: 920px) {
  .support-layout,
  .support-thread-layout { grid-template-columns: 1fr; }
  .support-intro,
  .support-thread-sidebar { position: static; }
}
@media (max-width: 620px) {
  .support-ticket-card { grid-template-columns: 1fr; gap: 17px; }
  .support-ticket-state { justify-items: start; grid-auto-flow: column; justify-content: start; }
  .support-message-head { align-items: flex-start; flex-direction: column; gap: 6px; }
  .support-messages { padding: 12px; }
  .support-message { padding: 17px; }
  .support-safety-note { grid-template-columns: 1fr; }
}

/* PROMO CODES */
.flash-warning { border-left: 3px solid #d89a36; }
.field textarea {
  width: 100%;
  min-height: 120px;
  padding: 14px 15px;
  border: 1px solid var(--line);
  outline: 0;
  color: white;
  background: #090909;
  font-size: 13px;
  line-height: 1.55;
  resize: vertical;
  transition: border-color .2s ease;
}
.field textarea:focus { border-color: var(--line-strong); }
.dashboard-head > span {
  color: #696969;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.promo-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, .44fr);
  gap: 12px;
  padding: 18px;
  border: 1px solid var(--line);
  background: radial-gradient(circle at 88% 10%, rgba(226,13,24,.11), transparent 34%), #0b0b0b;
}
.promo-apply-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: end;
}
.promo-apply-form .field { min-width: 0; }
.promo-apply-form .button { min-height: 50px; }
.promo-panel-side {
  padding: 17px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.025);
}
.promo-panel-side span,
.promo-panel-side strong { display: block; }
.promo-panel-side span {
  color: #777;
  font-size: 8px;
  font-weight: 720;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.promo-panel-side strong {
  margin-top: 9px;
  color: white;
  font-size: 25px;
  font-weight: 620;
  letter-spacing: -.04em;
}
.promo-panel-side p {
  margin: 10px 0 0;
  color: #747474;
  font-size: 11px;
  line-height: 1.6;
}
.promo-history {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 10px;
}
.promo-history > div {
  min-width: 0;
  padding: 14px;
  border: 1px solid var(--line);
  background: #0a0a0a;
}
.promo-history code,
.promo-history span,
.promo-history small { display: block; }
.promo-history code { color: #fff; font-family: Consolas, monospace; font-size: 11px; }
.promo-history span { margin-top: 7px; color: #c9c9c9; font-size: 11px; }
.promo-history small { margin-top: 7px; color: #666; font-size: 9px; }
@media (max-width: 820px) {
  .promo-panel,
  .promo-apply-form,
  .promo-history { grid-template-columns: 1fr; }
  .promo-apply-form .button { width: 100%; }
}
