:root {
  color-scheme: dark;
  --cyan: #00d2d0;
  --cyan-soft: rgba(0, 210, 208, 0.58);
  --cream: #eceed1;
  --green: #32ff73;
  --red: #ff171d;
  --bg: #000;
  --font: ui-monospace, SFMono-Regular, Consolas, "Liberation Mono", monospace;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--cream);
  background:
    radial-gradient(circle at 50% 14%, rgba(0, 210, 208, 0.13), transparent 42rem),
    #020707;
  font-family: var(--font);
}

body.modal-open {
  overflow: hidden;
}

a {
  color: var(--cream);
}

.page-shell,
.site-nav,
.site-footer {
  width: min(1280px, calc(100% - 24px));
  margin: 0 auto;
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 8px;
  padding: 10px 14px;
  border: 1px solid rgba(0, 210, 208, 0.6);
  border-radius: 6px;
  background:
    repeating-linear-gradient(0deg, rgba(2, 6, 6, 0.96) 0 2px, rgba(7, 19, 19, 0.96) 2px 4px),
    #020707;
  box-shadow: 0 0 24px rgba(0, 210, 208, 0.12);
}

.nav-brand,
.nav-links a,
.nav-links button {
  color: #dfffff;
  font: 900 0.74rem var(--font);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-brand {
  text-decoration: none;
}

.nav-brand::before {
  content: "> ";
  color: var(--green);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-links a,
.nav-links button {
  border: 1px solid transparent;
  border-radius: 4px;
  padding: 7px 9px;
  background: transparent;
  text-decoration: none;
  cursor: pointer;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links button:hover,
.nav-links button:focus-visible {
  border-color: rgba(134, 239, 255, 0.62);
  outline: none;
  background: rgba(0, 44, 52, 0.72);
}

.page-shell {
  padding: 10px 0 36px;
}

.sg-screen {
  overflow: hidden;
  border: 2px solid var(--cyan);
  border-radius: 22px 4px 22px 4px;
  background: #000;
  box-shadow: 0 0 0 4px #001515, 0 24px 80px rgba(0, 0, 0, 0.72);
}

.sg-header {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 28px;
  align-items: center;
  height: 34px;
  padding: 0 18px;
  border-bottom: 1px solid var(--cyan-soft);
  background: repeating-linear-gradient(0deg, #020606 0 2px, #071313 2px 4px);
  color: #dfffff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.sg-terminal {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 640px;
  background:
    linear-gradient(rgba(0, 210, 208, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 210, 208, 0.04) 1px, transparent 1px),
    #000;
  background-size: 14px 14px;
}

.sg-terminal::before {
  content: "";
  position: absolute;
  inset: 2.2% 1.6% 2.8%;
  border: 2px solid var(--cyan);
  border-radius: 22px 0 22px 0;
  pointer-events: none;
}

.top-code {
  position: absolute;
  left: 24%;
  top: 3.2%;
  width: 44%;
  height: 3.4%;
  display: flex;
  align-items: center;
  gap: 1.6%;
  padding-left: 1.8%;
  border: 1px solid var(--cyan);
  border-bottom: 0;
}

.top-code i {
  display: block;
  width: 0.45rem;
  height: 0.7rem;
  background: #d6d995;
}

.top-code i:nth-child(2n) {
  width: 0.8rem;
  height: 0.35rem;
  background: var(--cyan);
}

.left-stack {
  position: absolute;
  left: 2.6%;
  top: 5.4%;
  width: 17%;
  display: grid;
  gap: 1.35vh;
}

.left-stack > div {
  border: 2px solid var(--cyan);
  background: #000;
}

.avatar-tile {
  height: 9.6vh;
  min-height: 70px;
  display: grid;
  align-content: center;
  gap: 5px;
  padding: 12px 16px;
  background:
    linear-gradient(90deg, rgba(0, 210, 208, 0.18), transparent 72%),
    repeating-linear-gradient(0deg, rgba(0, 210, 208, 0.1) 0 1px, transparent 1px 7px),
    #000;
  overflow: hidden;
}

.avatar-tile span,
.data-tile span {
  color: #9fefff;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.avatar-tile b,
.avatar-tile i,
.data-tile b {
  display: block;
  width: max-content;
  max-width: 100%;
  overflow: hidden;
  color: var(--cream);
  font-size: 0.68rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.04em;
  white-space: nowrap;
  animation: terminalType 5.8s steps(22, end) infinite;
}

.avatar-tile i {
  color: var(--green);
  animation-delay: 0.4s;
}

.blank-tile {
  height: 13.2vh;
  min-height: 86px;
}

.data-tile {
  padding: 12px 14px;
  display: grid;
  align-content: start;
  gap: 6px;
  overflow: hidden;
}

.data-tile b {
  color: rgba(232, 234, 208, 0.86);
  animation-duration: 7s;
}

.data-tile b:nth-child(3) {
  animation-delay: 0.25s;
}

.data-tile b:nth-child(4) {
  animation-delay: 0.5s;
}

.data-tile b:nth-child(5) {
  animation-delay: 0.75s;
}

.logo-tile {
  height: 9.6vh;
  min-height: 70px;
  display: grid;
  place-items: center;
  padding: 10px 12px;
  overflow: hidden;
}

.logo-tile img {
  display: block;
  width: min(100%, 150px);
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(232, 234, 208, 0.45));
  opacity: 0.92;
}

.chevron-panel {
  position: absolute;
  left: 2.6%;
  bottom: 8.6%;
  width: 17%;
  padding: 9px 12px;
  border: 1px solid rgba(164, 232, 223, 0.85);
  background: #000;
  font-size: 0.72rem;
}

.chevron-panel p {
  margin: 0 0 8px;
  color: rgba(164, 232, 223, 0.82);
  font-weight: 800;
}

.chevron-panel b {
  display: grid;
  grid-template-columns: 58% 1fr;
  gap: 8px;
  align-items: center;
  margin: 4px 0;
  font-weight: 700;
}

.chevron-panel i {
  height: 8px;
  border: 1px solid var(--cream);
  background: linear-gradient(90deg, var(--red) 0 48%, transparent 49%);
}

.chevron-panel i:not(.red) {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.9), transparent 16%),
    linear-gradient(90deg, var(--green) 0 82%, transparent 83%);
  background-size: 220% 100%, 100% 100%;
  box-shadow: 0 0 8px rgba(54, 255, 114, 0.72);
  animation: chevronCharge 2.4s ease-in-out infinite;
}

.chevron-panel b:nth-of-type(2) i {
  animation-delay: 0.16s;
}

.chevron-panel b:nth-of-type(3) i {
  animation-delay: 0.32s;
}

.chevron-panel b:nth-of-type(4) i {
  animation-delay: 0.48s;
}

.chevron-panel b:nth-of-type(5) i {
  animation-delay: 0.64s;
}

.chevron-panel b:nth-of-type(6) i {
  animation-delay: 0.8s;
}

.chevron-panel i.red {
  animation: chevronFault 1.4s steps(2, end) infinite;
}

.destination {
  position: absolute;
  right: 4.2%;
  top: 5.3%;
  z-index: 6;
  text-align: left;
  letter-spacing: 0.24em;
}

.destination p {
  margin: 0 0 8px;
  font-size: 0.78rem;
  font-weight: 800;
}

.destination strong {
  font-size: 2rem;
}

.address-stack {
  position: absolute;
  right: 3.2%;
  top: 14.4%;
  z-index: 5;
  width: 14.5%;
  display: grid;
  gap: 1.15vh;
  background: #000;
}

.address-stack .glyph-meta {
  position: relative;
  height: 6.9vh;
  min-height: 44px;
  border: 2px solid var(--cyan);
  color: var(--cream);
  background: #000;
  font: inherit;
  text-align: left;
  text-decoration: none;
  overflow: hidden;
}

.address-stack button.glyph-meta {
  cursor: pointer;
}

.address-stack .glyph-meta:disabled {
  cursor: default;
}

.glyph-meta strong,
.glyph-meta em {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.glyph-meta strong {
  margin: 6px 8px 2px;
  color: #fffde4;
  font-size: clamp(0.42rem, 0.82vw, 0.72rem);
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.glyph-meta em {
  margin: 0 8px;
  color: rgba(232, 234, 208, 0.7);
  font-size: clamp(0.34rem, 0.68vw, 0.58rem);
  font-style: normal;
  line-height: 1.25;
}

.glyph-signatures {
  border-color: rgba(232, 234, 208, 0.95);
  background:
    radial-gradient(circle at 18% 50%, rgba(0, 210, 208, 0.18), transparent 42%),
    linear-gradient(90deg, rgba(0, 210, 208, 0.14), rgba(0, 0, 0, 0.96) 62%);
  box-shadow:
    inset 0 0 18px rgba(0, 210, 208, 0.18),
    0 0 18px rgba(0, 210, 208, 0.14);
}

.glyph-signatures strong {
  color: #fffde4;
  font-size: clamp(0.78rem, 1.45vw, 1.36rem);
  line-height: 0.95;
  text-shadow:
    0 0 8px rgba(232, 234, 208, 0.65),
    0 0 18px rgba(0, 210, 208, 0.45);
}

.glyph-signatures em {
  color: var(--cyan);
  font-size: clamp(0.36rem, 0.72vw, 0.62rem);
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.glyph-meta.youtube-comment {
  border-color: rgba(255, 76, 76, 0.72);
}

.glyph-meta.youtube-comment strong {
  color: #ffb0aa;
}

.glyph-meta:hover,
.glyph-meta:focus-visible {
  outline: none;
  box-shadow: 0 0 18px rgba(0, 210, 208, 0.25);
}

.glyph-meta.youtube-comment:hover,
.glyph-meta.youtube-comment:focus-visible {
  box-shadow: 0 0 18px rgba(255, 23, 29, 0.22);
}

.gate-wrap {
  position: absolute;
  left: 50%;
  top: 38.4%;
  z-index: 4;
  width: 35%;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%);
}

.gate-wrap::before,
.gate-wrap::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 2px solid var(--cyan);
  pointer-events: none;
}

.gate-wrap::before {
  inset: 2%;
  clip-path: polygon(0 0, 100% 0, 100% 18%, 78% 18%, 78% 0, 22% 0, 22% 18%, 0 18%, 0 100%, 18% 100%, 18% 78%, 0 78%);
}

.gate-wrap::after {
  inset: 9%;
  opacity: 0.75;
}

.css-gate {
  position: relative;
  z-index: 3;
  width: 94%;
  height: 94%;
  border-radius: 50%;
  background:
    radial-gradient(circle, #000 0 47%, transparent 47.4%),
    repeating-conic-gradient(from 1deg, rgba(232,234,208,0.78) 0 1deg, transparent 1deg 8deg),
    conic-gradient(from 8deg, rgba(0,210,208,0.68), rgba(232,234,208,0.28), rgba(0,210,208,0.68));
  box-shadow: 0 0 12px rgba(232,234,208,0.65), inset 0 0 18px rgba(0,210,208,0.18);
}

.css-gate::before,
.css-gate::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.css-gate::before {
  inset: 7%;
  border: 2px solid rgba(232,234,208,0.82);
  box-shadow: inset 0 0 12px rgba(232,234,208,0.35);
}

.css-gate::after {
  inset: 21%;
  background: #000;
  border: 2px solid rgba(232,234,208,0.72);
  box-shadow: inset 0 0 24px rgba(232,234,208,0.18);
}

.gate-band {
  position: absolute;
  inset: 10%;
  z-index: 2;
  border-radius: 50%;
  background:
    radial-gradient(circle, transparent 0 64%, rgba(0,210,208,0.9) 64.2% 65%, transparent 65.2%),
    repeating-conic-gradient(from 0deg, transparent 0 6deg, rgba(232,234,208,0.75) 6deg 7deg, transparent 7deg 10deg);
}

.gate-segments {
  position: absolute;
  inset: 12%;
  z-index: 3;
  border-radius: 50%;
  background: repeating-conic-gradient(from 0deg, transparent 0 9deg, rgba(232,234,208,0.78) 9deg 10deg, transparent 10deg 13deg);
  mask: radial-gradient(circle, transparent 0 57%, #000 57.3% 73%, transparent 73.3%);
}

.gate-inner {
  position: absolute;
  inset: 22%;
  z-index: 4;
  border-radius: 50%;
  background: #000;
}

.css-gate i {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 5;
  width: 11.5%;
  height: 10.5%;
  margin: -5.25% 0 0 -5.75%;
  transform: rotate(var(--a)) translateY(-44%);
  transform-origin: 50% 50%;
}

.css-gate i::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid rgba(232,234,208,0.86);
  background: rgba(0,0,0,0.76);
  clip-path: polygon(50% 100%, 100% 8%, 68% 8%, 50% 45%, 32% 8%, 0 8%);
}

.pulse {
  position: absolute;
  z-index: 6;
  left: 50%;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #f6ffff;
  transform: translate(-50%, -50%);
  box-shadow:
    0 0 14px 7px rgba(246, 255, 255, 0.8),
    0 0 42px 32px rgba(150, 30, 28, 0.68),
    0 0 74px 52px rgba(150, 30, 28, 0.28);
  animation: corePulse 2.8s ease-in-out infinite;
}

.tweet-storm-countdown {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 8;
  width: 44%;
  min-width: 120px;
  transform: translate(-50%, -50%);
  padding: 12px 10px;
  border: 1px solid rgba(134, 239, 255, 0.58);
  background:
    radial-gradient(circle at 50% 20%, rgba(255, 23, 29, 0.24), transparent 58%),
    rgba(0, 8, 10, 0.78);
  box-shadow:
    inset 0 0 18px rgba(0, 210, 208, 0.14),
    0 0 24px rgba(150, 30, 28, 0.28);
  text-align: center;
  pointer-events: auto;
}

.tweet-storm-countdown[hidden] {
  display: none;
}

.tweet-storm-countdown p,
.tweet-storm-countdown span {
  margin: 0;
  color: #9fefff;
  font-size: clamp(0.38rem, 0.9vw, 0.72rem);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tweet-storm-countdown strong {
  display: block;
  margin: 5px 0;
  color: #ff3338;
  font-size: clamp(0.92rem, 2.6vw, 2.2rem);
  line-height: 1;
  letter-spacing: 0.08em;
  text-shadow: 0 0 12px rgba(255, 23, 29, 0.74), 0 0 22px rgba(255, 23, 29, 0.34);
}

.tweet-storm-countdown a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  margin-top: 8px;
  padding: 0 9px;
  border: 1px solid rgba(134, 239, 255, 0.68);
  border-radius: 4px;
  color: var(--cream);
  background: rgba(0, 62, 72, 0.82);
  font-size: clamp(0.34rem, 0.78vw, 0.62rem);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 0 0 16px rgba(0, 210, 208, 0.2);
}

.tweet-storm-countdown a:hover,
.tweet-storm-countdown a:focus-visible {
  outline: none;
  border-color: var(--cyan);
  box-shadow: 0 0 20px rgba(0, 210, 208, 0.34);
}

.lst,
.auth,
.user-log {
  position: absolute;
  z-index: 6;
  font-size: 0.82rem;
  font-weight: 800;
}

.lst-left {
  left: 24%;
  bottom: 20.3%;
}

.lst-right {
  left: 59%;
  bottom: 20.3%;
}

.ruler {
  position: absolute;
  left: 23.5%;
  bottom: 16.8%;
  width: 49%;
  height: 18px;
  border-top: 2px solid var(--cyan);
  background: repeating-linear-gradient(90deg, var(--cyan) 0 2px, transparent 2px 28px);
}

.idle {
  position: absolute;
  left: 50%;
  bottom: 8.4%;
  z-index: 7;
  width: 33%;
  height: 7.8%;
  display: grid;
  place-items: center;
  border: 1px solid rgba(230, 234, 212, 0.46);
  color: rgba(255, 23, 29, 0.72);
  background: radial-gradient(circle at 50% 50%, rgba(255, 23, 29, 0.1), transparent 70%), #000;
  font-size: 2.6rem;
  font-weight: 900;
  letter-spacing: 0.24em;
  text-shadow: 0 0 14px rgba(255, 23, 29, 0.58);
  transform: translateX(-50%);
}

.auth {
  left: 2%;
  bottom: 3.2%;
}

.auth span {
  display: inline-block;
  margin-left: 8px;
  padding: 2px 7px;
  border: 1px solid rgba(164, 232, 223, 0.78);
  color: rgba(164, 232, 223, 0.96);
}

.user-log {
  right: 3.2%;
  bottom: 3.2%;
  line-height: 1.25;
  text-align: left;
}

.command-strip {
  display: grid;
  grid-template-columns: 260px 1fr 220px auto;
  gap: 18px;
  align-items: center;
  padding: 14px 22px;
  border-top: 2px solid var(--cyan);
  background: #000;
}

.eyebrow,
.kicker {
  margin: 0 0 8px;
  color: #a7ece8;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  color: var(--cream);
  font-size: 1.25rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.command-strip > p {
  margin: 0;
  color: rgba(232, 234, 208, 0.78);
  font-size: 0.78rem;
  line-height: 1.5;
}

.primary-link,
.submit-button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(134, 239, 255, 0.65);
  border-radius: 6px;
  color: #e8fbff;
  background: linear-gradient(180deg, rgba(20, 84, 96, 0.95), rgba(6, 42, 50, 0.95));
  box-shadow: 0 0 20px rgba(88, 215, 255, 0.2), inset 0 1px rgba(255,255,255,0.18);
  font: 900 0.92rem var(--font);
  letter-spacing: 0.07em;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
}

.uplink {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  white-space: nowrap;
  color: #b7e9e5;
  font-size: 0.84rem;
}

.uplink i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #7edc8b;
  box-shadow: 0 0 14px #7edc8b;
}

.petition-panel,
.dashboard,
.x-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  margin-top: 20px;
  padding: 24px;
  border: 1px solid var(--cyan-soft);
  border-radius: 8px;
  background:
    linear-gradient(rgba(0, 196, 196, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 196, 196, 0.04) 1px, transparent 1px),
    #020707;
  background-size: 18px 18px;
}

.petition-panel {
  grid-template-columns: 1fr;
}

.discord-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  margin-top: 20px;
  padding: 22px 24px;
  border: 1px solid rgba(0, 210, 208, 0.62);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(0, 210, 208, 0.14), rgba(0, 0, 0, 0.72)),
    var(--grid);
  box-shadow: inset 0 0 24px rgba(0, 210, 208, 0.1);
}

