/* political.bar - Cyberpunk Speakeasy */
/* Colors: #0d1b2a #1b2838 #e07a5f #d4a056 #c97b84 #faf0e6 #4ecdc4 #060a10 */

:root {
    --deep-bg: #0d1b2a;
    --surface: #1b2838;
    --sunset-coral: #e07a5f;
    --amber-glow: #d4a056;
    --dusk-rose: #c97b84;
    --pale-sunrise: #faf0e6;
    --cool-teal: #4ecdc4;
    --shadow: #060a10;
    --hex-clip: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--deep-bg);
    color: var(--pale-sunrise);
    font-family: 'Libre Baskerville', Georgia, serif;
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
}

/* Cursor-following warm light */
#cursor-light {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    background: radial-gradient(circle 300px at var(--mx, 50%) var(--my, 50%), rgba(224, 122, 95, 0.06), transparent);
    transition: background 0.15s ease;
}

/* Noise overlay */
#noise-overlay {
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    pointer-events: none;
    z-index: 9998;
    opacity: 0.035;
    filter: url(#noiseFilter);
}

/* Star field background */
#star-field {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

/* Campaign stars */
#campaign-stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.campaign-star-el {
    position: absolute;
    width: 8px;
    height: 8px;
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    background: var(--amber-glow);
    animation: starPulse 5s ease-in-out infinite;
}

@keyframes starPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.7; }
}

/* Abstract background shapes */
#abstract-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.shape-circle {
    position: absolute;
    border-radius: 50%;
    background: var(--sunset-coral);
}

.shape-circle-1 {
    width: 350px;
    height: 350px;
    top: 15%;
    left: -5%;
    opacity: 0.08;
    animation: shapeDrift1 25s ease-in-out infinite;
}

.shape-circle-2 {
    width: 250px;
    height: 250px;
    top: 60%;
    right: -3%;
    opacity: 0.06;
    animation: shapeDrift2 30s ease-in-out infinite;
}

.shape-circle-3 {
    width: 180px;
    height: 180px;
    bottom: 20%;
    left: 30%;
    opacity: 0.05;
    animation: shapeDrift3 20s ease-in-out infinite;
}

.shape-line {
    position: absolute;
    width: 1px;
    background: var(--amber-glow);
    opacity: 0.12;
    transform-origin: center;
}

.shape-line-1 {
    height: 70vh;
    top: 5%;
    left: 20%;
    transform: rotate(30deg);
}

.shape-line-2 {
    height: 60vh;
    top: 15%;
    right: 25%;
    transform: rotate(150deg);
}

.shape-line-3 {
    height: 80vh;
    top: 40%;
    left: 50%;
    transform: rotate(30deg);
    opacity: 0.08;
}

.shape-line-4 {
    height: 50vh;
    bottom: 10%;
    right: 15%;
    transform: rotate(150deg);
    opacity: 0.1;
}

@keyframes shapeDrift1 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, 20px); }
}

@keyframes shapeDrift2 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-20px, -30px); }
}

@keyframes shapeDrift3 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(15px, -15px); }
}

/* Background gradient animation */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0d1b2a 0%, #1b2838 50%, #0d1b2a 100%);
    background-size: 200% 200%;
    animation: bgShift 20s ease-in-out infinite;
    z-index: -1;
}

@keyframes bgShift {
    0%, 100% { background-position: 0% 0%; }
    50% { background-position: 100% 100%; }
}

/* Room sections */
.room {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    z-index: 2;
}

.room-content {
    position: relative;
    width: 100%;
    max-width: 1200px;
    padding: 2rem;
    z-index: 2;
}

/* Classification tags */
.classification-tag {
    font-family: 'Share Tech Mono', monospace;
    font-size: clamp(0.7rem, 0.9vw, 0.85rem);
    letter-spacing: 0.12em;
    color: var(--cool-teal);
    display: block;
    margin-bottom: 1.5rem;
}

/* Compass stars */
.compass-star {
    position: absolute;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--sunset-coral), var(--amber-glow), var(--dusk-rose));
    background-size: 200% 200%;
    animation: sunsetGradient 8s ease-in-out infinite;
    clip-path: polygon(50% 0%, 60% 35%, 100% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 0% 35%, 40% 35%);
    opacity: 0;
    transition: opacity 0.8s ease;
    z-index: 3;
}

