/* Sepsi brand 0.264: same transparent canvas, stationary wordmark, continuous full turn. */
html body.front .brand-logo-animated,
html body.front .footer-brand-mark,
html body.front .sticky-player-logo {
    aspect-ratio: 1887 / 960 !important;
    background: transparent !important;
    background-image: none !important;
    box-shadow: none !important;
    border: 0 !important;
    border-radius: 0 !important;
    perspective: 600px;
    isolation: isolate;
}
html body.front .brand-globe-spin,
html body.front .brand-text-static {
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    filter: none !important;
}
html body.front .brand-globe-spin {
    animation: sepsiBrandGlobe264 6s linear infinite !important;
    transform-origin: 50% 50%;
    backface-visibility: visible;
    will-change: transform;
}
html body.front .brand-text-static {
    animation: none !important;
    transform: none !important;
    z-index: 1;
}
@keyframes sepsiBrandGlobe264 {
    from { transform: rotateY(0deg); }
    to { transform: rotateY(360deg); }
}
@media (prefers-reduced-motion: reduce) {
    html body.front .brand-globe-spin {
        animation: none !important;
        transform: none !important;
        will-change: auto;
    }
}
