:root {
    --bg: #05060a;
    --bg-soft: #0d1020;
    --panel: #12162a;
    --panel-2: #0b0f1d;
    --text: #dbe7ff;
    --muted: #93a0c8;
    --line: rgba(0, 255, 170, 0.18);
    --green: #3cff9b;
    --green-2: #c8ffe5;
    --cyan: #33d6ff;
    --purple: #7b61ff;
    --red: #ff5f8f;
    --yellow: #ffd84d;
    --white: #f7fbff;
    --shadow: 0 0 0 1px rgba(51, 214, 255, 0.14), 0 20px 70px rgba(0, 0, 0, 0.55);
    --radius: 0px;
    --radius-sm: 0px;
    --max: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Verdana, Arial, sans-serif;
    background:
        radial-gradient(circle at 20% 100%, rgba(123, 97, 255, 0.18), transparent 24%),
        radial-gradient(circle at 80% 90%, rgba(51, 214, 255, 0.14), transparent 20%),
        linear-gradient(180deg, #05060b 0%, #080b14 45%, #04050a 100%);
    color: var(--text);
    min-height: 100vh;
    line-height: 1.55;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.7) 0 1px, transparent 1.5px),
        radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.55) 0 1px, transparent 1.5px),
        radial-gradient(circle at 40% 80%, rgba(255, 255, 255, 0.5) 0 1px, transparent 1.5px),
        radial-gradient(circle at 85% 70%, rgba(255, 255, 255, 0.5) 0 1px, transparent 1.5px),
        linear-gradient(rgba(0, 229, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(123, 97, 255, 0.04) 1px, transparent 1px);
    background-size: auto, auto, auto, auto, 34px 34px, 34px 34px;
    opacity: 0.22;
    pointer-events: none;
    z-index: -2;
}

body::after {
    content: "";
    position: fixed;
    inset: 0;
    background: repeating-linear-gradient(180deg,
            rgba(255, 255, 255, 0.03) 0px,
            rgba(255, 255, 255, 0.03) 1px,
            transparent 2px,
            transparent 4px);
    opacity: 0.14;
    pointer-events: none;
    z-index: -1;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: min(calc(100% - 28px), var(--max));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    background: linear-gradient(180deg, rgba(12, 16, 29, 0.96), rgba(8, 11, 20, 0.92));
    border-bottom: 2px solid rgba(51, 214, 255, 0.24);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.34);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 12px 0;
}

.brand,
.eyebrow,
.terminal-label,
.micro-label,
.chip,
.button,
.nav-links a,
.people-badge {
    font-family: "Press Start 2P", monospace;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.brand {
    color: var(--white);
    font-size: 0.9rem;
    text-shadow: 0 0 16px rgba(51, 214, 255, 0.45);
}

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

.nav-burger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 50;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    -webkit-appearance: none;
    appearance: none;
}

.nav-burger span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--cyan);
    transition: all 0.3s ease;
    box-shadow: 0 0 8px rgba(51, 214, 255, 0.5);
}

.nav-burger.active span:nth-child(1) {
    transform: translateY(10.5px) rotate(45deg);
}

.nav-burger.active span:nth-child(2) {
    opacity: 0;
}

.nav-burger.active span:nth-child(3) {
    transform: translateY(-10.5px) rotate(-45deg);
}

.nav-links a,
.button {
    padding: 10px 12px;
    border: 1px solid rgba(51, 214, 255, 0.22);
    background: linear-gradient(180deg, rgba(24, 29, 50, 0.95), rgba(10, 14, 25, 0.96));
    color: var(--green-2);
    font-size: 0.68rem;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), inset 0 -1px 0 rgba(0, 0, 0, 0.35);
    transition: transform 0.15s ease, filter 0.15s ease, border-color 0.15s ease;
}

.nav-links a:hover,
.button:hover {
    transform: translateY(-1px);
    border-color: rgba(60, 255, 155, 0.4);
    filter: brightness(1.08);
}

.nav-links a.active {
    background: rgba(51, 214, 255, 0.12);
    border-color: rgba(51, 214, 255, 0.35);
    color: var(--cyan);
}

.button--primary {
    background: linear-gradient(180deg, rgba(26, 56, 77, 0.98), rgba(8, 20, 29, 0.98));
    color: var(--cyan);
}

.button--ghost {
    color: var(--text);
}

.hero {
    padding: 34px 0 20px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.95fr;
    gap: 18px;
    align-items: stretch;
}

