@import url('https://fonts.googleapis.com/css2?family=VT323&family=Press+Start+2P&display=swap');

:root {
    --primary-green: #00ff88;
    --secondary-blue: #00aaff;
    --warning-orange: #ffaa00;
    --danger-red: #ff4466;
    --bg-dark: #0a1628;
    --bg-panel: rgba(10, 22, 40, 0.95);
    --border-glow: 0 0 20px rgba(0, 255, 136, 0.3);
}

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

body {
    overflow: hidden;
    background: var(--bg-dark);
    font-family: 'VT323', monospace;
}

#game-container {
    width: 100vw;
    height: 100vh;
    position: relative;
}

/* ============ UI OVERLAY ============ */
#ui-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 100;
}

/* ============ RIGHT HUD STACK (prevents overlap) ============ */
#hud-right {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 280px;
    max-width: calc(100vw - 40px);
    max-height: calc(100vh - 40px);
    pointer-events: none;
}

#status {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--bg-panel);
    border: 2px solid var(--secondary-blue);
    padding: 15px 25px;
    color: var(--secondary-blue);
    font-family: 'Press Start 2P', cursive;
    font-size: 10px;
    text-transform: uppercase;
    box-shadow: var(--border-glow);
}

#instructions {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--bg-panel);
    border: 2px solid var(--primary-green);
    padding: 15px 20px;
    color: var(--primary-green);
    font-size: 14px;
    line-height: 1.8;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--border-glow);
}

#instructions kbd {
    background: var(--primary-green);
    color: var(--bg-dark);
    padding: 2px 8px;
    margin: 0 3px;
    font-family: 'Press Start 2P', cursive;
    font-size: 8px;
}

/* ============ ENERGY BAR ============ */
#energy-container {
    position: relative;
    top: auto;
    right: auto;
    background: var(--bg-panel);
    border: 2px solid var(--warning-orange);
    padding: 15px 20px;
    width: 100%;
    min-width: 0;
}

#energy-label {
    color: var(--warning-orange);
    font-family: 'Press Start 2P', cursive;
    font-size: 10px;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
}

#energy-bar-outer {
    width: 100%;
    height: 20px;
    border: 2px solid var(--warning-orange);
    background: var(--bg-dark);
}

#energy-bar-inner {
    height: 100%;
    width: 100%;
    background: var(--warning-orange);
    transition: width 0.3s, background-color 0.3s;
}

#energy-bar-inner.low {
    background: var(--danger-red);
    animation: pulse-energy 0.5s ease-in-out infinite;
}

@keyframes pulse-energy {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

#energy-effect {
    color: var(--primary-green);
    font-size: 12px;
    margin-top: 8px;
    min-height: 16px;
}

/* ============ PUZZLE PROGRESS ============ */
#puzzle-container {
    position: relative;
    top: auto;
    right: auto;
    background: var(--bg-panel);
    border: 2px solid var(--primary-green);
    padding: 15px 20px;
    width: 100%;
    min-width: 0;
}

#puzzle-label {
    color: var(--primary-green);
    font-family: 'Press Start 2P', cursive;
    font-size: 10px;
    margin-bottom: 10px;
}

#collected-fragments {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.fragment-slot {
    width: 30px;
    height: 30px;
    border: 2px solid var(--primary-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Press Start 2P', cursive;
    font-size: 12px;
    color: var(--primary-green);
    background: var(--bg-dark);
}

.fragment-slot.filled {
    background: rgba(0, 255, 136, 0.2);
    animation: fragment-glow 1s ease-in-out;
}

@keyframes fragment-glow {
    0% { box-shadow: 0 0 20px var(--primary-green); }
    100% { box-shadow: none; }
}

#terminals-visited {
    color: var(--secondary-blue);
    font-size: 12px;
}

/* ============ INTERACTION PROMPT ============ */
#interaction-prompt {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--bg-panel);
    border: 3px solid var(--warning-orange);
    padding: 20px 40px;
    color: var(--warning-orange);
    font-family: 'Press Start 2P', cursive;
    font-size: 12px;
    text-transform: uppercase;
    display: none;
    animation: pulse 1s ease-in-out infinite;
    box-shadow: 0 0 30px rgba(255, 170, 0, 0.4);
    text-align: center;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* ============ CROSSHAIR ============ */
#crosshair {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    pointer-events: none;
    z-index: 150;
}