.discord-panel h2 {
  margin: 0 0 10px;
  color: var(--cream);
  font-size: 1.55rem;
}

.discord-panel p {
  margin: 0;
  color: rgba(232, 234, 208, 0.74);
}

.discord-panel strong {
  color: var(--green);
}

.action-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 24px;
  margin-top: 20px;
  padding: 24px;
  border: 1px solid var(--cyan-soft);
  border-radius: 8px;
  background:
    linear-gradient(rgba(0, 196, 196, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 196, 196, 0.04) 1px, transparent 1px),
    #020707;
  background-size: 18px 18px;
}

.action-panel > *,
.action-card {
  min-width: 0;
}

.highlighted-x-panel {
  display: grid;
  grid-template-columns: 0.55fr 1.45fr;
  gap: 24px;
  margin-top: 20px;
  padding: 24px;
  border: 1px solid var(--cyan-soft);
  border-radius: 8px;
  background:
    linear-gradient(rgba(0, 196, 196, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 196, 196, 0.04) 1px, transparent 1px),
    #020707;
  background-size: 18px 18px;
}

.highlighted-x-panel h2 {
  margin: 0 0 12px;
  color: var(--cream);
  font-size: 1.7rem;
}

.highlighted-x-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
  min-width: 0;
}

.highlighted-x-card {
  min-width: 0;
  padding: 10px;
  border-left: 3px solid var(--cyan);
  background: rgba(0, 16, 20, 0.68);
  overflow: hidden;
}

