body {
    margin: 0;
    background: #020617;
    color: #00ffa6;
    font-family: "Courier New", monospace;
}

/* ⭐ Звёздный фон */
.stars {
    position: fixed;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(2px 2px at 20% 30%, #00ccff, transparent),
        radial-gradient(2px 2px at 70% 60%, #00ffa6, transparent),
        radial-gradient(1px 1px at 40% 80%, #ffffff, transparent),
        radial-gradient(2px 2px at 90% 10%, #00ccff, transparent);
    animation: starsMove 120s linear infinite;
    opacity: 0.25;
    z-index: -1;
}

@keyframes starsMove {
    from { transform: translateY(0); }
    to { transform: translateY(-2000px); }
}

/* 🛰 Терминал */
.terminal {
    max-width: 1000px;
    margin: 40px auto;
    background: rgba(0,0,0,0.85);
    border: 2px solid #00ffa6;
    padding: 40px;
    box-shadow: 0 0 30px #00ffa6;
}

h1 {
    text-align: center;
    text-shadow: 0 0 12px #00ffa6;
}

.status {
    text-align: center;
    margin-bottom: 30px;
    color: #00ccff;
}

/* 🎛 Панели */
.panels {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.panel {
    flex: 1;
    cursor: pointer;
    padding: 15px;
    border: 1px solid #00ffa6;
    background: #001a12;
    transition: 0.3s;
}

.panel:hover {
    box-shadow: 0 0 15px #00ffa6;
    transform: translateY(-3px);
}

.bar {
    height: 22px;
    border: 1px solid #00ccff;
    margin-top: 10px;
    background: #000;
}

.fill {
    height: 100%;
    width: 0%;
    background: #00ccff;
    box-shadow: 0 0 10px #00ccff;
    transition: width 0.5s;
    animation: pulse 1.6s infinite alternate;
}

@keyframes pulse {
    from { opacity: 1; }
    to { opacity: 0.6; }
}

/* 🖥 Консоль */
.console {
    background: #000;
    border: 1px solid #00ffa6;
    padding: 15px;
    height: 220px;
    overflow-y: auto;
    font-size: 14px;
}

/* 📱 Адаптив */
@media (max-width:700px) {
    .panels { flex-direction: column; }
}