#crosshair::before, #crosshair::after {
    content: '';
    position: absolute;
    background: var(--primary-green);
}

#crosshair::before {
    width: 2px;
    height: 20px;
    left: 9px;
    top: 0;
}

#crosshair::after {
    width: 20px;
    height: 2px;
    top: 9px;
    left: 0;
}

/* ============ VENDING MACHINE UI ============ */
#vending-ui {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 200;
}

#vending-ui.active {
    display: flex;
}

#vending-panel {
    background: var(--bg-panel);
    border: 4px solid var(--secondary-blue);
    padding: 40px;
    max-width: 600px;
    width: 90%;
}

#vending-title {
    color: var(--secondary-blue);
    font-family: 'Press Start 2P', cursive;
    font-size: 16px;
    text-align: center;
    margin-bottom: 30px;
    text-transform: uppercase;
}

#drink-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 30px;
}

.drink-option {
    display: flex;
    align-items: center;
    padding: 15px;
    border: 2px solid var(--primary-green);
    background: var(--bg-dark);
    cursor: pointer;
    transition: all 0.2s;
    pointer-events: auto;
}

.drink-option:hover {
    background: rgba(0, 255, 136, 0.1);
    transform: translateX(10px);
}

.drink-option.selected {
    border-color: var(--warning-orange);
    background: rgba(255, 170, 0, 0.1);
}

.drink-number {
    font-family: 'Press Start 2P', cursive;
    font-size: 14px;
    color: var(--warning-orange);
    margin-right: 15px;
    min-width: 30px;
}

.drink-name {
    color: var(--primary-green);
    font-size: 18px;
    flex: 1;
}

.drink-effect {
    color: var(--secondary-blue);
    font-size: 14px;
}

#vending-display {
    border: 3px solid var(--secondary-blue);
    background: #001a33;
    padding: 20px;
    margin-bottom: 20px;
    min-height: 80px;
}

#vending-display-text {
    color: var(--primary-green);
    font-family: 'Press Start 2P', cursive;
    font-size: 12px;
    text-align: center;
    margin-bottom: 15px;
}

#vending-progress-bar {
    width: 100%;
    height: 15px;
    border: 2px solid var(--primary-green);
    background: var(--bg-dark);
    display: none;
}

#vending-progress-fill {
    height: 100%;
    width: 0%;
    background: var(--primary-green);
    transition: width 0.1s linear;
}

#arm-animation {
    display: none;
    justify-content: center;
    align-items: center;
    height: 100px;
    margin-top: 20px;
}

.pixel-arm {
    color: var(--primary-green);
    font-size: 40px;
    animation: arm-reach 1s ease-in-out;
}

@keyframes arm-reach {
    0% { transform: translateX(-100px) rotate(0deg); opacity: 0; }
    30% { transform: translateX(0) rotate(0deg); opacity: 1; }
    50% { transform: translateX(0) rotate(-20deg); }
    70% { transform: translateX(0) rotate(0deg); }
    100% { transform: translateX(-100px) rotate(0deg); opacity: 0; }
}

.pixel-cup {
    font-size: 30px;
    margin-left: 10px;
    animation: cup-grabbed 1s ease-in-out;
}

@keyframes cup-grabbed {
    0%, 30% { opacity: 1; transform: translateY(0); }
    50% { opacity: 1; transform: translateY(-10px); }
    100% { opacity: 0; transform: translateX(-100px) translateY(-10px); }
}

#vending-footer {
    color: var(--warning-orange);
    font-family: 'Press Start 2P', cursive;
    font-size: 10px;
    text-align: center;
}

/* ============ TERMINAL SCREEN ============ */
#screen-view {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    display: none;
    z-index: 200;
}

#screen-view.active {
    display: block;
}

#terminal-screen {
    width: 100%;
    height: 100%;
    background: var(--bg-dark);
    padding: 40px;
    overflow: hidden;
    position: relative;
}

#terminal-screen::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        0deg,
        rgba(0, 255, 136, 0.03) 0px,
        rgba(0, 255, 136, 0.03) 1px,
        transparent 1px,
        transparent 2px
    );
    pointer-events: none;
    animation: scanlines 0.1s linear infinite;
}

@keyframes scanlines {
    0% { transform: translateY(0); }
    100% { transform: translateY(2px); }
}

#terminal-header {
    color: var(--secondary-blue);
    font-family: 'Press Start 2P', cursive;
    font-size: 14px;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--secondary-blue);
    padding-bottom: 15px;
    display: flex;
    justify-content: space-between;
}