.hero-card,
.panel,
.news-card,
.seat,
.poll-option,
.footer-card,
.feature-card {
    background: linear-gradient(180deg, rgba(18, 23, 42, 0.98), rgba(8, 12, 22, 0.98));
    border: 1px solid rgba(51, 214, 255, 0.18);
    box-shadow: var(--shadow);
    border-radius: 0;
    position: relative;
    overflow: hidden;
}

.hero-card::before,
.panel::before,
.news-card::before,
.feature-card::before,
.footer-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-left: 1px solid rgba(255, 255, 255, 0.04);
    pointer-events: none;
}

.hero-card::after,
.panel::after,
.news-card::after,
.feature-card::after,
.footer-card::after {
    content: "";
    position: absolute;
    inset: 6px;
    border: 1px solid rgba(123, 97, 255, 0.08);
    pointer-events: none;
}

.hero-card {
    padding: 26px;
}

.eyebrow {
    display: inline-block;
    margin-bottom: 16px;
    padding: 8px 10px;
    background: rgba(51, 214, 255, 0.06);
    border: 1px solid rgba(51, 214, 255, 0.16);
    color: var(--cyan);
    font-size: 0.62rem;
}

h1,
h2,
h3 {
    font-family: "Press Start 2P", monospace;
    font-weight: 400;
    line-height: 1.25;
    letter-spacing: 0.02em;
    margin: 0;
}

h1 {
    font-size: clamp(1.8rem, 5vw, 3.5rem);
    color: var(--white);
    text-shadow: 0 0 22px rgba(51, 214, 255, 0.18), 0 0 40px rgba(123, 97, 255, 0.12);
    margin-bottom: 18px;
}

.hero-card p,
.section-head p,
.news-card p,
.feature-card p,
.footer-card p,
.people-copy,
.stat-copy,
.seat small {
    color: var(--muted);
    font-size: 0.92rem;
}

.hero-actions,
.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hero-actions {
    margin-bottom: 18px;
}

.chip {
    padding: 8px 10px;
    background: rgba(60, 255, 155, 0.05);
    border: 1px solid rgba(60, 255, 155, 0.18);
    color: var(--green-2);
    font-size: 0.62rem;
}

.chip::before {
    content: "[ ";
}

.chip::after {
    content: " ]";
}

.terminal {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-height: 100%;
}

.terminal-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(51, 214, 255, 0.12);
}

.terminal-dots {
    display: flex;
    gap: 8px;
}

.terminal-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 8px currentColor;
}

.terminal-dots span:nth-child(1) {
    color: var(--red);
    background: var(--red);
}

.terminal-dots span:nth-child(2) {
    color: var(--yellow);
    background: var(--yellow);
}

.terminal-dots span:nth-child(3) {
    color: var(--green);
    background: var(--green);
}

.terminal-label {
    color: var(--muted);
    font-size: 0.62rem;
}

.terminal-screen {
    position: relative;
    background: radial-gradient(circle at top, rgba(0, 255, 170, 0.06), transparent 30%), #05080f;
    padding: 18px;
    border: 1px solid rgba(60, 255, 155, 0.14);
    min-height: 292px;
    color: var(--green);
    box-shadow: inset 0 0 40px rgba(60, 255, 155, 0.06);
    font-family: "Courier New", monospace;
}

.terminal-screen::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 20%, transparent 80%, rgba(255, 255, 255, 0.02));
    pointer-events: none;
}

.terminal-line {
    margin: 0 0 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.stats,
section {
    padding: 20px 0;
}

.stats-grid,
.news-grid,
.feature-grid,
.bottom-grid,
.people-grid {
    display: grid;
    gap: 16px;
}

.stats-grid {
    grid-template-columns: repeat(4, 1fr);
}

.news-grid {
    grid-template-columns: 1.2fr 1fr 1fr;
}

.feature-grid {
    grid-template-columns: repeat(3, 1fr);
}

.bottom-grid {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: start;
}

.people-grid {
    grid-template-columns: 0.85fr 1.15fr;
    align-items: start;
}

.panel,
.news-card,
.feature-card,
.footer-card,
.poll-card,
.seat-panel,
.people-card {
    padding: 18px;
}

.micro-label {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--yellow);
    font-size: 0.6rem;
}

.micro-label::before {
    content: ":: ";
}

.stat-number {
    font-family: "Press Start 2P", monospace;
    font-size: 1.4rem;
    line-height: 1.15;
    color: var(--green-2);
    margin-bottom: 8px;
}

.section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 14px;
}

