﻿.loader-overlay {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(8,12,18,.45);
    backdrop-filter: blur(18px);
}
.loader-panel {
    width: 480px;
    max-width: 92%;
    border-radius: 30px;
    padding: 45px;
    background: rgba(255,255,255,.30);
    backdrop-filter: blur(40px);
    border: 1px solid rgba(255,255,255,.18);
    box-shadow: 0 20px 60px rgba(0,0,0,.35);
}
.loader-house {
    width: 90px;
    height: 90px;
    margin: auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 38px;
}
.loader-counter {
    text-align: center;
    margin-top: 40px;
}
    .loader-counter span {
        font-size: 58px;
        font-weight: 700;
    }
#loaderHouseSvg path,
#loaderHouseSvg rect {
    stroke-dasharray: 500;
    stroke-dashoffset: 500;
}

.loader-house::before {
    content: "";
    position: absolute;
    inset: -18px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212,175,55,.35), transparent 70%);
    filter: blur(10px);
    animation: pulseGlow 2.8s ease-in-out infinite;
    z-index: -1;
}

@keyframes pulseGlow {
    0%,100% {
        transform: scale(.95);
        opacity: .45;
    }

    50% {
        transform: scale(1.12);
        opacity: .9;
    }
}