/* =========================================================================
   rituals/saturn/saturn_style.css
   ♄ Satürn Klanı Laneti Görsel Efektleri
   ========================================================================= */

/* Lanetli Hücrenin (Sarmalın) Kendisi */
.cell.curse-spiral {
    background-color: transparent !important; 
    border-color: transparent !important;     
    transition: all 0.5s ease;
}

/* ★ Yıldızı Gizle ve 🌀 Sarmalı Göster */
.cell.curse-spiral::after {
    content: '🌀' !important;
    position: absolute;
    font-size: calc(var(--cell) * 0.8) !important;
    text-shadow: 0 0 15px rgba(47, 79, 79, 0.9) !important;
    
    /* Saat yönünün tersine sonsuz dönüş animasyonu */
    animation: spinCounterClockwise 2s linear infinite !important;
    z-index: 10;
}

@keyframes spinCounterClockwise {
    from { transform: rotate(0deg) scale(1.3); }
    to { transform: rotate(-360deg) scale(1.3); }
}

/* Sarmalın üzerine gelen düşmanlara uygulanacak ölümcül çekim efekti */
.piece.swallowed {
    animation: swallowPiece 0.6s ease-in forwards !important;
}

@keyframes swallowPiece {
    0% { transform: scale(1) rotate(0deg); opacity: 1; }
    100% { transform: scale(0) rotate(-360deg); opacity: 0; }
}