.section-head h2 {
    font-size: clamp(1rem, 2.4vw, 1.45rem);
    color: var(--white);
    margin-bottom: 8px;
}

.section-head h2::before {
    content: "> ";
    color: var(--cyan);
}

.news-meta {
    color: var(--cyan);
    font-family: "Press Start 2P", monospace;
    font-size: 0.55rem;
    margin-bottom: 10px;
}

.news-meta::before {
    content: "[NEWS] ";
}

.news-card h3,
.feature-card h3,
.people-card h3 {
    color: var(--green-2);
    font-size: 0.86rem;
    margin-bottom: 12px;
}

.seat-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 8px;
    margin-top: 16px;
}

.seat {
    padding: 11px 8px;
    text-align: left;
    background: linear-gradient(180deg, rgba(9, 18, 31, 0.98), rgba(6, 11, 20, 0.98));
    border: 1px solid rgba(51, 214, 255, 0.14);
    font-family: "Press Start 2P", monospace;
    font-size: 0.62rem;
    line-height: 1.4;
    min-height: 62px;
}

.seat::before {
    content: "> ";
    color: var(--cyan);
}

.seat small {
    display: block;
    margin-top: 4px;
    padding-left: 10px;
    font-size: 0.66rem;
}

.seat--free {
    border-color: rgba(60, 255, 155, 0.28);
    box-shadow: inset 0 0 18px rgba(60, 255, 155, 0.04);
}

.seat--taken {
    border-color: rgba(123, 97, 255, 0.24);
    color: #e5e9ff;
}

.seat-layout-wrap {
    overflow-x: auto;
    padding-top: 8px;
}

.seat-layout-wrap .bordplan {
    border-collapse: collapse;
    width: 100%;
    min-width: 860px;
    font-size: 8px;
    color: var(--text);
    font-family: "Press Start 2P", monospace;
    letter-spacing: 0.015em;
}

.seat-layout-wrap .bordplan td {
    border: 1px solid rgba(9, 20, 31, 0.35);
    padding: 4px;
    text-align: center;
    vertical-align: middle;
}