.room.visible .compass-star {
    opacity: 0.6;
}

.cs-1 { top: 15%; left: 8%; animation-delay: 0s; }
.cs-2 { top: 25%; right: 12%; animation-delay: 0.5s; }
.cs-3 { bottom: 20%; left: 15%; animation-delay: 1s; }
.cs-4 { top: 10%; right: 8%; animation-delay: 0.3s; }
.cs-5 { bottom: 15%; left: 10%; animation-delay: 0.7s; }
.cs-6 { top: 8%; left: 5%; animation-delay: 0.2s; }
.cs-7 { bottom: 12%; right: 6%; animation-delay: 0.9s; }
.cs-8 { top: 12%; right: 10%; animation-delay: 0.4s; }

@keyframes sunsetGradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* ===== ROOM 1: THE LOBBY ===== */
.hex-hero {
    position: relative;
    width: min(80vw, 600px);
    aspect-ratio: 1 / 1.1547;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hex-hero-border {
    position: absolute;
    inset: 0;
    clip-path: var(--hex-clip);
    background: linear-gradient(135deg, var(--sunset-coral), var(--amber-glow), var(--dusk-rose));
    background-size: 200% 200%;
    animation: sunsetGradient 8s ease-in-out infinite;
}

.hex-hero-inner {
    position: absolute;
    inset: 3px;
    clip-path: var(--hex-clip);
    background: rgba(27, 40, 56, 0.9);
    backdrop-filter: blur(8px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    text-align: center;
}

.hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 8vw, 7rem);
    font-weight: 400;
    letter-spacing: 0.08em;
    color: var(--sunset-coral);
    line-height: 1;
    margin-bottom: 1rem;
}

.title-separator {
    color: var(--amber-glow);
}

.hero-subtitle {
    font-family: 'Libre Baskerville', serif;
    font-size: clamp(0.9rem, 1.3vw, 1.15rem);
    color: var(--dusk-rose);
    font-style: italic;
    line-height: 1.6;
}

/* Hex lights around hero */
.hex-light {
    position: absolute;
    width: 20px;
    height: 23px;
    clip-path: var(--hex-clip);
    background: var(--sunset-coral);
    opacity: 0;
    transition: opacity 0.6s ease;
}

.room-lobby.visible .hex-light {
    animation: hexLightPulse 2.5s ease-in-out infinite;
}

.hex-light-1 { top: 20%; left: 15%; animation-delay: 0s; }
.hex-light-2 { top: 10%; left: 50%; animation-delay: 0.4s; }
.hex-light-3 { top: 20%; right: 15%; animation-delay: 0.8s; }
.hex-light-4 { bottom: 20%; left: 15%; animation-delay: 1.2s; }
.hex-light-5 { bottom: 10%; left: 50%; animation-delay: 1.6s; }
.hex-light-6 { bottom: 20%; right: 15%; animation-delay: 2.0s; }

@keyframes hexLightPulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.2); }
}

/* Neon sign */
.neon-sign {
    position: absolute;
    top: 2rem;
    right: 2rem;
    z-index: 5;
}

.neon-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    letter-spacing: 0.15em;
    color: var(--sunset-coral);
    text-shadow:
        0 0 7px rgba(224, 122, 95, 0.8),
        0 0 10px rgba(224, 122, 95, 0.6),
        0 0 21px rgba(224, 122, 95, 0.4),
        0 0 42px rgba(224, 122, 95, 0.2);
    animation: neonFlicker 4s ease-in-out infinite;
}

@keyframes neonFlicker {
    0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
        opacity: 1;
        text-shadow:
            0 0 7px rgba(224, 122, 95, 0.8),
            0 0 10px rgba(224, 122, 95, 0.6),
            0 0 21px rgba(224, 122, 95, 0.4),
            0 0 42px rgba(224, 122, 95, 0.2);
    }
    20%, 24%, 55% {
        opacity: 0.6;
        text-shadow:
            0 0 4px rgba(212, 160, 86, 0.6),
            0 0 7px rgba(212, 160, 86, 0.3);
    }
}

/* ===== ROOM 2: THE BAR - HONEYCOMB ===== */
.honeycomb-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 0;
}

