.zlw-widget {
    --zlw-accent: #3ee0c2;
    --zlw-accent-2: #5aaeff;
    --zlw-accent-rgb: 62, 224, 194;
    --zlw-uv-color: #69dfbe;
    --zlw-ink: #111827;
    --zlw-muted: rgba(17, 24, 39, 0.58);
    --zlw-soft: rgba(17, 24, 39, 0.08);
    --zlw-line: rgba(17, 24, 39, 0.12);
    --zlw-surface: rgba(255, 255, 255, 0.045);
    --zlw-glow-alpha: 0.18;
    --zlw-pointer-x: 50%;
    --zlw-pointer-y: 50%;
    --zlw-shift-x: 0px;
    --zlw-shift-y: 0px;
    --zlw-orb-speed: 11s;
    position: relative;
    isolation: isolate;
    width: min(100%, 780px);
    min-height: 360px;
    box-sizing: border-box;
    overflow: hidden;
    padding: clamp(22px, 4.4vw, 42px);
    border: 1px solid transparent;
    border-radius: clamp(24px, 4vw, 38px);
    color: var(--zlw-ink);
    font-family: inherit;
    background:
        linear-gradient(var(--zlw-surface), var(--zlw-surface)) padding-box,
        linear-gradient(128deg, rgba(255,255,255,.62), rgba(var(--zlw-accent-rgb), .34) 44%, rgba(255,255,255,.08) 82%) border-box;
    box-shadow:
        0 24px 80px rgba(8, 13, 28, .09),
        inset 0 1px 0 rgba(255, 255, 255, .28);
    backdrop-filter: blur(22px) saturate(138%);
    -webkit-backdrop-filter: blur(22px) saturate(138%);
    transition: box-shadow .6s ease, border-color .6s ease, background .8s ease;
}

.zlw-widget *,
.zlw-widget *::before,
.zlw-widget *::after {
    box-sizing: border-box;
}

.zlw-widget::before,
.zlw-widget::after {
    content: "";
    position: absolute;
    z-index: -2;
    pointer-events: none;
    border-radius: 999px;
    filter: blur(34px);
    transition: opacity .8s ease, transform .8s cubic-bezier(.2,.8,.2,1), background .8s ease;
}

.zlw-widget::before {
    width: 280px;
    height: 280px;
    right: -82px;
    top: -108px;
    opacity: calc(.28 + var(--zlw-glow-alpha));
    background: radial-gradient(circle, rgba(var(--zlw-accent-rgb), .54), transparent 68%);
}

.zlw-widget::after {
    width: 240px;
    height: 240px;
    left: -112px;
    bottom: -152px;
    opacity: .24;
    background: radial-gradient(circle, color-mix(in srgb, var(--zlw-accent-2) 55%, transparent), transparent 68%);
}

.zlw-widget:hover {
    box-shadow:
        0 32px 110px rgba(8, 13, 28, .13),
        0 0 56px rgba(var(--zlw-accent-rgb), var(--zlw-glow-alpha)),
        inset 0 1px 0 rgba(255, 255, 255, .34);
}

.zlw-widget:hover::before {
    transform: translate3d(-12px, 12px, 0) scale(1.08);
}

.zlw-widget:hover::after {
    transform: translate3d(14px, -10px, 0) scale(1.06);
}

.zlw-pointer-glow {
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: 0;
    pointer-events: none;
    background: radial-gradient(360px circle at var(--zlw-pointer-x) var(--zlw-pointer-y), rgba(var(--zlw-accent-rgb), .17), transparent 63%);
    transition: opacity .35s ease;
}

.zlw-widget:hover .zlw-pointer-glow { opacity: 1; }

.zlw-grain {
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    opacity: .18;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.84' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.16'/%3E%3C/svg%3E");
    mix-blend-mode: soft-light;
}

.zlw-text-light {
    --zlw-ink: #f8fafc;
    --zlw-muted: rgba(248, 250, 252, 0.62);
    --zlw-soft: rgba(248, 250, 252, 0.10);
    --zlw-line: rgba(248, 250, 252, 0.16);
}