.seat-layout-wrap .rack {
    background: linear-gradient(180deg, #17273b 0%, #101e2f 100%);
    color: #dbe7ff;
    font-weight: bold;
}

.seat-layout-wrap .floor,
.seat-layout-wrap .floor-no-first {
    background: linear-gradient(180deg, #96b4c7 0%, #86a6ba 100%);
}

.seat-layout-wrap .entry {
    background: linear-gradient(180deg, #23597a 0%, #1a4662 100%);
    color: #e7f7ff;
    font-weight: bold;
}

.seat-layout-wrap .floor-kitchen {
    background: linear-gradient(180deg, rgba(112, 18, 34, 0.96) 0%, rgba(78, 12, 24, 0.98) 100%);
    border-color: rgba(255, 95, 143, 0.38) !important;
    color: var(--yellow);
    font-weight: bold;
}

.seat-layout-wrap .seat {
    background: linear-gradient(180deg, rgba(9, 31, 21, 0.95) 0%, rgba(7, 23, 16, 0.96) 100%);
    border-color: rgba(60, 255, 155, 0.3) !important;
    color: var(--green-2);
    font-size: 6px;
    font-family: "Press Start 2P", monospace;
    min-height: 0;
    line-height: 1.35;
}

.seat-layout-wrap .seat::before {
    content: "";
}

.seat-layout-wrap .seat-occupied {
    background: linear-gradient(180deg, rgba(15, 32, 49, 0.95) 0%, rgba(9, 22, 35, 0.96) 100%);
    border-color: rgba(51, 214, 255, 0.34) !important;
    color: #cfefff;
    font-size: 6px;
    font-family: "Press Start 2P", monospace;
    line-height: 1.35;
}

.seat-layout-wrap .seat-occupied-group {
    background: linear-gradient(180deg, rgba(12, 34, 24, 0.95) 0%, rgba(8, 24, 17, 0.96) 100%);
    border-color: rgba(60, 255, 155, 0.3) !important;
    color: var(--green-2);
}

.seat-layout-wrap .seat-occupied-crew {
    background: linear-gradient(180deg, rgba(57, 47, 10, 0.95) 0%, rgba(37, 31, 7, 0.96) 100%);
    border-color: rgba(255, 216, 77, 0.35) !important;
    color: var(--yellow);
}

.seat-layout-wrap .seat b,
.seat-layout-wrap .seat-occupied b {
    color: inherit;
}

.poll-list,
.people-list {
    display: grid;
    gap: 10px;
    list-style: none;
    margin: 14px 0 0;
    padding: 0;
}

.poll-option,
.people-list li,
.people-stat {
    background: linear-gradient(180deg, rgba(11, 19, 34, 0.98), rgba(6, 11, 20, 0.98));
    border: 1px solid rgba(51, 214, 255, 0.12);
}

.poll-option {
    padding: 12px 14px;
}

.poll-block {
    border: 1px solid rgba(51, 214, 255, 0.16);
    padding: 12px;
    margin-bottom: 18px;
    background: linear-gradient(180deg, rgba(9, 16, 29, 0.98), rgba(7, 11, 20, 0.98));
}

.poll-stack {
    display: grid;
    gap: 18px;
}

.poll-stack .poll-block:last-child {
    margin-bottom: 0;
}

.poll-question-title {
    font-size: 0.78rem;
    color: var(--green-2);
    margin: 0 0 8px 0;
}

.poll-total-votes {
    margin: 0 0 10px 0;
    color: var(--muted);
    font-size: 0.74rem;
}

.expandable {
    margin-top: 10px;
    border: 1px solid rgba(51, 214, 255, 0.16);
    background: rgba(6, 11, 20, 0.6);
}

/* When expanded, let the parent card use the full row width in the grid. */
.news-card:has(.expandable[open]),
.feature-card:has(.expandable[open]) {
    grid-column: 1 / -1;
}

.news-card:has(.expandable[open]) .expandable,
.feature-card:has(.expandable[open]) .expandable {
    margin-top: 12px;
}

.expandable--wide {
    margin-top: 16px;
}

.expandable summary {
    cursor: pointer;
    padding: 8px 10px;
    color: var(--cyan);
    font-family: "Press Start 2P", monospace;
    font-size: 0.56rem;
    list-style: none;
}

.expandable summary::-webkit-details-marker {
    display: none;
}

.expandable summary::before {
    content: "> ";
}

.expandable[open] summary::before {
    content: "v ";
}

.expandable-body {
    padding: 10px 12px 12px 12px;
    color: var(--text);
    font-size: 0.86rem;
    line-height: 1.65;
    background: rgba(8, 14, 26, 0.58);
    border-top: 1px solid rgba(51, 214, 255, 0.14);
}

.rich-content {
    font-size: 0.92rem;
    color: var(--text);
}

.rich-content p {
    margin: 0 0 12px 0;
}

.rich-content p:last-child {
    margin-bottom: 0;
}

.rich-content h1,
.rich-content h2,
.rich-content h3,
.rich-content h4 {
    font-family: "Press Start 2P", monospace;
    color: var(--green-2);
    line-height: 1.35;
    margin: 16px 0 10px 0;
    font-size: 0.86rem;
}

.rich-content ul,
.rich-content ol {
    margin: 0 0 12px 20px;
    padding: 0;
}

.rich-content li {
    margin: 0 0 8px 0;
}

.rich-content blockquote {
    margin: 0 0 12px 0;
    padding: 10px 12px;
    border-left: 3px solid rgba(51, 214, 255, 0.4);
    background: rgba(51, 214, 255, 0.08);
}

.rich-content pre,
.rich-content code {
    font-family: "Courier New", Courier, monospace;
}

.rich-content pre {
    overflow-x: auto;
    padding: 10px;
    border: 1px solid rgba(51, 214, 255, 0.2);
    background: rgba(5, 9, 16, 0.9);
}

.rich-content table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 12px;
}

.rich-content th,
.rich-content td {
    border: 1px solid rgba(51, 214, 255, 0.2);
    padding: 8px;
    text-align: left;
}

.older-news-list {
    display: grid;
    gap: 12px;
}

.older-news-card {
    padding: 14px;
}

.poll-fill {
    position: absolute;
    inset: 0 auto 0 0;
    width: var(--fill, 50%);
    background: linear-gradient(90deg, rgba(51, 214, 255, 0.18), rgba(123, 97, 255, 0.10));
    pointer-events: none;
}

.poll-content {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    color: var(--green-2);
    font-family: "Press Start 2P", monospace;
    font-size: 0.62rem;
}

.people-card h3 {
    margin-top: 4px;
}

.people-toolbar {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 14px;
}

.people-stat {
    padding: 10px;
}

.people-stat strong {
    display: block;
    color: var(--green-2);
    font-family: "Press Start 2P", monospace;
    font-size: 0.8rem;
    margin-bottom: 6px;
}

.people-stat span {
    color: var(--muted);
    font-size: 0.72rem;
    text-transform: uppercase;
}

.people-list li {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    align-items: center;
    gap: 10px;
    padding: 11px 12px;
}

.people-list li span {
    color: var(--green-2);
    min-width: 0;
    font-family: "Press Start 2P", monospace;
    font-size: 0.62rem;
}

.people-list li small {
    color: var(--muted);
    font-size: 0.72rem;
}

.people-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 5px 8px;
    font-size: 0.52rem;
    border: 1px solid rgba(123, 97, 255, 0.24);
    background: rgba(123, 97, 255, 0.1);
    color: var(--white);
}

.people-badge--crew {
    border-color: rgba(255, 216, 77, 0.28);
    background: rgba(255, 216, 77, 0.12);
    color: var(--yellow);
}

.people-badge--group {
    border-color: rgba(60, 255, 155, 0.28);
    background: rgba(60, 255, 155, 0.10);
    color: var(--green-2);
}

.people-badge--solo {
    border-color: rgba(51, 214, 255, 0.28);
    background: rgba(51, 214, 255, 0.10);
    color: var(--cyan);
}

.people-badge--child {
    border-color: rgba(255, 182, 77, 0.28);
    background: rgba(255, 182, 77, 0.10);
    color: #ffb64d;
}

.people-list li.child-attendee {
    margin-left: 2.5rem;
    font-size: 0.8rem;
    opacity: 0.75;
}

.people-list li.child-attendee span {
    font-size: 0.75rem;
}

.people-list li.child-attendee small {
    font-size: 0.65rem;
}

.people-list li.child-attendee .people-badge {
    font-size: 0.45rem;
    padding: 3px 6px;
}

.info-index-grid,
.info-stack {
    display: grid;
    gap: 12px;
}

.info-index-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-bottom: 16px;
}

