body {
    margin: 0;
    padding: 0;
    overflow: hidden; 
    background-color: #f0f0f0;
    align-items: center;
    text-align: center;
}

#image-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw; /* 100% da largura da tela */
    height: 100vh; /* 100% da altura da tela */
    background: url('inunaki/tunnel.jpg') no-repeat center center/cover;
    filter: brightness(0.5) saturate(0.8) hue-rotate(-20deg);
    z-index: -2;
}

.floating-word {
    position: absolute;
    font-size: 3.5rem;
    font-weight: bold;
    color: #290303;
    text-shadow: 0 0 10px rgba(80, 61, 61, 0.8), 0 0 20px rgba(41, 14, 14, 0.6);
    animation: flash 1s infinite ease-in-out, fade-in-out 4s ease, color-change 2s infinite ease-in-out;
}

#image-container img {
    width: 100%; /* Faz a imagem ocupar toda a largura */
    height: 100%; /* Faz a imagem ocupar toda a altura */
    object-fit: cover; /* Ajusta a imagem sem distorção */
    cursor: pointer;
    z-index: -2;
}

@keyframes flash {
    0%, 100% {
        opacity: 1;
        text-shadow: 0 0 10px rgb(61, 19, 19), 0 0 20px rgba(0, 0, 0, 0.6);
    }
    50% {
        opacity: 0.5;
        text-shadow: 0 0 30px rgb(0, 0, 0), 0 0 40px rgbrgba(39, 34, 34, 0.527)
    }
}

@keyframes fade-in-out {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    25% {
        opacity: 1;
        transform: scale(1.5); /* Aumenta a palavra no meio da animação */
    }
    75% {
        opacity: 1;
        transform: scale(1.5); /* Continua maior */
    }
    100% {
        opacity: 0;
        transform: scale(2); /* Continua aumentando até desaparecer */
    }
}

#smoke-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none; /* Deixa a fumaça não interferir nos cliques */
    z-index: -1; /* Fumaça fica acima do fundo */
}

.smoke {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.568) 0%, rgba(255, 255, 255, 0) 70%);
    animation: float 16s infinite ease-in-out;
    opacity: 0.3; /* Transparência para um efeito sutil */
    filter: blur(15px);
}

@keyframes float {
    0% {
        transform: translateY(100vh) translateX(-50%);
    }
    100% {
        transform: translateY(-200px) translateX(50%);
    }
}

#png-container {
    width: 50px; /* Tamanho inicial */
    height: 50px;
    position: fixed;
    top: 0.01%;        
    left: 17%;    
    opacity: 0;
    transform: scale(0);
    transition: opacity 1s, transform 10s;
    filter: brightness(0.1);
    z-index: 1;
    animation: blur-shadow 2s infinite ease-in-out;
    filter: blur(1);
  }

  #png-container.visible {
    opacity: 1;
    transform: scale(1);
    filter: brightness(0.6);
  }

  #png-container img {
    width: 100%;
    height: 100%;
    pointer-events: none; /* Impede clique enquanto cresce */
  }

  #png-container.clickable img {
    pointer-events: auto; /* Permite clique quando pronto */
    cursor: pointer;
  }

  @keyframes blur-shadow {
    0% {
        filter: blur(2px); /* Nenhum desfoque */
    }
    50% {
        filter: blur(1px); /* Desfoque máximo */
    }
    100% {
        filter: blur(2px); /* Retorna sem desfoque */
    }
}

#text-container {
    position: fixed;
    top: 10px; /* Alinha no topo */
    left: 50%; /* Centraliza horizontalmente */
    transform: translateX(-50%); /* Ajusta para o centro exato */
    z-index: 1000; /* Garante que fique acima de outros elementos */
    font-size: 24px;
    font-family: Arial, sans-serif;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

#animated-text {
    display: inline-block;
    overflow: hidden;
    white-space: nowrap;
    border-right: 2px none white; /* Cursor de digitação */
    color: rgb(34, 49, 14);
    box-shadow: #290303;
    font-size: 40px;
}

@keyframes blink {
    50% {
        border-color: transparent;
    }
}