/*
 * Invite Shell Theme
 * Animated terminal invitation UI for meetup/content pages.
 * Scoped to .themed-page.theme-invite-shell.
 */

.themed-page.theme-invite-shell {
  --is-bg: #05070d;
  --is-bg-2: #070b14;
  --is-surface: #0b1020;
  --is-surface-2: #101827;
  --is-surface-3: #151f32;
  --is-border: #26324a;
  --is-border-hot: #35506d;
  --is-text: #d7e2ff;
  --is-muted: #7d8ca8;
  --is-dim: #53617a;
  --is-cyan: #5eead4;
  --is-blue: #7dd3fc;
  --is-green: #8ef58e;
  --is-amber: #facc15;
  --is-rose: #fb7185;
  --is-shadow: rgba(94, 234, 212, 0.18);
  --is-font: 'JetBrains Mono', 'IBM Plex Mono', 'SF Mono', Consolas, monospace;
  background:
    radial-gradient(circle at 18% 6%, rgba(94, 234, 212, 0.14), transparent 28rem),
    radial-gradient(circle at 86% 18%, rgba(125, 211, 252, 0.12), transparent 24rem),
    linear-gradient(135deg, var(--is-bg), var(--is-bg-2) 55%, #03050a);
  color: var(--is-text);
  font-family: var(--is-font);
  min-height: 100vh;
}

.themed-page.theme-invite-shell *,
.themed-page.theme-invite-shell *::before,
.themed-page.theme-invite-shell *::after {
  box-sizing: border-box;
}

body.theme-invite-shell {
  background: #05070d;
}

.theme-invite-shell .tw-content-page,
.theme-invite-shell #main-container,
.theme-invite-shell .bg-slate-50,
.theme-invite-shell .bg-white {
  background: transparent !important;
}

.theme-invite-shell .tw-site-header,
.theme-invite-shell header,
.theme-invite-shell footer {
  background: rgba(5, 7, 13, 0.92) !important;
  border-color: var(--is-border) !important;
  color: var(--is-text) !important;
}

.theme-invite-shell .tw-site-header a,
.theme-invite-shell .tw-site-header button,
.theme-invite-shell footer,
.theme-invite-shell footer a,
.theme-invite-shell [aria-label="Breadcrumb"] a,
.theme-invite-shell [aria-label="Breadcrumb"] span {
  color: var(--is-muted) !important;
}

.theme-invite-shell [aria-label="Breadcrumb"] a:hover,
.theme-invite-shell footer a:hover {
  color: var(--is-cyan) !important;
}

.theme-invite-shell article.prose {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  padding-top: 1rem !important;
}

.theme-invite-shell .invite-shell-window,
.theme-invite-shell .terminal-chrome,
.theme-invite-shell .themed-content {
  width: 100%;
  max-width: 980px;
  margin: 1.5rem auto 3rem;
  border: 1px solid var(--is-border);
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 50%, rgba(0, 0, 0, 0.025) 50%) 0 0 / 100% 4px,
    linear-gradient(180deg, rgba(16, 24, 39, 0.96), rgba(8, 13, 25, 0.98));
  box-shadow:
    0 0 0 1px rgba(94, 234, 212, 0.04),
    0 24px 80px rgba(0, 0, 0, 0.45),
    0 0 56px rgba(94, 234, 212, 0.08);
  overflow: hidden;
  position: relative;
}

.theme-invite-shell .invite-shell-window::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent, rgba(94, 234, 212, 0.06), transparent),
    radial-gradient(circle at 50% 0%, rgba(125, 211, 252, 0.10), transparent 22rem);
  opacity: 0.85;
}

.theme-invite-shell .invite-shell-topbar {
  position: relative;
  z-index: 1;
  min-height: 46px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--is-border);
  background: rgba(5, 7, 13, 0.9);
}

.theme-invite-shell .invite-shell-dots {
  display: flex;
  gap: 0.45rem;
}

.theme-invite-shell .invite-shell-dot {
  width: 0.72rem;
  height: 0.72rem;
  border-radius: 999px;
  display: inline-block;
  box-shadow: 0 0 16px currentColor;
}

.theme-invite-shell .invite-shell-dot--rose { background: var(--is-rose); color: var(--is-rose); }
.theme-invite-shell .invite-shell-dot--amber { background: var(--is-amber); color: var(--is-amber); }
.theme-invite-shell .invite-shell-dot--green { background: var(--is-green); color: var(--is-green); }