.highlighted-x-card iframe,
.highlighted-x-card twitter-widget {
  max-width: 100% !important;
}

.action-panel h2 {
  margin: 0 0 12px;
  color: var(--cream);
  font-size: 1.7rem;
}

.source-link {
  display: inline-block;
  max-width: 100%;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.action-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.action-card {
  padding: 16px;
  border-left: 3px solid var(--cyan);
  background: rgba(0, 16, 20, 0.68);
}

.action-card h3 {
  margin: 0 0 10px;
  color: var(--cream);
  font-size: 1rem;
}

.action-card ul {
  display: grid;
  gap: 6px;
  margin: 12px 0;
  padding-left: 18px;
}

.action-card li,
.action-card a {
  min-width: 0;
  overflow-wrap: anywhere;
}

.tag-line {
  color: var(--green);
  font-weight: 900;
}

.tweet-button {
  min-height: 38px;
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
  padding: 0 14px;
  border: 1px solid rgba(134, 239, 255, 0.65);
  border-radius: 5px;
  color: #e8fbff;
  background: linear-gradient(180deg, rgba(20, 84, 96, 0.95), rgba(6, 42, 50, 0.95));
  font: 900 0.78rem var(--font);
  letter-spacing: 0.07em;
  text-decoration: none;
  text-transform: uppercase;
  text-align: center;
  white-space: normal;
}

.petition-copy h2,
.recent h2 {
  margin: 0 0 12px;
  color: var(--cream);
  font-size: 1.7rem;
}

.petition-copy {
  max-width: 980px;
}

.petition-copy h2 {
  max-width: 760px;
}

.petition-copy p {
  max-width: 920px;
  line-height: 1.6;
}

.petition-copy .form-message {
  max-width: none;
  margin-top: 18px;
  padding-top: 12px;
  border-top: 1px solid rgba(0, 210, 208, 0.28);
}

.petition-copy p:not(.kicker),
.counter p,
.signature-card p,
.form-message {
  color: rgba(232, 234, 208, 0.72);
}

.petition-form,
.changeorg-card {
  display: grid;
  gap: 14px;
}

.changeorg-card {
  align-content: center;
  padding: 18px;
  border: 1px solid rgba(134, 239, 255, 0.36);
  border-radius: 6px;
  background:
    linear-gradient(rgba(0, 196, 196, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 196, 196, 0.04) 1px, transparent 1px),
    rgba(0, 8, 10, 0.86);
  background-size: 14px 14px;
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

label {
  display: grid;
  gap: 7px;
  color: #9fefff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(134, 239, 255, 0.36);
  border-radius: 5px;
  color: #eafcff;
  background: rgba(0, 8, 10, 0.88);
  font: 500 0.92rem var(--font);
  outline: none;
}

input {
  height: 44px;
  padding: 0 10px;
}

textarea {
  min-height: 118px;
  padding: 10px;
  resize: vertical;
}

.consent {
  grid-template-columns: 18px 1fr;
  align-items: start;
  color: rgba(232, 234, 208, 0.74);
  font-size: 0.72rem;
  line-height: 1.45;
  text-transform: none;
  letter-spacing: 0;
}

.consent input {
  width: 18px;
  height: 18px;
  accent-color: var(--cyan);
}

.hidden-field {
  position: absolute;
  left: -9999px;
}

.form-message {
  min-height: 22px;
  margin: 0;
}

.form-message.error {
  color: #ff817a;
}

.form-message.success {
  color: #9be28e;
}

.dashboard,
.x-panel {
  grid-template-columns: 190px 1fr;
  position: relative;
}

.counter span {
  color: #b8f3ff;
  font-size: 3.2rem;
  font-weight: 900;
}

.counter span.count-updated {
  animation: countSignal 900ms ease-out;
}

.progress-track {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 16px;
  height: 5px;
  background: rgba(255,255,255,0.12);
}

.progress-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--cyan), var(--green));
}