#terminal-id {
    color: var(--warning-orange);
}

#terminal-content {
    color: var(--primary-green);
    font-family: 'VT323', monospace;
    font-size: 18px;
    line-height: 1.5;
    white-space: pre-wrap;
    overflow-y: auto;
    height: calc(100% - 180px);
}

#terminal-hint {
    position: absolute;
    bottom: 80px;
    left: 40px;
    right: 40px;
    padding: 20px;
    border: 2px solid var(--warning-orange);
    background: rgba(255, 170, 0, 0.1);
}

#terminal-hint-label {
    color: var(--warning-orange);
    font-family: 'Press Start 2P', cursive;
    font-size: 10px;
    margin-bottom: 10px;
}

#terminal-hint-text {
    color: var(--primary-green);
    font-size: 16px;
}

#terminal-footer {
    position: absolute;
    bottom: 20px;
    left: 40px;
    color: var(--warning-orange);
    font-family: 'Press Start 2P', cursive;
    font-size: 10px;
}

#fragment-collected {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--bg-panel);
    border: 4px solid var(--primary-green);
    padding: 40px 60px;
    display: none;
    z-index: 250;
    text-align: center;
    animation: pop-in 0.3s ease-out;
}

@keyframes pop-in {
    0% { transform: translate(-50%, -50%) scale(0); }
    100% { transform: translate(-50%, -50%) scale(1); }
}

#fragment-collected.active {
    display: block;
}

#fragment-collected h2 {
    color: var(--primary-green);
    font-family: 'Press Start 2P', cursive;
    font-size: 14px;
    margin-bottom: 20px;
}

#fragment-letter {
    font-family: 'Press Start 2P', cursive;
    font-size: 48px;
    color: var(--warning-orange);
    text-shadow: 0 0 20px var(--warning-orange);
}

/* ============ SOLUTION INPUT ============ */
#solution-panel {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 200;
}

#solution-panel.active {
    display: flex;
}

#solution-content {
    background: var(--bg-panel);
    border: 4px solid var(--primary-green);
    padding: 40px;
    max-width: 500px;
    width: 90%;
    text-align: center;
}

#solution-content h2 {
    color: var(--primary-green);
    font-family: 'Press Start 2P', cursive;
    font-size: 14px;
    margin-bottom: 30px;
}

#solution-input {
    width: 100%;
    padding: 15px;
    font-family: 'Press Start 2P', cursive;
    font-size: 20px;
    text-align: center;
    background: var(--bg-dark);
    border: 3px solid var(--primary-green);
    color: var(--primary-green);
    text-transform: uppercase;
    margin-bottom: 20px;
    pointer-events: auto;
}

#solution-input:focus {
    outline: none;
    box-shadow: 0 0 20px var(--primary-green);
}

#solution-feedback {
    color: var(--danger-red);
    font-family: 'Press Start 2P', cursive;
    font-size: 10px;
    min-height: 20px;
    margin-bottom: 20px;
}

#solution-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

#solution-buttons button {
    padding: 15px 30px;
    font-family: 'Press Start 2P', cursive;
    font-size: 10px;
    cursor: pointer;
    border: 2px solid;
    background: var(--bg-dark);
    pointer-events: auto;
    transition: all 0.2s;
}

#submit-solution {
    border-color: var(--primary-green);
    color: var(--primary-green);
}

#submit-solution:hover {
    background: rgba(0, 255, 136, 0.2);
}

#cancel-solution {
    border-color: var(--danger-red);
    color: var(--danger-red);
}

#cancel-solution:hover {
    background: rgba(255, 68, 102, 0.2);
}

/* ============ VICTORY SCREEN ============ */
#victory-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-dark);
    display: none;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 300;
}

#victory-screen.active {
    display: flex;
}

#victory-screen h1 {
    color: var(--primary-green);
    font-family: 'Press Start 2P', cursive;
    font-size: 32px;
    margin-bottom: 30px;
    animation: victory-glow 1s ease-in-out infinite alternate;
}

@keyframes victory-glow {
    0% { text-shadow: 0 0 20px var(--primary-green); }
    100% { text-shadow: 0 0 40px var(--primary-green), 0 0 60px var(--primary-green); }
}

#victory-screen p {
    color: var(--secondary-blue);
    font-size: 20px;
    margin-bottom: 20px;
}

