body {
    background-color: #38464f;
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    background-image: url("russian.webp");
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

#initial-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #38464f;
    background-image: linear-gradient(rgba(0, 0, 0, 0.52), rgba(0, 0, 0, 0.52)), url("russian.webp");
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    z-index: 10000;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#initial-loader #app {
    background: transparent !important;
}

.login-content {
    display: block;
}

.page-loader {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}

.page-loader__spinner {
    position: relative;
    width: 50px;
    height: 50px;
    animation: rotate 2s linear infinite;
}

.page-loader__spinner svg {
    width: 100%;
    height: 100%;
    transform-origin: center center;
    animation: rotate 2s linear infinite;
}

.page-loader__spinner circle {
    stroke: #fff;
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
    animation: dash 1.5s ease-in-out infinite;
}

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

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

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    border: 0;
}

.seo-content {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    border: 0;
    visibility: hidden;
}

.googlebot .seo-content {
    position: static;
    width: auto;
    height: auto;
    overflow: visible;
    clip: auto;
    visibility: visible;
    color: #fff;
    text-align: center;
    max-width: 80%;
    margin: 0 auto 20px;
}

.market-content {
    background: rgba(255,255,255,0.1);
    color: #fff;
    display: none;
}

.login-description {
    color: #fff;
    text-align: center;
    max-width: 80%;
    margin: 0 auto;
}

.login-description h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.login-description p {
    font-size: 0.9rem;
    opacity: 0.9;
}

.register-header {
    font-size: 1rem;
    font-weight: normal;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}
