/* Fundo com logotipos flutuantes */
.xr1-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a2e 0%, #16162c 100%);
    overflow: hidden;
    z-index: 0; /* Ajustado para ficar atrás do container mas visível */
}
/* Logotipos XR1 */
.xr1-logo {
    position: absolute;
    font-weight: bold;
    opacity: 0.6; /* Iniciar já visível para teste */
    animation: float-logo 25s linear infinite;
    text-shadow: 0 0 10px rgba(20, 55, 110, 0.5);
    white-space: nowrap;
    z-index: 1; /* Garantir que os logotipos fiquem acima do fundo */
}
.xr1-logo span {
    color: rgb(33, 81, 159);
}
/* Animação dos logotipos */
@keyframes float-logo {
    0% {
        transform: translateY(100%) rotate(0deg);
        opacity: 0.1;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-100%) rotate(10deg);
        opacity: 0.1;
    }
}
/* Variações de tamanho */
.xr1-logo.size-large {
    font-size: 60px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.4);
}
.xr1-logo.size-medium {
    font-size: 45px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.3);
}
.xr1-logo.size-small {
    font-size: 30px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.2);
}
/* Variações de estilo */
.xr1-logo.type-light {
    color: rgba(255, 255, 255, 0.4);
}
.xr1-logo.type-light span {
    color: rgba(20, 55, 110, 0.8);
}
.xr1-logo.type-dark {
    color: rgba(20, 55, 110, 0.4);
}
.xr1-logo.type-dark span {
    color: rgba(255, 255, 255, 0.8);
}

/* Versão texto no topo direito - COM AJUSTE PARA DESKTOP APENAS */
.version-text-top {
    position: fixed;
    top: 20px;
    right: 20px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    z-index: 10;
    display: block; /* Visível por padrão */
}

/* Status "AO VIVO" no canto inferior direito - COM AJUSTE PARA DESKTOP APENAS */
.live-status {
    position: fixed;
    bottom: 20px;
    right: 20px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    z-index: 10;
}
.live-status::before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: rgb(33, 81, 159);
    border-radius: 50%;
    margin-right: 5px;
    animation: blink 2s infinite;
}
@keyframes blink {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
}

/* IMPORTANTE: Modificar o container principal para ter fundo transparente */
.container {
    position: relative;
    z-index: 5;
    background-color: transparent !important; /* Sobrescrever o fundo original */
}

/* Media query para ocultar em dispositivos móveis */
@media (max-width: 768px) {
    .version-text-top,
    .live-status {
        display: none !important; /* Oculto em telas menores que 768px */
    }
}
