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

body{
    background:#111;
    color:#fff;
    font-family:Arial,Helvetica,sans-serif;
    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    overflow:hidden;
}

.background-grid{
    position:fixed;
    inset:0;
    background-image:
        linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
    background-size:40px 40px;
    z-index:-1;
}

.container{
    width:min(90%,700px);
    text-align:center;
    padding:40px;
    border:1px solid #2a2a2a;
    background:#181818;
    border-radius:14px;
    box-shadow:0 0 35px rgba(0,0,0,.4);
}

h1{
    font-size:4rem;
    margin-bottom:25px;
    letter-spacing:2px;
}

.construction{
    color:#ffb300;
    font-size:2rem;
    font-weight:bold;
    margin-bottom:25px;
    animation:pulse 2s infinite;
}

.subtitle{
    color:#cfcfcf;
    line-height:1.7;
    margin-bottom:30px;
}

.divider{
    width:120px;
    height:2px;
    background:#444;
    margin:30px auto;
}

.coming-soon h2{
    margin-bottom:15px;
}

ul{
    list-style:none;
}

li{
    margin:10px 0;
    color:#ddd;
}

footer{
    margin-top:40px;
    color:#888;
    font-size:.9rem;
}

footer span{
    color:#6ee16e;
}

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

.entered-command {
    color: #d0d0d0;
    overflow-wrap: anywhere;
}

.help-output {
    width: 100%;
    margin-top: 12px;
    color: #a9a9a9;
}

.help-heading {
    margin-bottom: 12px;
    color: #d0d0d0;
}

.help-row {
    display: grid;
    grid-template-columns: minmax(120px, 160px) minmax(0, 1fr);
    gap: 18px;
    width: 100%;
    margin: 9px 0;
}

.help-command {
    color: #7dff7d;
    font-weight: bold;
    overflow-wrap: anywhere;
}

.help-description {
    min-width: 0;
    color: #a9a9a9;
    overflow-wrap: anywhere;
    word-break: break-word;
}

@media (max-width: 600px) {
    .help-row {
        grid-template-columns: 1fr;
        gap: 2px;
        margin-bottom: 14px;
    }

    .help-description {
        padding-left: 14px;
    }
}