#victory-stats {
    color: var(--warning-orange);
    font-family: 'Press Start 2P', cursive;
    font-size: 12px;
    margin-top: 30px;
}

#play-again {
    margin-top: 40px;
    padding: 20px 40px;
    font-family: 'Press Start 2P', cursive;
    font-size: 14px;
    background: var(--bg-dark);
    border: 3px solid var(--primary-green);
    color: var(--primary-green);
    cursor: pointer;
    pointer-events: auto;
    transition: all 0.2s;
}

#play-again:hover {
    background: rgba(0, 255, 136, 0.2);
    transform: scale(1.05);
}

/* ============ GAME OVER SCREEN ============ */
#gameover-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-dark);
    display: none;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 300;
}

#gameover-screen.active {
    display: flex;
}

#gameover-screen h1 {
    color: var(--danger-red);
    font-family: 'Press Start 2P', cursive;
    font-size: 32px;
    margin-bottom: 30px;
    animation: gameover-flicker 0.5s ease-in-out infinite;
}

@keyframes gameover-flicker {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

#gameover-screen p {
    color: var(--secondary-blue);
    font-size: 18px;
    margin-bottom: 10px;
}

#retry-btn {
    margin-top: 40px;
    padding: 20px 40px;
    font-family: 'Press Start 2P', cursive;
    font-size: 14px;
    background: var(--bg-dark);
    border: 3px solid var(--danger-red);
    color: var(--danger-red);
    cursor: pointer;
    pointer-events: auto;
    transition: all 0.2s;
}

#retry-btn:hover {
    background: rgba(255, 68, 102, 0.2);
}

/* ============ LOADING SCREEN ============ */
#loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-dark);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 1000;
}

#loading h1 {
    color: var(--primary-green);
    font-family: 'Press Start 2P', cursive;
    font-size: 24px;
    margin-bottom: 40px;
    text-transform: uppercase;
    animation: flicker 1s ease-in-out infinite;
}

@keyframes flicker {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.loading-bar {
    width: 300px;
    height: 20px;
    border: 3px solid var(--primary-green);
    position: relative;
}

.loading-progress {
    height: 100%;
    background: var(--primary-green);
    width: 0%;
    animation: load 2s ease-out forwards;
}

@keyframes load {
    0% { width: 0%; }
    100% { width: 100%; }
}

#loading p {
    color: var(--secondary-blue);
    font-family: 'VT323', monospace;
    font-size: 16px;
    margin-top: 20px;
    text-transform: uppercase;
}

/* ============ MASTER TERMINAL INDICATOR ============ */
#master-indicator {
    position: absolute;
    bottom: 100px;
    right: 20px;
    background: var(--bg-panel);
    border: 2px solid var(--danger-red);
    padding: 15px 20px;
    display: none;
}

#master-indicator.active {
    display: block;
}

#master-indicator p {
    color: var(--danger-red);
    font-family: 'Press Start 2P', cursive;
    font-size: 10px;
}

/* ============ SCREEN EFFECTS ============ */
.screen-blur {
    filter: blur(3px);
}

.screen-drunk {
    animation: drunk 2s ease-in-out infinite;
}

@keyframes drunk {
    0%, 100% { transform: rotate(0deg) scale(1); }
    25% { transform: rotate(1deg) scale(1.01); }
    75% { transform: rotate(-1deg) scale(0.99); }
}

.screen-fast {
    filter: contrast(1.2) saturate(1.3);
}

/* ============ V2 UI ADDITIONS ============ */
#toast {
    position: absolute;
    top: 44px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.65);
    border: 1px solid rgba(0, 255, 136, 0.35);
    color: #00ff88;
    padding: 8px 12px;
    font-family: 'Press Start 2P', cursive;
    font-size: 9px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

#toast.active {
    opacity: 1;
}

#alert-container {
    position: absolute;
    top: 70px;
    left: 20px;
    width: 220px;
    background: var(--bg-panel);
    border: 2px solid rgba(255, 0, 0, 0.4);
    padding: 10px;
}

#alert-label {
    display: flex;
    justify-content: space-between;
    font-family: 'Press Start 2P', cursive;
    font-size: 9px;
    color: #ff5555;
    margin-bottom: 8px;
}

#alert-bar-outer {
    width: 100%;
    height: 10px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

#alert-bar-inner {
    width: 0%;
    height: 100%;
    background: rgba(255, 85, 85, 0.9);
}