.hex-cell {
    position: relative;
    aspect-ratio: 1 / 1.1547;
    transition: all 1.2s cubic-bezier(0.23, 1, 0.32, 1);
    opacity: 0;
    transform: scale(0.8);
}

.room-bar.visible .hex-cell {
    opacity: 1;
    transform: scale(1);
}

.hex-cell-border {
    position: absolute;
    inset: 0;
    clip-path: var(--hex-clip);
    background: linear-gradient(135deg, var(--sunset-coral), var(--amber-glow), var(--dusk-rose));
    background-size: 200% 200%;
    animation: sunsetGradient 8s ease-in-out infinite;
    transition: box-shadow 0.4s ease;
}

.hex-cell-inner {
    position: absolute;
    inset: 2px;
    clip-path: var(--hex-clip);
    background: rgba(27, 40, 56, 0.85);
    backdrop-filter: blur(8px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 1rem;
    text-align: center;
    transition: background 0.4s ease;
}

.hex-cell:hover .hex-cell-inner {
    background: rgba(27, 40, 56, 0.95);
}

.hex-cell:hover {
    filter: drop-shadow(0 0 30px rgba(224, 122, 95, 0.3)) drop-shadow(0 0 60px rgba(212, 160, 86, 0.1));
}

/* Center cell spans 2 columns */
.hex-center {
    grid-column: 2 / 4;
    grid-row: 2 / 4;
}

.hex-sat-1 { grid-column: 1; grid-row: 1; transform: translateY(50%) scale(0.8); }
.hex-sat-2 { grid-column: 2; grid-row: 1; }
.hex-sat-3 { grid-column: 3; grid-row: 1; transform: translateY(50%) scale(0.8); }
.hex-sat-4 { grid-column: 1; grid-row: 2; }
.hex-sat-5 { grid-column: 4; grid-row: 2; transform: translateY(50%) scale(0.8); }
.hex-sat-6 { grid-column: 4; grid-row: 3; }

.room-bar.visible .hex-sat-1 { opacity: 1; transform: translateY(50%) scale(1); }
.room-bar.visible .hex-sat-3 { opacity: 1; transform: translateY(50%) scale(1); }
.room-bar.visible .hex-sat-5 { opacity: 1; transform: translateY(50%) scale(1); }

.cell-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    letter-spacing: 0.08em;
    color: var(--sunset-coral);
    margin-bottom: 0.75rem;
}

.cell-body {
    font-family: 'Libre Baskerville', serif;
    font-size: clamp(0.75rem, 1vw, 0.95rem);
    line-height: 1.75;
    color: var(--pale-sunrise);
    margin-bottom: 1rem;
}

.cell-label {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    color: var(--cool-teal);
}

.cell-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 0.5rem;
}

.svg-star-compass,
.svg-hex-small {
    width: 100%;
    height: 100%;
}

.cell-quote {
    font-family: 'Libre Baskerville', serif;
    font-style: italic;
    font-size: clamp(0.7rem, 0.9vw, 0.85rem);
    line-height: 1.6;
    color: var(--dusk-rose);
    border: none;
    padding: 0;
    margin-bottom: 0.5rem;
}

.cell-attribution {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    color: var(--amber-glow);
}