.info-index-link {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 10px;
    align-items: center;
    padding: 12px;
    border: 1px solid rgba(51, 214, 255, 0.18);
    background: linear-gradient(180deg, rgba(18, 23, 42, 0.95), rgba(8, 12, 22, 0.95));
    box-shadow: var(--shadow);
}

.info-index-link:hover {
    border-color: rgba(60, 255, 155, 0.4);
    filter: brightness(1.08);
}

.info-index-number {
    min-width: 32px;
    text-align: center;
    padding: 8px 6px;
    font-family: "Press Start 2P", monospace;
    font-size: 0.6rem;
    color: var(--yellow);
    border: 1px solid rgba(255, 216, 77, 0.35);
    background: rgba(255, 216, 77, 0.08);
}

.info-index-title {
    font-family: "Press Start 2P", monospace;
    font-size: 0.62rem;
    line-height: 1.45;
    color: var(--green-2);
}

.info-stack {
    grid-template-columns: 1fr;
}

.info-section-card {
    scroll-margin-top: 92px;
}

.info-section-card h3 {
    font-size: 0.9rem;
    margin: 6px 0 10px;
}

.info-section-content {
    margin-top: 6px;
}

.info-back-wrap {
    margin: 12px 0 0;
}

.info-back-link {
    padding: 7px 10px;
    border: 1px solid rgba(51, 214, 255, 0.2);
    background: rgba(51, 214, 255, 0.06);
    font-family: "Press Start 2P", monospace;
    font-size: 0.56rem;
    color: var(--cyan);
}

.footer {
    padding: 14px 0 40px;
}

.footer-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-links a {
    padding: 8px 10px;
    border: 1px solid rgba(51, 214, 255, 0.16);
    background: rgba(51, 214, 255, 0.04);
    font-family: "Press Start 2P", monospace;
    font-size: 0.58rem;
    color: var(--muted);
}

.footer-links a:hover {
    color: var(--cyan);
}

.footer-links a.active {
    border-color: rgba(51, 214, 255, 0.24);
    background: rgba(51, 214, 255, 0.08);
    color: var(--cyan);
    opacity: 0.9;
}

