* {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100vh;
    background:
        linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
        url("../background.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    font-family: Consolas, monospace;
}

.logo {
    display: block;
    width: 400px;
    max-width: 90%;
    margin: 30px auto 10px auto;
}

.last-updated-box {
    width: fit-content;
    margin: 0 auto 20px auto;
    background: rgba(0,0,0,0.88);
    color: #00ff66;
    border: 2px solid #00ff66;
    border-radius: 10px;
    padding: 10px 18px;
    text-shadow: 0 0 8px #00ff66;
    box-shadow:
        0 0 12px rgba(0,255,102,.4),
        inset 0 0 8px rgba(0,255,102,.1);
}

.main-content {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    width: 95%;
    margin: 0 auto;
    padding-bottom: 30px;
}

.city-panel,
.filter-panel {
    width: 240px;
    flex-shrink: 0;
    background: rgba(0,0,0,0.88);
    border: 2px solid #00ff66;
    border-radius: 12px;
    padding: 18px;
    color: #00ff66;
    box-shadow: 0 0 20px rgba(0,255,102,.3);
}

.city-panel h3,
.filter-panel h3 {
    margin-top: 0;
    margin-bottom: 14px;
    text-shadow: 0 0 10px #00ff66;
}

.city-panel button,
.filter-panel button {
    display: block;
    width: 100%;
    background: rgba(0,0,0,0.9);
    color: #00ff66;
    border: 1px solid #00ff66;
    padding: 13px 14px;
    margin-bottom: 11px;
    text-align: left;
    font-family: Consolas, monospace;
    font-size: 15px;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.2s ease;
    box-shadow: 0 0 5px rgba(0,255,102,.25);
}

.city-panel button:hover,
.filter-panel button:hover {
    background: #00ff66;
    color: #000;
    transform: translateX(5px);
    box-shadow:
        0 0 15px #00ff66,
        0 0 30px rgba(0,255,102,.4);
}

.city-active,
.filter-active {
    background: #00ff66 !important;
    color: #000 !important;
    font-weight: bold;
    box-shadow:
        0 0 10px #00ff66,
        0 0 20px rgba(0,255,102,.6) !important;
}

.terminal-container {
    flex: 1;
    min-width: 0;
}

.titlebar {
    width: 100%;
    background: rgba(0,0,0,0.92);
    color: #00ff66;
    border: 2px solid #00ff66;
    border-radius: 8px;
    padding: 10px 16px;
    margin-bottom: 12px;
    text-shadow: 0 0 10px #00ff66;
    box-shadow:
        0 0 10px rgba(0,255,102,.4),
        inset 0 0 8px rgba(0,255,102,.1);
}


.terminal {
    width: 100%;
    height: 72vh;
    background: rgba(0,0,0,0.92);
    color: #00ff66;
    border: 2px solid #00ff66;
    border-radius: 10px;
    padding: 20px;
    font-family: Consolas, monospace;
    font-size: 17px;
    line-height: 1.5;
    resize: none;
    outline: none;
    box-shadow:
        0 0 15px #00ff66,
        0 0 30px rgba(0,255,102,0.25),
        inset 0 0 18px rgba(0,255,102,.08);
}

@media (max-width: 1100px) {
    .main-content {
        flex-direction: column;
    }

    .city-panel,
    .filter-panel,
    .terminal-container {
        width: 100%;
    }

    .terminal {
        height: 65vh;
    }
}