.zlw-text-dark {
    --zlw-ink: #111827;
    --zlw-muted: rgba(17, 24, 39, 0.58);
    --zlw-soft: rgba(17, 24, 39, 0.08);
    --zlw-line: rgba(17, 24, 39, 0.12);
}

@media (prefers-color-scheme: dark) {
    .zlw-text-auto {
        --zlw-ink: #f8fafc;
        --zlw-muted: rgba(248, 250, 252, 0.62);
        --zlw-soft: rgba(248, 250, 252, 0.10);
        --zlw-line: rgba(248, 250, 252, 0.16);
    }
}

.zlw-topbar,
.zlw-layout,
.zlw-lower,
.zlw-footer {
    position: relative;
    z-index: 2;
}

.zlw-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 34px;
}

.zlw-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    color: var(--zlw-muted);
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.zlw-live-dot {
    width: 7px;
    height: 7px;
    flex: 0 0 7px;
    border-radius: 50%;
    background: var(--zlw-accent);
    box-shadow: 0 0 0 0 rgba(var(--zlw-accent-rgb), .45);
    animation: zlw-live 2.4s ease-out infinite;
}

.zlw-location-trigger {
    appearance: none;
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: 7px;
    max-width: 58%;
    min-height: 34px;
    margin: 0;
    padding: 7px 10px;
    border: 1px solid var(--zlw-line);
    border-radius: 999px;
    color: var(--zlw-ink);
    background: rgba(255,255,255,.035);
    font: inherit;
    cursor: pointer;
    transition: border-color .3s ease, background .3s ease, transform .3s ease;
}

.zlw-location-trigger:hover,
.zlw-location-trigger:focus-visible {
    border-color: rgba(var(--zlw-accent-rgb), .48);
    background: rgba(var(--zlw-accent-rgb), .06);
    outline: none;
    transform: translateY(-1px);
}

.zlw-location-fixed { cursor: default; }
.zlw-location-fixed:hover { transform: none; }