@media (max-width: 1024px) {

    .hero-grid,
    .bottom-grid,
    .news-grid,
    .feature-grid,
    .people-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .info-index-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .seat-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .nav {
        align-items: center;
        flex-direction: row;
    }

    .nav-burger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: linear-gradient(180deg, rgba(12, 16, 29, 0.98), rgba(8, 11, 20, 0.98));
        border-left: 2px solid rgba(51, 214, 255, 0.24);
        box-shadow: -8px 0 30px rgba(0, 0, 0, 0.5);
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 80px 20px 20px;
        transition: right 0.3s ease;
        z-index: 40;
        overflow-y: auto;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        width: 100%;
        text-align: left;
        padding: 14px 16px;
        border: none;
        border-bottom: 1px solid rgba(51, 214, 255, 0.12);
        background: transparent;
        box-shadow: none;
    }

    .nav-links a:hover,
    .nav-links a.active {
        background: rgba(51, 214, 255, 0.08);
        border-bottom: 1px solid rgba(51, 214, 255, 0.24);
    }

    .hero-actions,
    .hero-meta,
    .footer-links {
        gap: 8px;
    }

    .hero-card,
    .terminal,
    .panel,
    .news-card,
    .feature-card,
    .seat-panel,
    .poll-card,
    .footer-card,
    .people-card {
        padding: 14px;
    }

    .people-toolbar,
    .people-list li {
        grid-template-columns: 1fr;
    }

    .stats-grid,
    .seat-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .info-index-grid {
        grid-template-columns: 1fr;
    }

    .terminal {
        display: none;
    }

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

/* Poll Tabs */
.poll-tab-buttons {
    display: flex;
    gap: 0.5rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--line);
    padding-bottom: 0.5rem;
    flex-wrap: wrap;
}

.poll-tab-btn {
    padding: 0.5rem 1rem;
    border: 1px solid;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
    font-family: "Press Start 2P", monospace;
    font-size: 0.65rem;
    font-weight: 400;
    opacity: 0.7;
}

.poll-tab-btn.active {
    opacity: 1;
}

/* Form Styling */
.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 0.75rem;
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: 4px;
    color: var(--text);
    font-size: 1rem;
    font-family: inherit;
}

.form-textarea {
    resize: vertical;
}

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-required {
    color: var(--yellow);
}

.form-error {
    padding: 1rem;
    margin-bottom: 2rem;
    background: rgba(220, 38, 38, 0.1);
    border: 1px solid rgba(220, 38, 38, 0.3);
    border-radius: 4px;
    color: #dc2626;
}

.form-success {
    color: var(--green-2);
}

.form-success-box {
    padding: 1rem;
    margin-bottom: 2rem;
    background: rgba(60, 255, 155, 0.1);
    border: 1px solid rgba(60, 255, 155, 0.3);
    border-radius: 4px;
    color: var(--green-2);
}

.form-error-text {
    color: var(--red);
}

.form-grid {
    display: grid;
    gap: 1.5rem;
}

.form-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-grid-3 {
    display: flex;
    gap: 1rem;
}

.form-grid-2-1 {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1.5rem;
}

.form-helper {
    margin-top: 0.5rem;
    font-size: 0.875rem;
    opacity: 0.7;
}

.form-section {
    border-top: 1px solid var(--line);
    padding-top: 1.5rem;
    margin-top: 1rem;
}

.form-section-title {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.form-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

/* Tagwall Styles */
.tagwall-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.tagwall-item {
    border-bottom: 1px solid rgba(60, 255, 155, 0.15);
    padding-bottom: 20px;
}

.tagwall-title {
    font-size: 1.1rem;
    margin: 0 0 8px 0;
    font-weight: 700;
    color: var(--yellow);
}

.tagwall-meta {
    font-size: 0.75rem;
    color: var(--muted);
    margin: 0 0 12px 0;
}

.tagwall-content {
    line-height: 1.6;
    color: var(--text);
}

/* Profile Styles */
.profile-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.profile-section-title {
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    border-bottom: 2px solid var(--yellow);
    padding-bottom: 0.5rem;
}

.profile-info-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.profile-info-item-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.7;
    margin-bottom: 0.25rem;
}

.profile-info-item-value {
    font-size: 1.1rem;
}


.profile-actions {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.profile-actions .button {
    width: 100%;
}

/* Event Timeline */
.event-day-group {
    margin-bottom: 2.5rem;
}

.event-day-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-transform: capitalize;
}

.event-day-date {
    opacity: 0.5;
    font-size: 1rem;
}

.event-item {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 1.5rem;
    align-items: center;
    padding: 1rem 0;
}

.event-item+.event-item {
    border-top: 1px solid var(--line);
}

.event-title {
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.event-description {
    margin: 0;
    opacity: 0.8;
    font-size: 0.95rem;
}

/* Utility Classes */
.max-w-700 {
    max-width: 700px;
}

.max-w-900 {
    max-width: 900px;
}

.hidden {
    display: none;
}

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