:root {
    --neon-green: #0f0;
    --dark-bg: #050505;
    --panel-bg: rgba(0, 20, 0, 0.8);
}

body {
    margin: 0;
    padding: 0;
    background-color: var(--dark-bg);
    color: var(--neon-green);
    font-family: 'Courier New', Courier, monospace;
    overflow: hidden; /* Запрет скролла */
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

/* Фон "Сетка" */
.bg-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: 
        linear-gradient(rgba(0, 255, 0, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 0, 0.05) 1px, transparent 1px);
    background-size: 20px 20px;
    z-index: -1;
}

.container {
    display: flex;
    flex-direction: column;
    height: 100vh;
    justify-content: space-between;
    padding: 20px;
    box-sizing: border-box;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--panel-bg);
    padding: 15px;
    border: 1px solid var(--neon-green);
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.2);
}

.balance-container {
    font-size: 1.2rem;
    font-weight: bold;
    text-shadow: 0 0 5px var(--neon-green);
}

main {
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.laptop-btn {
    background: none;
    border: none;
    cursor: pointer;
    transition: transform 0.1s;
    outline: none;
    position: relative;
    z-index: 10;
}

.laptop-btn:active {
    transform: scale(0.95);
}

.laptop-btn img {
    width: 150px;
    height: 150px;
    filter: drop-shadow(0 0 15px rgba(0, 255, 0, 0.6));
}

/* Анимация летящих цифр */
.floater {
    position: absolute;
    color: white;
    font-weight: bold;
    font-size: 1.5rem;
    pointer-events: none;
    animation: floatUp 1s ease-out forwards;
    z-index: 20;
    text-shadow: 0 0 5px var(--neon-green);
}

@keyframes floatUp {
    0% { transform: translateY(0) scale(1); opacity: 1; }
    100% { transform: translateY(-100px) scale(1.5); opacity: 0; }
}

footer {
    text-align: center;
    font-size: 0.8rem;
    color: #444;
}

.online {
    color: var(--neon-green);
    animation: blink 2s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

