.avue-home {
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0c1929 0%, #132b45 40%, #1a3a5c 70%, #0f253d 100%);
    background-size: 400% 400%;
    animation: avue-bg-shift 12s ease infinite;
}

@keyframes avue-bg-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.avue-home__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 80%, rgba(64, 158, 255, .08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(100, 180, 255, .06) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(64, 158, 255, .03) 0%, transparent 70%);
    animation: avue-glow 8s ease-in-out infinite alternate;
}

@keyframes avue-glow {
    0% { opacity: .6; }
    100% { opacity: 1; }
}

.avue-home__main {
    user-select: none;
    width: 100%;
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

.avue-home__spinner {
    width: 42px;
    height: 42px;
    margin-bottom: 28px;
    animation: avue-rotate 2s linear infinite;
}

.avue-home__circular {
    width: 100%;
    height: 100%;
}

.avue-home__path {
    stroke: rgba(64, 158, 255, .7);
    stroke-width: 3;
    stroke-linecap: round;
    stroke-dasharray: 80, 200;
    stroke-dashoffset: 0;
    animation: avue-dash 1.5s ease-in-out infinite;
}

@keyframes avue-rotate {
    100% { transform: rotate(360deg); }
}

@keyframes avue-dash {
    0% {
        stroke-dasharray: 1, 200;
        stroke-dashoffset: 0;
    }
    50% {
        stroke-dasharray: 90, 200;
        stroke-dashoffset: -35;
    }
    100% {
        stroke-dasharray: 90, 200;
        stroke-dashoffset: -124;
    }
}

.avue-home__title {
    color: rgba(255, 255, 255, .9);
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 8px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.avue-home__sub-title {
    color: rgba(255, 255, 255, .35);
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 1px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.avue-home__footer {
    width: 100%;
    flex-grow: 0;
    text-align: center;
    padding: 1em 0;
    position: relative;
    z-index: 1;
}

.avue-home__footer a {
    font-size: 12px;
    color: rgba(255, 255, 255, .2);
    text-decoration: none;
}