.zlw-location-trigger svg {
    width: 14px;
    height: 14px;
    flex: 0 0 14px;
    fill: none;
    stroke: var(--zlw-accent);
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.zlw-location {
    overflow: hidden;
    color: var(--zlw-ink);
    font-size: 12px;
    font-weight: 650;
    letter-spacing: .01em;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.zlw-location-action {
    color: var(--zlw-muted);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    white-space: nowrap;
}

.zlw-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(168px, 228px);
    align-items: center;
    gap: clamp(22px, 4vw, 54px);
    min-height: 188px;
    padding: clamp(22px, 4vw, 34px) 0 clamp(18px, 3vw, 26px);
}

.zlw-copy { min-width: 0; }

.zlw-temperature-wrap {
    display: flex;
    align-items: flex-start;
    width: max-content;
    max-width: 100%;
    color: var(--zlw-ink);
    font-variant-numeric: tabular-nums;
    letter-spacing: -.075em;
    line-height: .82;
}

.zlw-temperature {
    font-size: clamp(74px, 14vw, 132px);
    font-weight: 440;
}

.zlw-unit {
    margin: .08em 0 0 .12em;
    font-size: clamp(20px, 3.4vw, 34px);
    font-weight: 560;
    letter-spacing: -.04em;
}

.zlw-condition {
    margin: clamp(16px, 2.6vw, 24px) 0 18px;
    color: var(--zlw-ink);
    font-size: clamp(17px, 2.5vw, 24px);
    font-weight: 520;
    letter-spacing: -.025em;
    line-height: 1.22;
}

.zlw-hover-ink {
    transition: color .45s ease, opacity .45s ease;
}

@supports ((-webkit-background-clip: text) or (background-clip: text)) {
    .zlw-widget:hover .zlw-hover-ink {
        color: transparent;
        background-image: linear-gradient(104deg, var(--zlw-accent), var(--zlw-accent-2));
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
}

.zlw-microstats {
    display: flex;
    align-items: center;
    gap: clamp(10px, 2vw, 18px);
    color: var(--zlw-muted);
}

.zlw-microstats > span {
    display: grid;
    gap: 3px;
    min-width: 0;
}

.zlw-microstats small {
    font-size: 8px;
    font-weight: 750;
    letter-spacing: .13em;
    line-height: 1;
}

.zlw-microstats strong {
    overflow: hidden;
    color: var(--zlw-ink);
    font-size: 12px;
    font-weight: 620;
    letter-spacing: -.01em;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.zlw-microstats i {
    width: 1px;
    height: 22px;
    flex: 0 0 1px;
    background: var(--zlw-line);
}

.zlw-visual {
    display: grid;
    place-items: center;
    min-width: 0;
}

.zlw-orb {
    position: relative;
    display: grid;
    place-items: center;
    width: clamp(148px, 23vw, 214px);
    aspect-ratio: 1;
    border-radius: 50%;
    transform: translate3d(var(--zlw-shift-x), var(--zlw-shift-y), 0);
    transition: transform .45s cubic-bezier(.2,.8,.2,1);
}

.zlw-orb::before {
    content: "";
    position: absolute;
    inset: 13%;
    border: 1px solid rgba(var(--zlw-accent-rgb), .26);
    border-radius: 50%;
    background:
        radial-gradient(circle at 35% 28%, rgba(255,255,255,.19), transparent 38%),
        radial-gradient(circle, rgba(var(--zlw-accent-rgb), .11), transparent 68%);
    box-shadow:
        inset 0 0 34px rgba(var(--zlw-accent-rgb), .09),
        0 0 48px rgba(var(--zlw-accent-rgb), .08);
}

.zlw-orb::after {
    content: "";
    position: absolute;
    inset: 2%;
    border-radius: 50%;
    background: conic-gradient(from 40deg, transparent 0 57%, var(--zlw-accent) 69%, var(--zlw-accent-2) 78%, transparent 88%);
    -webkit-mask: radial-gradient(circle, transparent 68%, #000 69% 72%, transparent 73%);
    mask: radial-gradient(circle, transparent 68%, #000 69% 72%, transparent 73%);
    opacity: .72;
    animation: zlw-spin var(--zlw-orb-speed) linear infinite;
}

.zlw-orbit {
    position: absolute;
    border: 1px solid var(--zlw-line);
    border-radius: 50%;
}

.zlw-orbit-a {
    inset: 0;
    transform: rotate(-19deg) scaleY(.58);
}

.zlw-orbit-b {
    inset: 8%;
    opacity: .58;
    transform: rotate(37deg) scaleY(.72);
}

.zlw-orbit-dot {
    position: absolute;
    top: 13%;
    right: 18%;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--zlw-accent);
    box-shadow: 0 0 18px rgba(var(--zlw-accent-rgb), .8);
    animation: zlw-float 3.2s ease-in-out infinite;
}

.zlw-weather-symbol {
    position: relative;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 54%;
    color: var(--zlw-ink);
    filter: drop-shadow(0 0 18px rgba(var(--zlw-accent-rgb), .12));
}

.zlw-weather-symbol svg {
    display: block;
    width: 100%;
    height: auto;
    overflow: visible;
}

.zlw-weather-symbol path,
.zlw-weather-symbol circle,
.zlw-weather-symbol line,
.zlw-weather-symbol polyline {
    fill: none;
    stroke: currentColor;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
    vector-effect: non-scaling-stroke;
}

.zlw-icon-sun .zlw-rays { transform-origin: 60px 60px; animation: zlw-spin 18s linear infinite; }
.zlw-icon-partly .zlw-mini-sun { transform-origin: 40px 37px; animation: zlw-spin 20s linear infinite; }
.zlw-icon-cloud .zlw-cloud,
.zlw-icon-partly .zlw-cloud,
.zlw-icon-rain .zlw-cloud,
.zlw-icon-snow .zlw-cloud,
.zlw-icon-storm .zlw-cloud { animation: zlw-cloud 4.8s ease-in-out infinite; }
.zlw-icon-rain .zlw-drop { animation: zlw-rain 1.35s ease-in-out infinite; }
.zlw-icon-rain .zlw-drop:nth-child(2) { animation-delay: -.45s; }
.zlw-icon-rain .zlw-drop:nth-child(3) { animation-delay: -.9s; }
.zlw-icon-snow .zlw-flake { animation: zlw-snow 2.8s ease-in-out infinite; }
.zlw-icon-snow .zlw-flake:nth-child(2) { animation-delay: -.9s; }
.zlw-icon-snow .zlw-flake:nth-child(3) { animation-delay: -1.7s; }
.zlw-icon-storm .zlw-bolt { stroke: var(--zlw-accent); animation: zlw-bolt 2.8s ease-in-out infinite; }
.zlw-icon-fog .zlw-fog-line { animation: zlw-fog 3.8s ease-in-out infinite; }
.zlw-icon-fog .zlw-fog-line:nth-child(2) { animation-delay: -.8s; }
.zlw-icon-fog .zlw-fog-line:nth-child(3) { animation-delay: -1.6s; }
.zlw-icon-moon .zlw-moon-glow { stroke: var(--zlw-accent); animation: zlw-moon 4s ease-in-out infinite; }

.zlw-lower {
    display: grid;
    grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
    gap: 18px;
    padding-top: 20px;
    border-top: 1px solid var(--zlw-line);
}

.zlw-uv-block,
.zlw-advice {
    min-width: 0;
    border: 1px solid var(--zlw-line);
    border-radius: 18px;
    background: rgba(255,255,255,.028);
}

.zlw-uv-block { padding: 14px 16px 13px; }

.zlw-uv-head {
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: baseline;
    gap: 9px;
}

.zlw-section-label {
    color: var(--zlw-muted);
    font-size: 8px;
    font-weight: 780;
    letter-spacing: .14em;
    line-height: 1;
}

.zlw-uv-value {
    color: var(--zlw-ink);
    font-size: 22px;
    font-weight: 560;
    letter-spacing: -.05em;
    line-height: 1;
}

.zlw-uv-level {
    color: var(--zlw-uv-color);
    font-size: 9px;
    font-weight: 760;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.zlw-uv-track {
    height: 3px;
    margin-top: 12px;
    overflow: hidden;
    border-radius: 999px;
    background: var(--zlw-soft);
}

.zlw-uv-fill {
    display: block;
    width: 0;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--zlw-accent), var(--zlw-uv-color));
    box-shadow: 0 0 14px color-mix(in srgb, var(--zlw-uv-color) 62%, transparent);
    transition: width .9s cubic-bezier(.2,.8,.2,1), background .6s ease;
}

.zlw-uv-foot {
    margin-top: 9px;
    color: var(--zlw-muted);
    font-size: 8px;
    font-weight: 690;
    letter-spacing: .08em;
}

.zlw-uv-foot span { color: var(--zlw-ink); }

.zlw-advice {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    padding: 13px 16px;
}

.zlw-advice-mark {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border: 1px solid rgba(var(--zlw-accent-rgb), .35);
    border-radius: 50%;
    color: var(--zlw-accent);
    background: rgba(var(--zlw-accent-rgb), .07);
}

.zlw-advice-mark svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.zlw-spf-advice {
    margin: 5px 0 0;
    color: var(--zlw-ink);
    font-size: clamp(12px, 1.65vw, 14px);
    font-weight: 520;
    letter-spacing: -.012em;
    line-height: 1.35;
}

.zlw-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-top: 14px;
    color: var(--zlw-muted);
    font-size: 7.5px;
    font-weight: 690;
    letter-spacing: .12em;
}

.zlw-error-panel {
    position: absolute;
    inset: 0;
    z-index: 20;
    display: grid;
    place-content: center;
    justify-items: center;
    gap: 14px;
    padding: 30px;
    text-align: center;
    background: color-mix(in srgb, var(--zlw-surface) 78%, transparent);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.zlw-error-panel[hidden] { display: none; }
.zlw-error-panel p { max-width: 34ch; margin: 0; color: var(--zlw-ink); font-size: 15px; line-height: 1.5; }
.zlw-retry {
    padding: 9px 14px;
    border: 1px solid rgba(var(--zlw-accent-rgb), .4);
    border-radius: 999px;
    color: var(--zlw-ink);
    background: rgba(var(--zlw-accent-rgb), .08);
    font: inherit;
    font-size: 12px;
    font-weight: 650;
    cursor: pointer;
}

.zlw-is-loading .zlw-temperature,
.zlw-is-loading .zlw-condition,
.zlw-is-loading .zlw-microstats strong,
.zlw-is-loading .zlw-uv-value,
.zlw-is-loading .zlw-spf-advice {
    opacity: .48;
}

.zlw-is-loading .zlw-weather-symbol::before {
    content: "";
    width: 48px;
    height: 48px;
    border: 1.5px solid var(--zlw-line);
    border-top-color: var(--zlw-accent);
    border-radius: 50%;
    animation: zlw-spin 1s linear infinite;
}

@keyframes zlw-live {
    0% { box-shadow: 0 0 0 0 rgba(var(--zlw-accent-rgb), .42); }
    70%, 100% { box-shadow: 0 0 0 9px rgba(var(--zlw-accent-rgb), 0); }
}

@keyframes zlw-spin { to { transform: rotate(360deg); } }
@keyframes zlw-float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(7px); } }
@keyframes zlw-cloud { 0%,100% { transform: translateX(-2px); } 50% { transform: translateX(3px); } }
@keyframes zlw-rain { 0% { opacity: 0; transform: translateY(-3px); } 42% { opacity: 1; } 100% { opacity: 0; transform: translateY(9px); } }
@keyframes zlw-snow { 0%,100% { opacity: .4; transform: translateY(-2px) rotate(0); } 50% { opacity: 1; transform: translateY(7px) rotate(45deg); } }
@keyframes zlw-bolt { 0%,78%,100% { opacity: .38; } 82%,88% { opacity: 1; } }
@keyframes zlw-fog { 0%,100% { transform: translateX(-4px); opacity: .5; } 50% { transform: translateX(4px); opacity: 1; } }
@keyframes zlw-moon { 0%,100% { opacity: .65; } 50% { opacity: 1; } }

@media (max-width: 640px) {
    .zlw-widget { min-height: 0; padding: 22px; border-radius: 28px; }
    .zlw-topbar { align-items: flex-start; }
    .zlw-location-trigger { max-width: 62%; }
    .zlw-location-action { display: none; }
    .zlw-layout { grid-template-columns: minmax(0, 1fr) 108px; gap: 12px; min-height: 160px; padding: 28px 0 22px; }
    .zlw-orb { width: 112px; }
    .zlw-temperature { font-size: clamp(68px, 23vw, 104px); }
    .zlw-condition { margin-top: 14px; font-size: 17px; }
    .zlw-microstats { flex-wrap: wrap; row-gap: 10px; }
    .zlw-microstats i { height: 18px; }
    .zlw-lower { grid-template-columns: 1fr; gap: 10px; }
}

@media (max-width: 430px) {
    .zlw-kicker { max-width: 43%; font-size: 9px; letter-spacing: .13em; }
    .zlw-layout { grid-template-columns: minmax(0, 1fr) 84px; }
    .zlw-orb { width: 90px; }
    .zlw-microstats { gap: 9px; }
    .zlw-microstats small { font-size: 7px; }
    .zlw-microstats strong { font-size: 10px; }
}

@media (prefers-reduced-motion: reduce) {
    .zlw-widget *,
    .zlw-widget *::before,
    .zlw-widget *::after {
        scroll-behavior: auto !important;
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .001ms !important;
    }
}

@supports not (backdrop-filter: blur(1px)) {
    .zlw-widget { background-color: rgba(255,255,255,.92); }
    .zlw-text-light { background-color: rgba(10,14,26,.92); }
}