.signature-list {
  display: grid;
  gap: 10px;
  padding-bottom: 26px;
}

.petition-list {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

.signature-card,
.petition-card {
  padding: 10px 12px;
  border-left: 3px solid var(--cyan);
  background: rgba(0, 16, 20, 0.68);
}

.signature-card strong,
.petition-card strong {
  display: block;
  margin-bottom: 4px;
}

.petition-card {
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  gap: 12px;
  align-items: center;
}

.petition-card span,
.petition-card em {
  color: #b8f3ff;
  font-weight: 900;
  white-space: nowrap;
}

.petition-card em {
  color: var(--green);
  font-size: 0.76rem;
  font-style: normal;
  text-transform: uppercase;
}

.petition-card a {
  color: var(--cream);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.official-petition {
  border-left-color: var(--green);
  background:
    linear-gradient(90deg, rgba(128, 255, 171, 0.15), rgba(0, 16, 20, 0.72)),
    rgba(0, 16, 20, 0.68);
  box-shadow: inset 0 0 20px rgba(128, 255, 171, 0.08);
}

.official-petition small {
  display: inline-block;
  margin-left: 8px;
  padding: 2px 6px;
  border: 1px solid rgba(128, 255, 171, 0.62);
  color: var(--green);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  vertical-align: middle;
}

.x-panel {
  overflow: hidden;
}

.x-panel .recent {
  min-width: 0;
}

.x-search-link {
  width: max-content;
  min-width: 220px;
  margin-top: 4px;
}

.trend-scan {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 8px;
  margin: 12px 0 14px;
}

.trend-card {
  min-width: 0;
  padding: 10px 12px;
  border: 1px solid rgba(0, 215, 215, 0.34);
  border-left: 3px solid rgba(214, 226, 157, 0.78);
  background: rgba(0, 18, 20, 0.72);
  box-shadow: inset 0 0 18px rgba(0, 215, 215, 0.08);
}

.trend-card strong,
.trend-card span {
  display: block;
  min-width: 0;
}

.trend-card strong {
  color: #fffde4;
  font-size: 0.78rem;
  text-transform: uppercase;
}

.trend-card span {
  margin-top: 4px;
  color: rgba(232, 234, 208, 0.72);
  font-size: 0.72rem;
  line-height: 1.35;
}

.trend-card.is-live {
  border-color: rgba(118, 255, 152, 0.72);
  border-left-color: var(--green);
  box-shadow:
    inset 0 0 18px rgba(118, 255, 152, 0.1),
    0 0 18px rgba(118, 255, 152, 0.08);
}

.trend-summary {
  border-left-color: var(--cyan);
}

.post-meta {
  display: block;
  margin-top: 6px;
  color: #9fefff;
  font-size: 0.72rem;
}

.tweet-card {
  display: block;
  color: var(--cream);
  text-decoration: none;
}

.tweet-card *,
.tweet-card:hover *,
.tweet-card:focus-visible * {
  text-decoration: none;
}

.tweet-card strong {
  color: #fffde4;
}

.tweet-card p {
  margin: 6px 0 0;
  color: rgba(232, 234, 208, 0.74);
  line-height: 1.5;
}

.tweet-card:hover,
.tweet-card:focus-visible {
  outline: none;
  box-shadow: 0 0 22px rgba(0, 210, 208, 0.2);
}

.tweet-list-modal {
  display: grid;
  gap: 10px;
  min-height: 0;
  max-height: none;
  overflow: auto;
  margin-top: 14px;
  padding: 10px;
  border: 1px solid rgba(0, 215, 215, 0.28);
  background:
    linear-gradient(rgba(0, 196, 196, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 196, 196, 0.03) 1px, transparent 1px),
    rgba(0, 8, 10, 0.68);
  background-size: 14px 14px;
  scrollbar-color: rgba(0, 215, 215, 0.65) rgba(0, 16, 20, 0.88);
  scrollbar-width: thin;
}

.tweet-list-modal .tweet-card {
  padding: 12px 14px;
  border: 1px solid rgba(134, 239, 255, 0.28);
  border-left: 3px solid var(--cyan);
  background: rgba(0, 16, 20, 0.86);
}

.tweet-list-modal .tweet-card .post-meta {
  width: max-content;
  max-width: 100%;
  padding-top: 2px;
  border-bottom: 1px solid rgba(159, 239, 255, 0.24);
}

.comments-pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 16px;
  color: rgba(232, 234, 208, 0.72);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.comments-pagination .comment-log-toggle {
  margin: 0;
}

.comments-pagination .comment-log-toggle:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.comment-log {
  overflow-y: auto;
  max-height: 430px;
  width: 100%;
  border: 1px solid rgba(0, 215, 215, 0.34);
  background:
    linear-gradient(rgba(0, 196, 196, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 196, 196, 0.03) 1px, transparent 1px),
    rgba(0, 8, 10, 0.76);
  background-size: 14px 14px;
  scrollbar-color: rgba(0, 215, 215, 0.65) rgba(0, 16, 20, 0.88);
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
}

.comment-log.expanded {
  max-height: min(78vh, 980px);
}

.comment-log::-webkit-scrollbar {
  width: 8px;
}

.comment-log::-webkit-scrollbar-track {
  background: rgba(0, 16, 20, 0.88);
}

.comment-log::-webkit-scrollbar-thumb {
  background: rgba(0, 215, 215, 0.65);
}

.comment-log-header {
  position: sticky;
  top: 0;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 4px 12px;
  padding: 9px 12px;
  border-bottom: 1px solid rgba(0, 215, 215, 0.28);
  background: rgba(0, 8, 10, 0.96);
}

.comment-log-status {
  margin: 0;
  color: #9fefff;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.comment-log-source-note {
  grid-column: 1;
  margin: 0;
  color: rgba(232, 234, 208, 0.58);
  font-size: 0.66rem;
  line-height: 1.35;
}

.comment-log-toggle {
  grid-column: 2;
  grid-row: 1 / span 2;
  flex: 0 0 auto;
  border: 1px solid rgba(134, 239, 255, 0.5);
  border-radius: 4px;
  padding: 6px 9px;
  color: var(--cream);
  background: rgba(0, 44, 52, 0.82);
  font: 900 0.68rem var(--font);
  text-transform: uppercase;
  cursor: pointer;
}

.comment-log-toggle:hover,
.comment-log-toggle:focus-visible {
  border-color: var(--cyan);
  outline: none;
  box-shadow: 0 0 18px rgba(0, 210, 208, 0.24);
}

.comment-log-items {
  display: grid;
  gap: 8px;
  padding: 10px;
}

.comment-log-card {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid rgba(134, 239, 255, 0.28);
  border-left: 3px solid var(--cyan);
  color: var(--cream);
  background: rgba(0, 16, 20, 0.82);
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.comment-log-card.youtube-comment {
  border-color: rgba(255, 76, 76, 0.32);
  border-left-color: #ff3434;
  background:
    linear-gradient(90deg, rgba(255, 23, 29, 0.13), transparent 42%),
    rgba(18, 5, 6, 0.82);
}

.comment-log-card.new-comment {
  animation: newCommentSignal 1600ms ease-out;
}

.comment-log-card.youtube-comment .post-meta {
  color: #ffb0aa;
}

.comment-log-card.youtube-comment em {
  color: #ff817a;
}

.comment-log-card:hover,
.comment-log-card:focus-visible {
  border-color: rgba(134, 239, 255, 0.72);
  outline: none;
  box-shadow: 0 0 22px rgba(0, 210, 208, 0.2);
}

.comment-log-card.youtube-comment:hover,
.comment-log-card.youtube-comment:focus-visible {
  border-color: rgba(255, 76, 76, 0.74);
  box-shadow: 0 0 22px rgba(255, 23, 29, 0.2);
}

.comment-log-card strong {
  display: block;
  margin-bottom: 6px;
  color: #fffde4;
}

.comment-log-card p {
  margin: 0;
  color: rgba(232, 234, 208, 0.76);
  line-height: 1.45;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.comment-log-card em {
  display: block;
  margin-top: 8px;
  color: var(--green);
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
}

.read-comment {
  width: max-content;
  margin-top: 8px;
  padding: 0;
  border: 0;
  color: var(--green);
  background: transparent;
  font: 900 0.74rem var(--font);
  text-transform: uppercase;
  cursor: pointer;
}

.comment-softbox {
  position: fixed !important;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.78);
  width: 100vw;
  height: 100vh;
}

.comment-softbox[hidden] {
  display: none !important;
}

.comment-dialog {
  position: relative;
  width: min(680px, 100%);
  max-height: min(78vh, 720px);
  overflow: auto;
  padding: 24px;
  border: 1px solid var(--cyan);
  border-radius: 8px;
  background:
    linear-gradient(rgba(0, 196, 196, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 196, 196, 0.04) 1px, transparent 1px),
    #020707;
  background-size: 18px 18px;
  box-shadow: 0 0 40px rgba(0, 210, 208, 0.28), 0 26px 80px rgba(0, 0, 0, 0.8);
}

.comment-dialog h2 {
  margin: 0 36px 8px 0;
}

.comment-dialog p:last-child {
  margin-bottom: 0;
  color: rgba(232, 234, 208, 0.84);
  line-height: 1.65;
}

.email-dialog {
  width: min(820px, 100%);
}

.x-posts-dialog {
  width: min(760px, 100%);
  max-height: min(82vh, 760px);
  display: grid;
  grid-template-rows: auto auto auto minmax(0, 1fr) auto;
  overflow: hidden;
}

.x-posts-dialog .comment-meta {
  margin-bottom: 0;
}

.all-comments-dialog {
  width: min(860px, 100%);
  max-height: min(84vh, 820px);
  display: grid;
  grid-template-rows: auto auto auto minmax(0, 1fr) auto;
  overflow: hidden;
}

.all-comments-list {
  min-height: 0;
  max-height: none;
  margin-top: 14px;
}

#comment-softbox {
  z-index: 70;
}

.contact-dialog {
  width: min(620px, 100%);
}

.contact-mail {
  color: #9fefff;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.email-template {
  display: grid;
  gap: 12px;
  margin-top: 16px;
  color: rgba(232, 234, 208, 0.86);
  line-height: 1.6;
}

.email-template p {
  margin: 0;
}

.comment-meta {
  color: #9fefff;
  font-size: 0.78rem;
}

.comment-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.comment-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(134, 239, 255, 0.65);
  border-radius: 4px;
  color: var(--cream);
  background: #000;
  font: 900 0.9rem var(--font);
  cursor: pointer;
}

.site-footer {
  padding: 14px 0 24px;
  color: rgba(232, 234, 208, 0.68);
  font-size: 0.72rem;
  line-height: 1.5;
}

.visitor-counter strong {
  color: #9fefff;
}

@keyframes corePulse {
  0%, 100% {
    opacity: 0.72;
    box-shadow:
      0 0 10px 4px rgba(246, 255, 255, 0.7),
      0 0 26px 18px rgba(150, 30, 28, 0.45),
      0 0 54px 38px rgba(150, 30, 28, 0.18);
  }
  50% {
    opacity: 1;
    box-shadow:
      0 0 16px 8px rgba(246, 255, 255, 0.9),
      0 0 42px 28px rgba(150, 30, 28, 0.68),
      0 0 82px 58px rgba(150, 30, 28, 0.3);
  }
}

@keyframes chevronCharge {
  0%, 100% {
    background-position: 130% 0, 0 0;
    filter: brightness(0.8);
  }
  45% {
    background-position: -40% 0, 0 0;
    filter: brightness(1.35);
  }
}

@keyframes chevronFault {
  0%, 100% {
    opacity: 0.58;
    box-shadow: 0 0 4px rgba(255, 23, 29, 0.55);
  }
  50% {
    opacity: 1;
    box-shadow: 0 0 12px rgba(255, 23, 29, 0.9);
  }
}

@keyframes terminalType {
  0% {
    max-width: 0;
    opacity: 0.45;
  }
  18%, 72% {
    max-width: 100%;
    opacity: 1;
  }
  100% {
    max-width: 100%;
    opacity: 0.62;
  }
}

@keyframes countSignal {
  0% {
    color: #fff;
    text-shadow: 0 0 4px #fff, 0 0 22px rgba(50, 255, 115, 0.85);
    transform: translateY(-1px) scale(1.015);
  }

  100% {
    color: #b8f3ff;
    text-shadow: none;
    transform: translateY(0) scale(1);
  }
}

@keyframes newCommentSignal {
  0% {
    border-color: rgba(50, 255, 115, 0.9);
    box-shadow: inset 0 0 0 1px rgba(50, 255, 115, 0.45), 0 0 24px rgba(50, 255, 115, 0.28);
    transform: translateX(4px);
  }

  100% {
    box-shadow: none;
    transform: translateX(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .counter span.count-updated,
  .comment-log-card.new-comment {
    animation: none;
  }
}

@media (max-width: 900px) {
  .page-shell,
  .site-nav,
  .site-footer {
    width: calc(100% - 12px);
  }

  .site-nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    flex-wrap: wrap;
    gap: 6px;
  }

  .sg-screen {
    overflow: hidden;
  }

  .sg-header,
  .sg-terminal,
  .command-strip {
    min-width: 0;
  }

  .sg-header {
    height: auto;
    grid-template-columns: 1fr auto;
    gap: 4px 10px;
    padding: 6px 10px;
    font-size: clamp(0.46rem, 1.6vw, 0.72rem);
  }

  .sg-header span:first-child {
    grid-column: 1 / -1;
  }

  .sg-terminal {
    aspect-ratio: 16 / 9;
    min-height: 0;
  }

  .sg-terminal::before {
    inset: 2.2% 1.6% 3.4%;
    border-width: 1px;
    border-radius: 12px 0 12px 0;
  }

  .top-code {
    border-width: 1px;
  }

  .top-code i {
    width: 0.22rem;
    height: 0.38rem;
  }

  .top-code i:nth-child(2n) {
    width: 0.42rem;
    height: 0.18rem;
  }

  .left-stack {
    gap: 1.1vw;
    top: 6%;
    height: 47%;
    grid-template-rows: 0.9fr 0.9fr 1fr 1fr;
  }

  .avatar-tile,
  .blank-tile,
  .logo-tile,
  .address-stack .glyph-meta {
    min-height: 0;
  }

  .avatar-tile {
    height: auto;
    padding: 0.8vw 1.1vw;
  }

  .blank-tile {
    height: auto;
    padding: 0.9vw 1vw;
  }

  .logo-tile {
    height: auto;
    padding: 0.7vw 1vw;
  }

  .logo-tile img {
    width: 90%;
  }

  .avatar-tile span,
  .data-tile span,
  .avatar-tile b,
  .avatar-tile i,
  .data-tile b,
  .chevron-panel,
  .lst,
  .auth,
  .user-log,
  .destination p {
    font-size: clamp(0.28rem, 1.25vw, 0.68rem);
  }

  .data-tile {
    gap: 0.45vw;
  }

  .chevron-panel {
    bottom: 6.5%;
    width: 18.5%;
    padding: 0.8vw 1vw;
  }

  .chevron-panel p {
    margin-bottom: 0.7vw;
  }

  .chevron-panel b {
    grid-template-columns: 58% 1fr;
    gap: 0.7vw;
    margin: 0.35vw 0;
  }

  .chevron-panel i {
    height: 0.75vw;
    min-height: 3px;
  }

  .destination {
    right: 4%;
    top: 5%;
    letter-spacing: 0.16em;
  }

  .destination strong {
    font-size: clamp(0.72rem, 3vw, 1.5rem);
  }

  .address-stack {
    top: 13.5%;
    bottom: 17%;
    grid-template-rows: repeat(7, 1fr);
    gap: 0.75%;
  }

  .address-stack .glyph-meta {
    height: auto;
    border-width: 1px;
  }

  .glyph-signatures strong {
    font-size: clamp(0.48rem, 2.1vw, 0.95rem);
  }

  .glyph-signatures em {
    font-size: clamp(0.24rem, 1.15vw, 0.5rem);
    letter-spacing: 0.05em;
  }

  .gate-wrap::before,
  .gate-wrap::after,
  .css-gate::before,
  .css-gate::after,
  .css-gate i::before {
    border-width: 1px;
  }

  .pulse {
    width: 4px;
    height: 4px;
  }

  .tweet-storm-countdown {
    width: 48%;
    min-width: 72px;
    padding: 0.8vw 0.6vw;
  }

  .ruler {
    height: 2.4vw;
    border-top-width: 1px;
    background: repeating-linear-gradient(90deg, var(--cyan) 0 1px, transparent 1px 3.2vw);
  }

  .idle {
    border-width: 1px;
    font-size: clamp(0.9rem, 4vw, 2rem);
  }

  .auth span {
    margin-left: 0.5vw;
    padding: 0.15vw 0.6vw;
  }

  .command-strip {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 12px 14px;
  }

  .command-strip > p {
    font-size: 0.74rem;
  }

  .primary-link {
    width: 100%;
  }

  .uplink {
    justify-content: center;
  }

  .petition-panel,
  .dashboard,
  .discord-panel,
  .action-panel,
  .highlighted-x-panel,
  .x-panel {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 560px) {
  .page-shell {
    width: calc(100% - 16px);
    padding-top: 8px;
  }

  .sg-screen {
    border-radius: 12px 3px 12px 3px;
  }

  .sg-terminal {
    aspect-ratio: 16 / 10;
  }

  .left-stack {
    left: 3.2%;
    top: 7%;
    width: 18%;
    height: 48%;
  }

  .avatar-tile span,
  .data-tile span {
    font-size: clamp(0.2rem, 1.35vw, 0.5rem);
  }

  .avatar-tile b,
  .avatar-tile i,
  .data-tile b {
    font-size: clamp(0.18rem, 1.1vw, 0.46rem);
  }

  .data-tile b:nth-of-type(n + 3) {
    display: none;
  }

  .logo-tile {
    padding: 0.6vw;
  }

  .chevron-panel {
    left: 3.2%;
    bottom: 8%;
    width: 18%;
  }

  .chevron-panel p {
    margin-bottom: 0.45vw;
  }

  .chevron-panel b {
    gap: 0.45vw;
    margin: 0.18vw 0;
  }

  .destination {
    right: 4.8%;
    top: 6.4%;
  }

  .address-stack {
    right: 4.2%;
    top: 15%;
    bottom: 21%;
    width: 16%;
    gap: 0.65%;
  }

  .glyph-meta strong,
  .glyph-meta em {
    margin-left: 4px;
    margin-right: 4px;
  }

  .glyph-meta strong {
    margin-top: 3px;
    font-size: clamp(0.22rem, 1.25vw, 0.46rem);
    letter-spacing: 0.04em;
  }

  .glyph-signatures strong {
    font-size: clamp(0.36rem, 2.25vw, 0.72rem);
    letter-spacing: 0.02em;
  }

  .glyph-signatures em {
    font-size: clamp(0.2rem, 1.15vw, 0.4rem);
  }

  .glyph-meta em {
    display: -webkit-box;
    font-size: clamp(0.2rem, 1.05vw, 0.4rem);
    line-height: 1.12;
    white-space: normal;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .gate-wrap {
    top: 39%;
    width: 34%;
  }

  .tweet-storm-countdown {
    width: 56%;
    min-width: 0;
  }

  .tweet-storm-countdown p,
  .tweet-storm-countdown span {
    font-size: clamp(0.18rem, 1vw, 0.38rem);
    letter-spacing: 0.03em;
  }

  .tweet-storm-countdown strong {
    margin: 2px 0;
    font-size: clamp(0.38rem, 2.8vw, 0.9rem);
    letter-spacing: 0.03em;
  }

  .tweet-storm-countdown a {
    min-height: 14px;
    margin-top: 3px;
    padding: 0 4px;
    font-size: clamp(0.18rem, 1vw, 0.36rem);
    letter-spacing: 0.03em;
  }

  .lst-left {
    left: 24%;
    bottom: 22%;
  }

  .lst-right {
    left: 55%;
    bottom: 22%;
  }

  .ruler {
    left: 24%;
    bottom: 18.7%;
    width: 48%;
  }

  .idle {
    bottom: 9.4%;
    width: 31%;
    height: 7.2%;
  }

  .auth {
    left: 3.2%;
    bottom: 3.6%;
  }

  .user-log {
    right: 4.2%;
    bottom: 3.4%;
    max-width: 31%;
  }

  .command-strip {
    padding: 14px 16px;
  }

  h1 {
    font-size: clamp(1rem, 6vw, 1.45rem);
    letter-spacing: 0.14em;
  }

  .petition-panel,
  .dashboard,
  .discord-panel,
  .action-panel,
  .highlighted-x-panel,
  .x-panel {
    padding: 20px;
  }

  .discord-panel {
    gap: 16px;
  }

  .petition-card {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .action-panel {
    gap: 16px;
  }

  .action-panel h2,
  .action-card h3,
  .action-card p,
  .action-card li,
  .source-link {
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .action-card {
    padding: 14px;
  }

  .action-card ul {
    padding-left: 14px;
  }

  .action-card .read-comment,
  .tweet-button {
    width: 100%;
    max-width: 100%;
    justify-content: center;
  }

  .x-search-link {
    width: 100%;
    min-width: 0;
  }

  .comment-log {
    max-height: 360px;
  }
}
