/* --- Görsel ve Teknik Arayüz Eklemeleri --- */

/* 2. Karanlıkta Parlayan Yazı (Nefes Alan Glow Efekti) */
@keyframes glowingText {
    0% { text-shadow: 0 0 5px rgba(243, 156, 18, 0.2); }
    50% { text-shadow: 0 0 20px rgba(243, 156, 18, 0.8), 0 0 30px rgba(243, 156, 18, 0.6); }
    100% { text-shadow: 0 0 5px rgba(243, 156, 18, 0.2); }
}
h1, h2, .forum-title, .rank-number {
    animation: glowingText 3s infinite alternate;
}

/* 3. Bonfire'a Dön Butonu (Scroll to top) */
#bonfire-btn {
    display: none; 
    position: fixed; 
    bottom: 20px; 
    right: 30px; 
    z-index: 99; 
    font-size: 24px; 
    border: none; 
    outline: none; 
    background-color: transparent; 
    color: #e67e22; 
    cursor: pointer; 
    text-shadow: 0 0 10px #e67e22;
    transition: 0.3s;
}
#bonfire-btn:hover {
    color: #f1c40f;
    text-shadow: 0 0 20px #f1c40f;
    transform: scale(1.2);
}
