<style>
/* Remove barras de rolagem e define o fundo preto */
html, body {
    background-color: black !important;
    overflow: hidden; 
    height: 100%;
}

/* Esconde elementos visuais mas mantém o código rodando (para a música) */
body * {
    opacity: 0 !important;
    pointer-events: none;
}

/* Cria a camada do texto que ficará visível */
body::after {
    content: "This account will no longer be used\A Add Iris2010";
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: black;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    white-space: pre; /* Reconhece o \A como quebra de linha */
    font-family: "Courier New", Courier, monospace;
    font-size: 20px;
    z-index: 999999;
    pointer-events: auto;
    
    /* Configuração do Fade-in */
    opacity: 0;
    animation: fadeInMusic 4s ease-in forwards;
}

/* Animação de Fade-in */
@keyframes fadeInMusic {
    0% { opacity: 0; }
    100% { opacity: 1; }
}
</style>