#pte-weather-overlay {
    pointer-events: none;
    position: fixed;
    inset: 0;
    overflow: hidden;
    z-index: 999999;
}
.pte-raindrop {
    position: absolute;
    top: -30px;
    width: 1px;
    height: 24px;
    background: rgba(190, 220, 255, .55);
    animation-name: pte-rain-fall;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    transform: rotate(8deg);
}
@keyframes pte-rain-fall {
    from { transform: translate3d(0, -40px, 0) rotate(8deg); opacity: .8; }
    to { transform: translate3d(-90px, 110vh, 0) rotate(8deg); opacity: .15; }
}
.pte-wind-item {
    position: absolute;
    left: -80px;
    top: 20vh;
    font-size: 24px;
    opacity: .45;
    filter: blur(.2px);
    animation-name: pte-wind-blow;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}
@keyframes pte-wind-blow {
    from { transform: translate3d(-10vw, 0, 0) rotate(0deg); }
    to { transform: translate3d(120vw, -8vh, 0) rotate(720deg); }
}
.pte-lightning {
    position: fixed;
    inset: 0;
    pointer-events: none;
    background: rgba(255,255,255,.85);
    opacity: 0;
    z-index: 1000000;
}
.pte-lightning.flash {
    animation: pte-flash .45s ease-out;
}
@keyframes pte-flash {
    0% { opacity: 0; }
    10% { opacity: .9; }
    16% { opacity: .15; }
    22% { opacity: .75; }
    100% { opacity: 0; }
}
#pte-weather-debug {
    position: fixed;
    right: 10px;
    bottom: 10px;
    z-index: 1000001;
    background: rgba(0,0,0,.75);
    color: #fff;
    padding: 6px 9px;
    font-size: 12px;
    border-radius: 5px;
    pointer-events: none;
}
@media (prefers-reduced-motion: reduce) {
    #pte-weather-overlay, .pte-lightning { display: none !important; }
}