.theme-invite-shell .invite-shell-title,
.theme-invite-shell .invite-shell-status {
  color: var(--is-muted);
  font-family: var(--is-font);
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.theme-invite-shell .invite-shell-status {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  justify-self: end;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.68rem;
}

.theme-invite-shell .invite-shell-status-dot {
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 999px;
  background: var(--is-green);
  box-shadow: 0 0 14px var(--is-green);
}

.theme-invite-shell .invite-shell-screen {
  position: relative;
  z-index: 1;
  padding: clamp(1rem, 3vw, 2rem);
}

.theme-invite-shell .invite-shell-boot {
  margin-bottom: clamp(1.25rem, 4vw, 2.25rem);
  padding: clamp(1rem, 3vw, 1.35rem);
  border: 1px solid rgba(94, 234, 212, 0.20);
  background: rgba(5, 7, 13, 0.55);
  box-shadow: inset 0 0 32px rgba(94, 234, 212, 0.035);
}

.theme-invite-shell .invite-shell-line {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  min-height: 1.7rem;
  color: var(--is-text);
  font-family: var(--is-font);
  font-size: clamp(0.82rem, 1.6vw, 0.98rem);
  opacity: 0;
  transform: translateY(0.35rem);
  animation: inviteShellLineIn 420ms ease forwards;
}

.theme-invite-shell .invite-shell-line--delay-1 { animation-delay: 80ms; }
.theme-invite-shell .invite-shell-line--delay-2 { animation-delay: 520ms; }
.theme-invite-shell .invite-shell-line--delay-3 { animation-delay: 960ms; }
.theme-invite-shell .invite-shell-line--delay-4 { animation-delay: 1400ms; }

.theme-invite-shell .invite-shell-line--headline {
  margin-top: 1rem;
  color: var(--is-text);
  font-size: clamp(1.45rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.06em;
  animation-delay: 1900ms;
  text-shadow: 0 0 32px rgba(94, 234, 212, 0.18);
}

.theme-invite-shell .invite-shell-prompt,
.theme-invite-shell .invite-shell-cyan {
  color: var(--is-cyan);
}

.theme-invite-shell .invite-shell-muted {
  color: var(--is-muted);
}

.theme-invite-shell .invite-shell-ok {
  margin-left: auto;
  color: var(--is-green);
}

.theme-invite-shell .invite-shell-cursor {
  width: 0.7ch;
  height: 0.95em;
  display: inline-block;
  background: var(--is-cyan);
  box-shadow: 0 0 18px var(--is-cyan);
  animation: inviteShellCursor 1s steps(2, start) infinite;
}

.theme-invite-shell .invite-shell-rsvp-command {
  margin-bottom: 0.75rem;
  color: var(--is-muted);
  font-family: var(--is-font);
}

.theme-invite-shell .invite-shell-command-label {
  display: inline-flex;
  gap: 0.65rem;
  align-items: center;
  padding: 0.55rem 0.75rem;
  border: 1px solid rgba(94, 234, 212, 0.18);
  background: rgba(94, 234, 212, 0.06);
  color: var(--is-text);
}

.theme-invite-shell .render-meetup-rsvp-here,
.theme-invite-shell .rsvp-panel,
.theme-invite-shell .invite-shell-document,
.theme-invite-shell .show-page-body {
  color: var(--is-text);
  font-family: var(--is-font);
}

.theme-invite-shell .rsvp-card,
.theme-invite-shell .rsvp-panel .bg-white,
.theme-invite-shell .rsvp-panel .bg-slate-50,
.theme-invite-shell .rsvp-panel .bg-slate-50\/70,
.theme-invite-shell .rsvp-panel .rounded-3xl,
.theme-invite-shell .rsvp-panel .rounded-2xl {
  background: rgba(11, 16, 32, 0.86) !important;
  border-color: var(--is-border) !important;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28) !important;
}

.theme-invite-shell .rsvp-card {
  border-radius: 0 !important;
  padding: clamp(1rem, 3vw, 1.5rem) !important;
}

.theme-invite-shell .rsvp-info-panel {
  position: relative;
  margin: 1.25rem 0 2rem !important;
  padding: clamp(1rem, 3vw, 1.35rem) !important;
  border: 1px solid rgba(94, 234, 212, 0.20) !important;
  border-radius: 0 !important;
  background:
    linear-gradient(135deg, rgba(94, 234, 212, 0.075), transparent 34%),
    rgba(5, 7, 13, 0.72) !important;
  box-shadow:
    inset 0 0 32px rgba(94, 234, 212, 0.035),
    0 16px 44px rgba(0, 0, 0, 0.24) !important;
}

.theme-invite-shell .rsvp-info-panel::before {
  content: "event.iso8601";
  position: absolute;
  top: -0.72rem;
  left: 0.85rem;
  padding: 0 0.45rem;
  background: #080d19;
  color: var(--is-cyan);
  font-family: var(--is-font);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.theme-invite-shell .rsvp-info-panel .bg-white,
.theme-invite-shell .rsvp-info-panel .border-slate-200,
.theme-invite-shell .rsvp-info-panel .shadow-sm {
  background: rgba(16, 24, 39, 0.94) !important;
  border-color: rgba(94, 234, 212, 0.22) !important;
  box-shadow: 0 0 24px rgba(94, 234, 212, 0.08) !important;
}

.theme-invite-shell .rsvp-info-panel > .flex {
  display: grid !important;
  grid-template-columns: minmax(24rem, 0.95fr) minmax(22rem, 1.4fr);
  align-items: center !important;
  gap: clamp(1.5rem, 4vw, 2.75rem) !important;
}

.theme-invite-shell .rsvp-info-panel > .flex > div {
  min-width: 0 !important;
}

.theme-invite-shell .rsvp-info-panel > .flex > div:first-child {
  width: 100% !important;
  min-width: 24rem !important;
  display: grid !important;
  grid-template-columns: 5rem minmax(13rem, 1fr);
  align-items: center !important;
  gap: 0.875rem !important;
}

.theme-invite-shell .rsvp-info-panel > .flex > div:last-child {
  width: 100% !important;
  justify-self: stretch !important;
  display: grid !important;
  grid-template-columns: 5rem minmax(0, 1fr);
  align-items: center !important;
  gap: 0.875rem !important;
}

.theme-invite-shell .rsvp-info-panel > .flex > div:last-child .flex-1 {
  max-width: none !important;
}

.theme-invite-shell .rsvp-info-panel > .flex > div:last-child .text-sm,
.theme-invite-shell .rsvp-info-panel > .flex > div:last-child span,
.theme-invite-shell .rsvp-info-panel > .flex > div:last-child a {
  white-space: normal !important;
  overflow-wrap: anywhere;
  word-break: normal;
}

.theme-invite-shell .rsvp-info-panel .rounded-xl {
  border-radius: 0 !important;
}

.theme-invite-shell .rsvp-info-panel .bg-rose-600 {
  background: linear-gradient(90deg, var(--is-rose), #e11d48) !important;
  color: #fff !important;
}

.theme-invite-shell .rsvp-info-panel .text-slate-800,
.theme-invite-shell .rsvp-info-panel .text-slate-900 {
  color: var(--is-text) !important;
}

.theme-invite-shell .rsvp-info-panel .text-slate-500,
.theme-invite-shell .rsvp-info-panel .text-slate-400 {
  color: var(--is-muted) !important;
}

.theme-invite-shell .rsvp-info-panel .text-slate-300 {
  color: var(--is-dim) !important;
}

.theme-invite-shell .rsvp-info-panel .fa-map-marker-alt,
.theme-invite-shell .rsvp-info-panel .fa-video {
  color: var(--is-cyan) !important;
  text-shadow: 0 0 18px rgba(94, 234, 212, 0.34);
}

.theme-invite-shell .rsvp-info-panel a,
.theme-invite-shell .rsvp-info-panel .text-indigo-600 {
  color: var(--is-blue) !important;
}

.theme-invite-shell .rsvp-card::before {
  content: "event.packet";
  position: absolute;
  top: -0.7rem;
  left: 1rem;
  padding: 0 0.45rem;
  background: var(--is-surface);
  color: var(--is-cyan);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.theme-invite-shell .meetup-form-title,
.theme-invite-shell .rsvp-title-gradient,
.theme-invite-shell .rsvp-panel h3,
.theme-invite-shell .rsvp-panel h4 {
  color: var(--is-text) !important;
  font-family: var(--is-font) !important;
  text-shadow: 0 0 28px rgba(125, 211, 252, 0.18);
}

.theme-invite-shell .rsvp-title-gradient {
  background: none !important;
  -webkit-text-fill-color: currentColor !important;
}

.theme-invite-shell .rsvp-event-icon,
.theme-invite-shell .rsvp-panel .rounded-full {
  background: rgba(94, 234, 212, 0.08) !important;
  border: 1px solid rgba(94, 234, 212, 0.22) !important;
  color: var(--is-cyan) !important;
  box-shadow: 0 0 22px rgba(94, 234, 212, 0.12) !important;
}

.theme-invite-shell .rsvp-panel p,
.theme-invite-shell .rsvp-panel span,
.theme-invite-shell .rsvp-panel div,
.theme-invite-shell .rsvp-panel label,
.theme-invite-shell .rsvp-panel .text-slate-900,
.theme-invite-shell .rsvp-panel .text-slate-800,
.theme-invite-shell .rsvp-panel .text-slate-700,
.theme-invite-shell .rsvp-panel .text-slate-600,
.theme-invite-shell .rsvp-panel .text-slate-500,
.theme-invite-shell .rsvp-panel .text-slate-400 {
  color: var(--is-muted) !important;
}

.theme-invite-shell .rsvp-panel strong,
.theme-invite-shell .rsvp-panel b,
.theme-invite-shell .rsvp-panel .font-bold,
.theme-invite-shell .rsvp-panel .font-semibold,
.theme-invite-shell .rsvp-panel .font-extrabold {
  color: var(--is-text) !important;
}

.theme-invite-shell .text-emerald-600,
.theme-invite-shell .text-emerald-500,
.theme-invite-shell .rsvp-panel .text-success {
  color: var(--is-green) !important;
}

.theme-invite-shell .text-amber-600,
.theme-invite-shell .text-amber-700 {
  color: var(--is-amber) !important;
}

.theme-invite-shell .text-red-600,
.theme-invite-shell .text-rose-700 {
  color: var(--is-rose) !important;
}

.theme-invite-shell input,
.theme-invite-shell textarea,
.theme-invite-shell select,
.theme-invite-shell #inline-auth-email-input,
.theme-invite-shell .meetup-input {
  background: #05070d !important;
  border: 1px solid var(--is-border-hot) !important;
  border-radius: 0 !important;
  color: var(--is-text) !important;
  font-family: var(--is-font) !important;
  box-shadow: inset 0 0 18px rgba(94, 234, 212, 0.04) !important;
}

.theme-invite-shell input::placeholder,
.theme-invite-shell textarea::placeholder {
  color: var(--is-dim) !important;
}

.theme-invite-shell input:focus,
.theme-invite-shell textarea:focus,
.theme-invite-shell select:focus {
  border-color: var(--is-cyan) !important;
  box-shadow: 0 0 0 2px rgba(94, 234, 212, 0.18), inset 0 0 18px rgba(94, 234, 212, 0.05) !important;
  outline: none !important;
}

.theme-invite-shell .tw-button,
.theme-invite-shell .tw-button-brand,
.theme-invite-shell .tw-button-outline,
.theme-invite-shell .tw-button-gradient-brand,
.theme-invite-shell button,
.theme-invite-shell input[type="submit"] {
  border-radius: 0 !important;
  font-family: var(--is-font) !important;
  letter-spacing: 0.02em;
}

.theme-invite-shell .tw-button-brand,
.theme-invite-shell .tw-button-gradient-brand,
.theme-invite-shell input[type="submit"],
.theme-invite-shell button[type="submit"] {
  background: linear-gradient(90deg, rgba(94, 234, 212, 0.96), rgba(125, 211, 252, 0.96)) !important;
  border: 1px solid rgba(94, 234, 212, 0.75) !important;
  color: #031018 !important;
  box-shadow: 0 0 28px rgba(94, 234, 212, 0.22) !important;
  font-weight: 800 !important;
}

.theme-invite-shell .tw-button-outline,
.theme-invite-shell .rsvp-copy-link,
.theme-invite-shell .rsvp-qr-button {
  background: rgba(94, 234, 212, 0.05) !important;
  border: 1px solid rgba(94, 234, 212, 0.24) !important;
  color: var(--is-cyan) !important;
}

.theme-invite-shell .tw-button:hover,
.theme-invite-shell button:hover,
.theme-invite-shell a:hover {
  filter: brightness(1.08);
}

.theme-invite-shell .tw-pill,
.theme-invite-shell .badge,
.theme-invite-shell .rounded-full.bg-amber-100,
.theme-invite-shell .rounded-full.bg-rose-100,
.theme-invite-shell .rounded-full.bg-emerald-100,
.theme-invite-shell .rounded-full.bg-blue-100 {
  border-radius: 0 !important;
  background: rgba(94, 234, 212, 0.08) !important;
  border: 1px solid rgba(94, 234, 212, 0.22) !important;
  color: var(--is-cyan) !important;
}

.theme-invite-shell .invite-shell-document {
  margin-top: clamp(1.25rem, 4vw, 2.5rem);
  padding-top: clamp(1rem, 3vw, 1.5rem);
  border-top: 1px solid var(--is-border);
}

.theme-invite-shell .show-page-body {
  font-size: 0.98rem;
  line-height: 1.75;
}

.theme-invite-shell .show-page-body h1,
.theme-invite-shell .show-page-body h2,
.theme-invite-shell .show-page-body h3,
.theme-invite-shell .show-page-body h4 {
  color: var(--is-text);
  font-family: var(--is-font);
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.theme-invite-shell .show-page-body h1::before,
.theme-invite-shell .show-page-body h2::before {
  content: "# ";
  color: var(--is-cyan);
}

.theme-invite-shell .show-page-body p,
.theme-invite-shell .show-page-body li,
.theme-invite-shell .show-page-body td,
.theme-invite-shell .show-page-body th {
  color: var(--is-muted);
}

.theme-invite-shell .show-page-body ul,
.theme-invite-shell .show-page-body ol {
  color: var(--is-text) !important;
}

.theme-invite-shell .show-page-body li {
  color: #aebbd6 !important;
}

.theme-invite-shell .show-page-body li::marker {
  color: var(--is-cyan) !important;
}

.theme-invite-shell .show-page-body li strong,
.theme-invite-shell .show-page-body li b,
.theme-invite-shell .show-page-body li > span:first-child,
.theme-invite-shell .show-page-body li > a:first-child {
  color: var(--is-cyan) !important;
  font-weight: 800 !important;
  text-decoration-color: rgba(94, 234, 212, 0.55) !important;
  text-shadow: none !important;
}

.theme-invite-shell .show-page-body li *,
.theme-invite-shell .show-page-body p * {
  opacity: 1 !important;
}

.theme-invite-shell .show-page-body a {
  color: var(--is-blue);
  text-decoration: underline;
  text-decoration-style: dotted;
  text-underline-offset: 0.22em;
}

.theme-invite-shell .show-page-body blockquote {
  border-left: 2px solid var(--is-cyan);
  background: rgba(94, 234, 212, 0.05);
  color: var(--is-text);
  padding: 1rem 1.25rem;
}

.theme-invite-shell table,
.theme-invite-shell .show-page-body table,
.theme-invite-shell span.ablk table,
.theme-invite-shell .ablk table {
  width: 100%;
  border-collapse: separate !important;
  border-spacing: 0 !important;
  overflow: visible !important;
  margin: 1.5rem 0 2rem;
  border: 1px solid rgba(94, 234, 212, 0.22) !important;
  border-radius: 0 !important;
  background: #050914 !important;
  box-shadow: none !important;
}

.theme-invite-shell thead,
.theme-invite-shell table thead,
.theme-invite-shell table tr:first-child {
  background: #050914 !important;
}

.theme-invite-shell th,
.theme-invite-shell td,
.theme-invite-shell .show-page-body th,
.theme-invite-shell .show-page-body td {
  border: 0 !important;
  border-right: 1px solid rgba(94, 234, 212, 0.22) !important;
  border-bottom: 1px solid rgba(94, 234, 212, 0.22) !important;
  padding: 1rem 1.25rem !important;
  font-family: var(--is-font) !important;
  border-radius: 0 !important;
}

.theme-invite-shell th,
.theme-invite-shell .show-page-body th,
.theme-invite-shell table tr:first-child td {
  background: #050914 !important;
  color: var(--is-text) !important;
  font-weight: 800 !important;
  letter-spacing: 0.02em;
}

.theme-invite-shell td,
.theme-invite-shell .show-page-body td {
  color: var(--is-text) !important;
  background: #050914 !important;
}

.theme-invite-shell tbody tr:nth-child(even) td {
  background: #050914 !important;
}

.theme-invite-shell table td:first-child,
.theme-invite-shell .show-page-body table td:first-child,
.theme-invite-shell table th:first-child,
.theme-invite-shell .show-page-body table th:first-child {
  width: 22%;
  color: var(--is-cyan) !important;
  background: #050914 !important;
  font-weight: 800 !important;
  text-transform: none;
}

.theme-invite-shell table td:first-child *,
.theme-invite-shell .show-page-body table td:first-child *,
.theme-invite-shell table th:first-child *,
.theme-invite-shell .show-page-body table th:first-child * {
  color: var(--is-cyan) !important;
}

.theme-invite-shell table td:not(:first-child),
.theme-invite-shell .show-page-body table td:not(:first-child) {
  color: var(--is-text) !important;
}

.theme-invite-shell table td:not(:first-child) *,
.theme-invite-shell .show-page-body table td:not(:first-child) * {
  color: var(--is-text) !important;
}

.theme-invite-shell tbody tr:last-child td {
  border-bottom: 0 !important;
}

.theme-invite-shell table th:last-child,
.theme-invite-shell table td:last-child {
  border-right: 0 !important;
}

.theme-invite-shell table *,
.theme-invite-shell .show-page-body table * {
  border-radius: 0 !important;
  box-shadow: none !important;
}

.theme-invite-shell .slider-container,
.theme-invite-shell .carousel,
.theme-invite-shell [class*="testimonial"],
.theme-invite-shell .rounded-2xl.bg-white,
.theme-invite-shell .rounded-3xl.bg-white,
.theme-invite-shell section.rounded-2xl.bg-white,
.theme-invite-shell section.rounded-3xl.bg-white {
  background:
    linear-gradient(135deg, rgba(94, 234, 212, 0.06), transparent 36%),
    rgba(5, 7, 13, 0.82) !important;
  border: 1px solid rgba(94, 234, 212, 0.22) !important;
  border-radius: 0 !important;
  box-shadow:
    inset 0 0 32px rgba(94, 234, 212, 0.035),
    0 16px 44px rgba(0, 0, 0, 0.24) !important;
}

.theme-invite-shell .slider-container blockquote,
.theme-invite-shell .slider-container .slide span,
.theme-invite-shell .slider-container .byline,
.theme-invite-shell [class*="testimonial"] blockquote,
.theme-invite-shell [class*="testimonial"] p,
.theme-invite-shell [class*="testimonial"] span {
  color: var(--is-text) !important;
  opacity: 1 !important;
  text-shadow: none !important;
}

.theme-invite-shell .slider-container blockquote,
.theme-invite-shell [class*="testimonial"] blockquote {
  background: rgba(94, 234, 212, 0.05) !important;
  border-left: 2px solid var(--is-cyan) !important;
}

.theme-invite-shell .slider-container .left-arrow,
.theme-invite-shell .slider-container .right-arrow,
.theme-invite-shell .left-arrow,
.theme-invite-shell .right-arrow {
  color: var(--is-cyan) !important;
  background: transparent !important;
  text-shadow: 0 0 18px rgba(94, 234, 212, 0.34);
}

.theme-invite-shell .slider-indicators .slider-dot,
.theme-invite-shell .slider-dot {
  background: var(--is-dim) !important;
  border: 1px solid rgba(94, 234, 212, 0.20) !important;
  border-radius: 0 !important;
  opacity: 1 !important;
}

.theme-invite-shell .slider-indicators .slider-dot.active,
.theme-invite-shell .slider-dot.active {
  background: var(--is-cyan) !important;
  box-shadow: 0 0 16px rgba(94, 234, 212, 0.35) !important;
}

.theme-invite-shell .contact-us-message {
  background:
    linear-gradient(135deg, rgba(94, 234, 212, 0.06), transparent 34%),
    rgba(5, 7, 13, 0.84) !important;
  border: 1px solid rgba(94, 234, 212, 0.26) !important;
  border-radius: 0 !important;
  box-shadow:
    inset 0 0 32px rgba(94, 234, 212, 0.035),
    0 16px 44px rgba(0, 0, 0, 0.24) !important;
}

.theme-invite-shell .contact-us-message::before {
  content: "support.channel";
  position: absolute;
  top: -0.72rem;
  left: 1rem;
  padding: 0 0.45rem;
  background: #080d19;
  color: var(--is-cyan);
  font-family: var(--is-font);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.theme-invite-shell .contact-us-message .contact-us-heading,
.theme-invite-shell .contact-us-message h3,
.theme-invite-shell .contact-us-message h4 {
  color: var(--is-text) !important;
  font-family: var(--is-font) !important;
  font-weight: 800 !important;
}

.theme-invite-shell .contact-us-message .contact-us-subheading,
.theme-invite-shell .contact-us-message p,
.theme-invite-shell .contact-us-message .text-slate-500,
.theme-invite-shell .contact-us-message .text-slate-600 {
  color: var(--is-muted) !important;
}

.theme-invite-shell .contact-us-message .rounded-full,
.theme-invite-shell .contact-us-message .bg-indigo-50,
.theme-invite-shell .contact-us-message .bg-emerald-50,
.theme-invite-shell .subscribe-form .rounded-full {
  border-radius: 0 !important;
  background: rgba(94, 234, 212, 0.08) !important;
  border: 1px solid rgba(94, 234, 212, 0.24) !important;
  color: var(--is-cyan) !important;
  box-shadow: 0 0 22px rgba(94, 234, 212, 0.12) !important;
}

.theme-invite-shell .contact-us-message .fa,
.theme-invite-shell .contact-us-message i,
.theme-invite-shell .contact-us-message svg,
.theme-invite-shell .contact-us-message .text-indigo-600,
.theme-invite-shell .contact-us-message .text-indigo-500 {
  color: var(--is-cyan) !important;
}

.theme-invite-shell .page-editor-controls,
.theme-invite-shell .js-page-editor-controls {
  background:
    linear-gradient(135deg, rgba(94, 234, 212, 0.06), transparent 34%),
    rgba(5, 7, 13, 0.88) !important;
  border-color: rgba(94, 234, 212, 0.26) !important;
  border-radius: 0 !important;
  color: var(--is-text) !important;
}

.theme-invite-shell .page-editor-controls h3,
.theme-invite-shell .page-editor-controls .text-slate-900,
.theme-invite-shell .page-editor-controls .text-slate-800,
.theme-invite-shell .page-editor-controls__inline-toggle-label {
  color: var(--is-text) !important;
  opacity: 1 !important;
}

.theme-invite-shell .page-editor-controls p,
.theme-invite-shell .page-editor-controls .text-slate-700,
.theme-invite-shell .page-editor-controls .text-slate-600,
.theme-invite-shell .page-editor-controls .text-slate-500 {
  color: var(--is-muted) !important;
  opacity: 1 !important;
}

.theme-invite-shell .page-editor-controls__inline-toggle {
  background: rgba(11, 16, 32, 0.92) !important;
  border-color: rgba(215, 226, 255, 0.72) !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.theme-invite-shell .page-editor-controls__inline-toggle:hover {
  border-color: var(--is-cyan) !important;
  box-shadow: 0 0 20px rgba(94, 234, 212, 0.16) !important;
}

.theme-invite-shell .page-editor-controls .toggle-label {
  background: rgba(125, 140, 168, 0.28) !important;
  border: 1px solid rgba(215, 226, 255, 0.30) !important;
  border-radius: 0 !important;
}

.theme-invite-shell .page-editor-controls .toggle-checkbox {
  background: var(--is-text) !important;
  border-color: rgba(125, 211, 252, 0.48) !important;
  border-radius: 0 !important;
}

.theme-invite-shell .page-editor-controls .toggle-checkbox:checked + .toggle-label {
  background: rgba(94, 234, 212, 0.28) !important;
  border-color: var(--is-cyan) !important;
}

.theme-invite-shell .page-editor-controls .toggle-checkbox:checked {
  background: var(--is-cyan) !important;
}

.theme-invite-shell .page-editor-controls .tw-button,
.theme-invite-shell .page-editor-controls .tw-button-outline,
.theme-invite-shell .page-editor-controls .tw-button-secondary,
.theme-invite-shell .page-editor-controls .tw-button-low-profile-white,
.theme-invite-shell .page-editor-controls .tw-button-gradient-brand,
.theme-invite-shell .page-editor-controls a,
.theme-invite-shell .page-editor-controls button {
  background: rgba(5, 7, 13, 0.86) !important;
  border: 1px solid rgba(94, 234, 212, 0.35) !important;
  border-radius: 0 !important;
  color: var(--is-text) !important;
  box-shadow: none !important;
  font-family: var(--is-font) !important;
  font-weight: 800 !important;
  opacity: 1 !important;
}

.theme-invite-shell .page-editor-controls .tw-button:hover,
.theme-invite-shell .page-editor-controls .tw-button-outline:hover,
.theme-invite-shell .page-editor-controls .tw-button-secondary:hover,
.theme-invite-shell .page-editor-controls .tw-button-low-profile-white:hover,
.theme-invite-shell .page-editor-controls a:hover,
.theme-invite-shell .page-editor-controls button:hover {
  background: rgba(94, 234, 212, 0.10) !important;
  border-color: var(--is-cyan) !important;
  color: var(--is-cyan) !important;
  filter: none !important;
}

.theme-invite-shell .page-editor-controls .bg-amber-50,
.theme-invite-shell .page-editor-controls .border-amber-200,
.theme-invite-shell .page-editor-controls .text-amber-800 {
  background: rgba(250, 204, 21, 0.10) !important;
  border-color: rgba(250, 204, 21, 0.48) !important;
  color: var(--is-amber) !important;
}

.theme-invite-shell .page-editor-controls .bg-\[\#31439b\],
.theme-invite-shell .page-editor-controls .hover\:bg-\[\#253274\]:hover {
  background: rgba(125, 211, 252, 0.14) !important;
  border-color: rgba(125, 211, 252, 0.46) !important;
  color: var(--is-blue) !important;
}

.theme-invite-shell .page-editor-controls .rounded-full,
.theme-invite-shell .page-editor-controls span[class*="rounded-full"] {
  border-radius: 0 !important;
  background: rgba(94, 234, 212, 0.10) !important;
  border: 1px solid rgba(94, 234, 212, 0.28) !important;
  color: var(--is-cyan) !important;
  box-shadow: none !important;
}

.theme-invite-shell .page-editor-controls i,
.theme-invite-shell .page-editor-controls .fa,
.theme-invite-shell .page-editor-controls svg {
  color: currentColor !important;
}

.theme-invite-shell .tw-featured-city,
.theme-invite-shell a.tw-featured-city,
.theme-invite-shell details[open] a.tw-featured-city,
.theme-invite-shell a.tw-featured-city[class*="fcf2e9"],
.theme-invite-shell a.tw-featured-city.bg-\[\#fcf2e9\],
.theme-invite-shell .tw-city-menu-panel a.tw-featured-city {
  background: rgba(5, 9, 20, 0.94) !important;
  border: 1px solid rgba(94, 234, 212, 0.30) !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  color: var(--is-text) !important;
  font-family: var(--is-font) !important;
}

.theme-invite-shell a.tw-featured-city:hover,
.theme-invite-shell details[open] a.tw-featured-city:hover,
.theme-invite-shell .tw-city-menu-panel a.tw-featured-city:hover {
  background: rgba(94, 234, 212, 0.10) !important;
  border-color: var(--is-cyan) !important;
  transform: none !important;
}

.theme-invite-shell a.tw-featured-city[class*="fcf2e9"],
.theme-invite-shell a.tw-featured-city.bg-\[\#fcf2e9\],
.theme-invite-shell a.tw-featured-city[class*="f2c9a6"],
.theme-invite-shell a.tw-featured-city.border-\[\#f2c9a6\],
.theme-invite-shell .tw-featured-city[class*="f1f5ff"],
.theme-invite-shell .tw-featured-city[class*="e7ecff"],
.theme-invite-shell a.tw-featured-city[data-city-name="seattle"] {
  background: rgba(94, 234, 212, 0.10) !important;
  border-color: var(--is-cyan) !important;
  box-shadow: inset 0 0 22px rgba(94, 234, 212, 0.08), 0 0 0 1px rgba(94, 234, 212, 0.18) !important;
}

.theme-invite-shell a.tw-featured-city .font-semibold,
.theme-invite-shell a.tw-featured-city .text-slate-800,
.theme-invite-shell a.tw-featured-city .text-slate-900,
.theme-invite-shell a.tw-featured-city span,
.theme-invite-shell details[open] a.tw-featured-city .font-semibold {
  color: var(--is-text) !important;
  opacity: 1 !important;
}

.theme-invite-shell a.tw-featured-city[class*="fcf2e9"] .font-semibold,
.theme-invite-shell a.tw-featured-city.bg-\[\#fcf2e9\] .font-semibold,
.theme-invite-shell a.tw-featured-city[class*="f2c9a6"] .font-semibold,
.theme-invite-shell a.tw-featured-city.border-\[\#f2c9a6\] .font-semibold,
.theme-invite-shell a.tw-featured-city[data-city-name="seattle"] .font-semibold,
.theme-invite-shell a.tw-featured-city:hover .font-semibold,
.theme-invite-shell a.tw-featured-city:hover .text-slate-800 {
  color: var(--is-cyan) !important;
}

.theme-invite-shell a.tw-featured-city .text-slate-500,
.theme-invite-shell a.tw-featured-city .text-slate-400,
.theme-invite-shell a.tw-featured-city .text-xs {
  color: var(--is-muted) !important;
}

.theme-invite-shell a.tw-featured-city .featured-city-icon div,
.theme-invite-shell a.tw-featured-city .bg-slate-100,
.theme-invite-shell a.tw-featured-city .bg-white,
.theme-invite-shell details[open] a.tw-featured-city .featured-city-icon div {
  background: rgba(94, 234, 212, 0.08) !important;
  border: 1px solid rgba(94, 234, 212, 0.28) !important;
  border-radius: 0 !important;
  color: var(--is-cyan) !important;
  box-shadow: none !important;
}

.theme-invite-shell a.tw-featured-city .featured-city-icon i,
.theme-invite-shell a.tw-featured-city .featured-city-icon svg,
.theme-invite-shell a.tw-featured-city i,
.theme-invite-shell a.tw-featured-city svg {
  color: var(--is-cyan) !important;
}

.theme-invite-shell .tw-featured-city .fa-chevron-right,
.theme-invite-shell a.tw-featured-city .fa-chevron-right {
  color: var(--is-dim) !important;
}

.theme-invite-shell .tw-featured-city:hover .fa-chevron-right,
.theme-invite-shell a.tw-featured-city:hover .fa-chevron-right {
  color: var(--is-cyan) !important;
}

.theme-invite-shell details[open] .rounded-2xl.border.border-slate-200.bg-white,
.theme-invite-shell details[open] [class*="rounded-2xl"][class*="bg-white"][class*="shadow-sm"] {
  background: rgba(5, 9, 20, 0.96) !important;
  border-color: rgba(94, 234, 212, 0.26) !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.theme-invite-shell details[open] .bg-\[\#b1bae7\] {
  background: rgba(94, 234, 212, 0.12) !important;
  color: var(--is-cyan) !important;
  border-bottom: 1px solid rgba(94, 234, 212, 0.22) !important;
}

.theme-invite-shell details[open] .tw-button.tw-button-outline.tw-button-low-profile,
.theme-invite-shell details[open] a.tw-button.tw-button-outline.tw-button-low-profile {
  background: rgba(5, 9, 20, 0.94) !important;
  border: 1px solid rgba(94, 234, 212, 0.38) !important;
  border-radius: 0 !important;
  color: var(--is-cyan) !important;
  box-shadow: none !important;
  font-family: var(--is-font) !important;
  font-weight: 800 !important;
}

.theme-invite-shell details[open] .tw-button.tw-button-outline.tw-button-low-profile:hover,
.theme-invite-shell details[open] a.tw-button.tw-button-outline.tw-button-low-profile:hover {
  background: rgba(94, 234, 212, 0.12) !important;
  border-color: var(--is-cyan) !important;
}

.theme-invite-shell #editor-v2-change-details-float > div {
  background: rgba(5, 9, 20, 0.98) !important;
  border: 1px solid rgba(94, 234, 212, 0.42) !important;
  border-radius: 0 !important;
  color: var(--is-text) !important;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.58), 0 0 32px rgba(94, 234, 212, 0.14) !important;
  opacity: 1 !important;
  backdrop-filter: none !important;
}

.theme-invite-shell #editor-v2-change-details-float,
.theme-invite-shell #editor-v2-change-details-float * {
  color: var(--is-text) !important;
  opacity: 1 !important;
  text-shadow: none !important;
}

.theme-invite-shell #editor-v2-change-details-float strong,
.theme-invite-shell #editor-v2-change-details-float b,
.theme-invite-shell #editor-v2-change-details-float li::marker,
.theme-invite-shell #editor-v2-change-details-float .fa,
.theme-invite-shell #editor-v2-change-details-float i {
  color: var(--is-cyan) !important;
}

.theme-invite-shell #editor-v2-change-details-float p,
.theme-invite-shell #editor-v2-change-details-float li,
.theme-invite-shell #editor-v2-change-details-float div {
  color: #c7d2ea !important;
}

.theme-invite-shell #editor-v2-status > div:last-child {
  background: rgba(5, 9, 20, 0.98) !important;
  border: 1px solid rgba(94, 234, 212, 0.42) !important;
  border-radius: 0 !important;
  color: var(--is-text) !important;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.58), 0 0 32px rgba(94, 234, 212, 0.12) !important;
  backdrop-filter: none !important;
}

.theme-invite-shell #editor-v2-status > div:last-child,
.theme-invite-shell #editor-v2-status > div:last-child * {
  color: var(--is-text) !important;
  opacity: 1 !important;
}

.theme-invite-shell #editor-v2-status .editor-v2-details-toggle,
.theme-invite-shell #editor-v2-status .revert-unsaved-changes-button,
.theme-invite-shell #editor-v2-status .save-unsaved-changes-button {
  background: rgba(94, 234, 212, 0.08) !important;
  border: 1px solid rgba(94, 234, 212, 0.34) !important;
  border-radius: 0 !important;
  color: var(--is-cyan) !important;
  box-shadow: none !important;
}

.theme-invite-shell #editor-v2-status .save-unsaved-changes-button {
  background: rgba(94, 234, 212, 0.92) !important;
  color: #020617 !important;
  text-shadow: none !important;
}

.theme-invite-shell #editor-v2-status .save-unsaved-changes-button,
.theme-invite-shell #editor-v2-status .save-unsaved-changes-button * {
  color: #020617 !important;
}

.theme-invite-shell .show-page-body code,
.theme-invite-shell .show-page-body pre {
  background: #05070d;
  border: 1px solid var(--is-border);
  color: var(--is-green);
  font-family: var(--is-font);
}

.theme-invite-shell .show-page-body img,
.theme-invite-shell .show-page-body iframe,
.theme-invite-shell .show-page-body video {
  border: 1px solid var(--is-border);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
}

.theme-invite-shell .show-page-body figcaption,
.theme-invite-shell .show-page-body .caption,
.theme-invite-shell .show-page-body [class*="caption"],
.theme-invite-shell .show-page-body [class*="bg-black"][class*="bottom"],
.theme-invite-shell .show-page-body [class*="from-slate-900"][class*="bottom"] {
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.45rem !important;
  max-width: calc(100% - 1.5rem);
  border: 1px solid rgba(94, 234, 212, 0.46) !important;
  border-radius: 0 !important;
  background: rgba(5, 9, 20, 0.92) !important;
  color: var(--is-text) !important;
  box-shadow:
    inset 0 0 18px rgba(94, 234, 212, 0.045),
    0 0 22px rgba(94, 234, 212, 0.12) !important;
  font-family: var(--is-font) !important;
  font-size: 0.78rem !important;
  font-weight: 800 !important;
  line-height: 1.2 !important;
  letter-spacing: 0.02em !important;
  padding: 0.42rem 0.58rem !important;
  text-shadow: none !important;
}

.theme-invite-shell .show-page-body figcaption::before,
.theme-invite-shell .show-page-body .caption::before,
.theme-invite-shell .show-page-body [class*="caption"]::before,
.theme-invite-shell .show-page-body [class*="bg-black"][class*="bottom"]::before,
.theme-invite-shell .show-page-body [class*="from-slate-900"][class*="bottom"]::before {
  content: ">";
  color: var(--is-cyan);
  font-weight: 900;
}

.theme-invite-shell .show-page-body figcaption *,
.theme-invite-shell .show-page-body .caption *,
.theme-invite-shell .show-page-body [class*="caption"] *,
.theme-invite-shell .show-page-body [class*="bg-black"][class*="bottom"] *,
.theme-invite-shell .show-page-body [class*="from-slate-900"][class*="bottom"] * {
  color: var(--is-text) !important;
  font-family: var(--is-font) !important;
  opacity: 1 !important;
}

.theme-invite-shell .eof-marker::after {
  content: "EOF";
  display: block;
  margin-top: 2rem;
  color: var(--is-dim);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
}

@keyframes inviteShellLineIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes inviteShellCursor {
  0%, 45% { opacity: 1; }
  46%, 100% { opacity: 0; }
}

@media (max-width: 640px) {
  .theme-invite-shell .invite-shell-window {
    margin: 0.75rem auto 2rem;
    width: calc(100% - 1rem);
  }

  .theme-invite-shell .invite-shell-topbar {
    grid-template-columns: auto 1fr;
  }

  .theme-invite-shell .invite-shell-status {
    display: none;
  }

  .theme-invite-shell .invite-shell-screen {
    padding: 0.85rem;
  }

  .theme-invite-shell article.prose {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
  }

  .theme-invite-shell .rsvp-info-panel > .flex {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 1.25rem !important;
  }

  .theme-invite-shell .rsvp-info-panel > .flex > div:first-child {
    min-width: 0 !important;
    grid-template-columns: 4.25rem minmax(0, 1fr);
    gap: 0.75rem !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .theme-invite-shell .invite-shell-line,
  .theme-invite-shell .invite-shell-cursor {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}