body.alert-high #alert-container {
    box-shadow: 0 0 18px rgba(255, 0, 0, 0.35);
}

#objectives-container {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    max-width: none;
    background: var(--bg-panel);
    border: 2px solid rgba(0, 170, 255, 0.4);
    padding: 10px;
    opacity: 0.95;
}

#objectives-label {
    font-family: 'Press Start 2P', cursive;
    font-size: 9px;
    color: #00aaff;
    margin-bottom: 8px;
}

#objectives-list {
    font-family: 'Press Start 2P', cursive;
    font-size: 8px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    max-height: 170px;
    overflow-y: auto;
    padding-right: 6px;
}

/* small, subtle scrollbar */
#objectives-list::-webkit-scrollbar {
    width: 6px;
}
#objectives-list::-webkit-scrollbar-thumb {
    background: rgba(0, 170, 255, 0.35);
    border-radius: 6px;
}

.obj-row {
    display: flex;
    gap: 8px;
    align-items: baseline;
    padding: 3px 0;
}

.obj-row.done .obj-text {
    color: rgba(0, 255, 136, 0.9);
    text-decoration: line-through;
}

.obj-dot {
    width: 16px;
    color: rgba(255, 255, 255, 0.7);
}

.obj-row.done .obj-dot {
    color: rgba(0, 255, 136, 1);
}

#inventory-container {
    position: absolute;
    top: 220px;
    left: 20px;
    width: 220px;
    background: var(--bg-panel);
    border: 2px solid rgba(0, 255, 136, 0.25);
    padding: 10px;
}

#inventory-label {
    font-family: 'Press Start 2P', cursive;
    font-size: 9px;
    color: #00ff88;
    margin-bottom: 8px;
}

#inventory-items {
    font-family: 'Press Start 2P', cursive;
    font-size: 8px;
    color: rgba(255, 255, 255, 0.85);
}

.inv-item {
    display: flex;
    justify-content: space-between;
    padding: 4px 0;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.15);
}

.inv-empty {
    color: rgba(255, 255, 255, 0.5);
}

/* Dialogue overlay */
#dialogue-ui {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: none;
    align-items: flex-end;
    justify-content: center;
    padding: 30px;
    background: rgba(0, 0, 0, 0.35);
    z-index: 999;
}

#dialogue-ui.active {
    display: flex;
}

#dialogue-box {
    width: min(720px, 90vw);
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid rgba(0, 170, 255, 0.6);
    padding: 16px;
}

#dialogue-title {
    font-family: 'Press Start 2P', cursive;
    font-size: 10px;
    color: #00aaff;
    margin-bottom: 10px;
}

#dialogue-text {
    white-space: pre-wrap;
    font-family: 'Press Start 2P', cursive;
    font-size: 9px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.92);
    min-height: 60px;
}

#dialogue-hint {
    margin-top: 10px;
    font-family: 'Press Start 2P', cursive;
    font-size: 8px;
    color: rgba(255, 255, 255, 0.55);
}

/* Hack overlay */
#hack-ui {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.55);
    z-index: 999;
}

#hack-ui.active {
    display: flex;
}

#hack-panel {
    width: min(720px, 92vw);
    background: rgba(0, 0, 0, 0.82);
    border: 2px solid rgba(0, 255, 136, 0.5);
    padding: 18px;
}

#hack-title {
    font-family: 'Press Start 2P', cursive;
    font-size: 10px;
    color: #00ff88;
    margin-bottom: 10px;
}

#hack-desc {
    font-family: 'Press Start 2P', cursive;
    font-size: 8px;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 14px;
    line-height: 1.6;
}

#hack-bar {
    position: relative;
    width: 100%;
    height: 14px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.25);
    overflow: hidden;
}

#hack-green {
    position: absolute;
    left: 40%;
    width: 20%;
    height: 100%;
    background: rgba(0, 255, 136, 0.28);
}

#hack-cursor {
    position: absolute;
    left: 0%;
    width: 10px;
    height: 100%;
    background: rgba(0, 170, 255, 0.9);
}

#hack-status {
    margin-top: 12px;
    font-family: 'Press Start 2P', cursive;
    font-size: 9px;
    color: rgba(255, 255, 255, 0.9);
}

#hack-footer {
    margin-top: 10px;
    font-family: 'Press Start 2P', cursive;
    font-size: 8px;
    color: rgba(255, 255, 255, 0.5);
}