.data-fragment {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.data-line {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    color: var(--cool-teal);
}

.data-star {
    color: var(--cool-teal);
    font-size: 1.2rem;
}

/* ===== ROOM 3: THE BACK ROOM ===== */
.hex-stack {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.hex-file {
    position: relative;
    width: 100%;
    min-height: 200px;
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.room-backroom.visible .hex-file {
    opacity: 1;
    transform: translateX(0);
}

.room-backroom.visible .hex-file-1 { transition-delay: 0s; }
.room-backroom.visible .hex-file-2 { transition-delay: 0.2s; }
.room-backroom.visible .hex-file-3 { transition-delay: 0.4s; }

.hex-file-border {
    position: absolute;
    inset: 0;
    clip-path: polygon(5% 0%, 95% 0%, 100% 50%, 95% 100%, 5% 100%, 0% 50%);
    background: linear-gradient(135deg, var(--sunset-coral), var(--amber-glow));
    background-size: 200% 200%;
    animation: sunsetGradient 8s ease-in-out infinite;
}

.hex-file-inner {
    position: absolute;
    inset: 2px;
    clip-path: polygon(5% 0%, 95% 0%, 100% 50%, 95% 100%, 5% 100%, 0% 50%);
    background: rgba(27, 40, 56, 0.9);
    backdrop-filter: blur(8px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem 3rem;
}

.file-tag {
    font-family: 'Share Tech Mono', monospace;
    font-size: clamp(0.65rem, 0.8vw, 0.75rem);
    letter-spacing: 0.12em;
    color: var(--cool-teal);
    margin-bottom: 0.75rem;
}

.file-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(1.8rem, 4vw, 3rem);
    letter-spacing: 0.08em;
    color: var(--sunset-coral);
    margin-bottom: 0.75rem;
}

.file-body {
    font-family: 'Libre Baskerville', serif;
    font-size: clamp(0.85rem, 1.1vw, 1rem);
    line-height: 1.75;
    color: var(--pale-sunrise);
}

/* ===== ROOM 4: THE BROADCAST ===== */
.broadcast-hex {
    position: relative;
    width: min(80vw, 650px);
    aspect-ratio: 1 / 1.1547;
    margin: 0 auto;
    opacity: 0;
    transform: scale(0.7);
    transition: all 1.2s cubic-bezier(0.23, 1, 0.32, 1);
}

.room-broadcast.visible .broadcast-hex {
    opacity: 1;
    transform: scale(1);
}

.broadcast-hex-border {
    position: absolute;
    inset: 0;
    clip-path: var(--hex-clip);
    background: linear-gradient(135deg, var(--sunset-coral), var(--amber-glow), var(--dusk-rose));
    background-size: 200% 200%;
    animation: sunsetGradient 8s ease-in-out infinite;
}

.broadcast-hex-inner {
    position: absolute;
    inset: 3px;
    clip-path: var(--hex-clip);
    background: rgba(27, 40, 56, 0.9);
    backdrop-filter: blur(12px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    text-align: center;
}

.broadcast-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 6vw, 5rem);
    letter-spacing: 0.08em;
    color: var(--sunset-coral);
    margin-bottom: 1rem;
}

.broadcast-body {
    font-family: 'Libre Baskerville', serif;
    font-size: clamp(0.85rem, 1.1vw, 1.05rem);
    line-height: 1.75;
    color: var(--pale-sunrise);
    max-width: 500px;
    margin-bottom: 2rem;
}

/* Pulse rings */
.broadcast-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    clip-path: var(--hex-clip);
    border: 1px solid var(--sunset-coral);
    opacity: 0;
}

.room-broadcast.visible .pulse-ring {
    animation: pulseExpand 4s ease-out infinite;
}

.pulse-ring-1 { width: 30%; height: 30%; animation-delay: 0s; }
.pulse-ring-2 { width: 30%; height: 30%; animation-delay: 1s; }
.pulse-ring-3 { width: 30%; height: 30%; animation-delay: 2s; }
.pulse-ring-4 { width: 30%; height: 30%; animation-delay: 3s; }

@keyframes pulseExpand {
    0% {
        width: 30%;
        height: 30%;
        opacity: 0.6;
    }
    100% {
        width: 120%;
        height: 120%;
        opacity: 0;
    }
}

/* Interference fragments */
.interference-fragment {
    position: absolute;
    opacity: 0;
    transition: all 1s cubic-bezier(0.23, 1, 0.32, 1);
}

.room-broadcast.visible .interference-fragment {
    opacity: 0.6;
}

.frag-text {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    color: var(--cool-teal);
}

.frag-star {
    width: 40px;
    height: 40px;
}

.frag-1 { top: 10%; left: 5%; }
.frag-2 { top: 20%; right: 8%; }
.frag-3 { bottom: 25%; left: 8%; }
.frag-4 { bottom: 10%; right: 5%; }
.frag-5 { top: 50%; left: 3%; }

/* ===== ROOM 5: LAST CALL ===== */
.room-lastcall {
    min-height: 100vh;
}

.lastcall-hex {
    position: relative;
    width: min(65vw, 500px);
    aspect-ratio: 1 / 1.1547;
    margin: 0 auto;
    opacity: 0;
    transform: scale(0.9);
    transition: all 1.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.room-lastcall.visible .lastcall-hex {
    opacity: 1;
    transform: scale(1);
}

.lastcall-hex-border {
    position: absolute;
    inset: 0;
    clip-path: var(--hex-clip);
    background: linear-gradient(135deg, var(--sunset-coral), var(--amber-glow), var(--dusk-rose));
    background-size: 200% 200%;
    animation: sunsetGradient 8s ease-in-out infinite;
}

.lastcall-hex-inner {
    position: absolute;
    inset: 2px;
    clip-path: var(--hex-clip);
    background: rgba(27, 40, 56, 0.92);
    backdrop-filter: blur(12px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    text-align: center;
}

.lastcall-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 6vw, 5rem);
    letter-spacing: 0.08em;
    color: var(--sunset-coral);
    margin-bottom: 1rem;
}

.lastcall-body {
    font-family: 'Libre Baskerville', serif;
    font-size: clamp(0.85rem, 1.1vw, 1.05rem);
    line-height: 1.75;
    color: var(--pale-sunrise);
    margin-bottom: 2rem;
}

.lastcall-signature {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.sig-text {
    font-family: 'Share Tech Mono', monospace;
    font-size: 1rem;
    letter-spacing: 0.15em;
    color: var(--amber-glow);
}

/* Remnant hexagons that drift apart */
.remnant-hex {
    position: absolute;
    clip-path: var(--hex-clip);
    background: rgba(224, 122, 95, 0.1);
    border: none;
    opacity: 0;
    transition: all 2s cubic-bezier(0.23, 1, 0.32, 1);
}

.room-lastcall.visible .remnant-hex {
    opacity: 0.15;
}

.remnant-1 {
    width: 80px;
    height: 92px;
    top: 10%;
    left: 10%;
}

.room-lastcall.visible .remnant-1 {
    transform: translate(-40px, -30px);
}

.remnant-2 {
    width: 60px;
    height: 69px;
    top: 15%;
    right: 12%;
}

.room-lastcall.visible .remnant-2 {
    transform: translate(30px, -20px);
}

.remnant-3 {
    width: 50px;
    height: 58px;
    bottom: 25%;
    left: 8%;
}

.room-lastcall.visible .remnant-3 {
    transform: translate(-25px, 20px);
}

.remnant-4 {
    width: 70px;
    height: 81px;
    bottom: 20%;
    right: 8%;
}

.room-lastcall.visible .remnant-4 {
    transform: translate(35px, 25px);
}

.remnant-5 {
    width: 40px;
    height: 46px;
    bottom: 10%;
    left: 45%;
}

.room-lastcall.visible .remnant-5 {
    transform: translate(0, 40px);
    opacity: 0.08;
}

/* Split text animation */
.char-wrap {
    display: inline-block;
    overflow: hidden;
    vertical-align: bottom;
}

.char-inner {
    display: inline-block;
    transform: translateY(110%);
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.room.visible .char-inner {
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .honeycomb-bar {
        grid-template-columns: repeat(2, 1fr);
        gap: 6px;
    }

    .hex-center {
        grid-column: 1 / 3;
        grid-row: 1;
    }

    .hex-sat-1 { grid-column: 1; grid-row: 2; transform: none; }
    .hex-sat-2 { grid-column: 2; grid-row: 2; }
    .hex-sat-3 { grid-column: 1; grid-row: 3; transform: none; }
    .hex-sat-4 { grid-column: 2; grid-row: 3; }
    .hex-sat-5 { grid-column: 1; grid-row: 4; transform: none; }
    .hex-sat-6 { grid-column: 2; grid-row: 4; }

    .room-bar.visible .hex-sat-1,
    .room-bar.visible .hex-sat-3,
    .room-bar.visible .hex-sat-5 {
        transform: none;
    }

    .hex-file-inner {
        padding: 1.5rem 2rem;
    }

    .neon-sign {
        top: 1rem;
        right: 1rem;
    }

    .neon-text {
        font-size: 1.5rem;
    }

    .hex-hero {
        width: min(90vw, 400px);
    }

    .broadcast-hex {
        width: min(90vw, 450px);
    }

    .lastcall-hex {
        width: min(85vw, 380px);
    }

    .broadcast-hex-inner,
    .lastcall-hex-inner,
    .hex-hero-inner {
        padding: 2rem 1.5rem;
    }

    .interference-fragment {
        display: none;
    }
}