@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&family=Roboto:wght@300;400&display=swap');

.zws-station {
    --zws-bg: #92816f;
    --zws-panel-bg: #2a2d32;
    --zws-border: #4a4d52;
    --zws-text-primary: #ffff;
    --zws-text-secondary: #ffff;
    --zws-highlight: #00e5ff;
    --zws-gauge-bg: #444;
    --zws-gauge-fill: var(--zws-highlight);

    font-family: 'Roboto', sans-serif;
    background: var(--zws-bg);
    color: var(--zws-text-primary);
    max-width: 320px;
    margin: 30px auto;
    padding: 20px;
    border-radius: 15px;
    border: 2px solid var(--zws-border);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5), inset 0 0 5px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    position: relative;
}

.zws-station::before {
    content: "Z3R0 PROTOCOL";
    position: absolute;
    top: 5px;
    right: 10px;
    font-family: 'Orbitron', sans-serif;
    font-size: 8px;
    color: var(--zws-text-secondary);
    opacity: 0.3;
}

.zws-location {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5em;
    text-align: center;
    margin-bottom: 15px;
    color: #fff;
    text-shadow: 0 0 5px var(--zws-highlight);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.zws-main-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
    text-align: center;
}

.zws-main-display .zws-icon {
    width: 70px;
    height: 70px;
}

.zws-main-display .zws-icon svg {
    fill: var(--zws-text-primary);
}

.zws-temp {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.5em;
    font-weight: 700;
    line-height: 1;
}

.zws-temp sup {
    font-size: 0.4em;
    vertical-align: top;
}

.zws-condition {
    text-align: center;
    font-size: 1.1em;
    margin-top: -15px;
    margin-bottom: 20px;
    color: var(--zws-text-secondary);
    text-transform: capitalize;
}

.zws-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.zws-detail-panel {
    background: var(--zws-panel-bg);
    padding: 10px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid var(--zws-border);
}

.zws-detail-panel .zws-label {
    font-size: 0.8em;
    color: var(--zws-text-secondary);
    margin-bottom: 5px;
}

.zws-detail-panel .zws-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2em;
    font-weight: 700;
}

.zws-gauge-container {
    width: 100px;
    height: 50px;
    margin: 5px auto 0;
    overflow: hidden;
    position: relative;
}

.zws-gauge {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: conic-gradient(var(--zws-gauge-fill) 0deg, var(--zws-gauge-bg) 0deg);
    transform: rotate(-90deg);
}

.zws-loading {
    text-align: center;
    font-size: 1.2em;
    padding: 50px 0;
}

.zws-error {
    color: #ff9999;
    text-align: center;
    font-size: 0.9em;
}

.zws-error strong {
    color: #ff4d4d;
}

