.logo {
    gap: 12px;
}

.logo img,
.footer-logo img,
[data-site-logo] {
    width: 52px;
    height: 52px;
    display: block;
    object-fit: cover;
    object-position: center;
    border-radius: 50%;
    border: 2px solid var(--accent, #d4af37);
    background: #0f2027;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.18);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo img {
    width: 48px;
    height: 48px;
}

@media (max-width: 1024px) {
    .logo-text {
        display: none;
    }
}

.page-loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: #0f2027;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
    transition: opacity 0.45s ease, visibility 0.45s ease;
}

.page-loader img {
    width: min(180px, 42vw) !important;
    height: min(180px, 42vw) !important;
    border-radius: 50%;
    border: 4px solid #d4af37;
    box-shadow: 0 0 0 8px rgba(212, 175, 55, 0.16), 0 12px 40px rgba(0, 0, 0, 0.35);
    animation: logoPulse 1.6s ease-in-out infinite;
}

.page-loader span {
    color: #d4af37;
    font-weight: 700;
    font-size: 1.05rem;
    text-align: center;
    padding: 0 16px;
    max-width: 90vw;
}

.page-loader.hide {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

@keyframes logoPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.06); opacity: 0.85; }
}

.nav-user-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.nav-user-wrap .nav-welcome {
    color: var(--accent, #d4af37) !important;
    font-weight: 800 !important;
}

.nav-user-wrap .nav-logout {
    opacity: 0.9;
}

.nav-user-wrap a::before {
    display: none !important;
}
