/* Эффект реалистичного дыма перед экраном */

#smoke-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 6;
    pointer-events: none;
    opacity: 0.6;
    mix-blend-mode: screen;
}

/* Дым для текстовых блоков */
.natalia-message {
    position: relative;
}

.natalia-message::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 150px;
    background: radial-gradient(ellipse at center, 
        rgba(212, 175, 55, 0.3) 0%, 
        rgba(74, 20, 140, 0.2) 30%, 
        transparent 70%);
    filter: blur(30px);
    animation: smoke-rise 8s ease-in-out infinite;
    z-index: -1;
    pointer-events: none;
}

.natalia-message::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: 30%;
    width: 150px;
    height: 120px;
    background: radial-gradient(ellipse at center, 
        rgba(212, 175, 55, 0.25) 0%, 
        rgba(74, 20, 140, 0.15) 40%, 
        transparent 80%);
    filter: blur(25px);
    animation: smoke-rise 10s ease-in-out infinite reverse;
    z-index: -1;
    pointer-events: none;
}

@keyframes smoke-rise {
    0% {
        transform: translateX(-50%) translateY(0) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translateX(-50%) translateY(-30px) scale(1.2);
        opacity: 0.5;
    }
    100% {
        transform: translateX(-50%) translateY(-60px) scale(1.4);
        opacity: 0;
    }
}

/* Дым для карт */
.tarot-card::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(ellipse at center, 
        rgba(212, 175, 55, 0.2) 0%, 
        transparent 60%);
    filter: blur(40px);
    animation: card-smoke 6s ease-in-out infinite;
    z-index: -1;
    pointer-events: none;
    opacity: 0;
}

.tarot-card:hover::before {
    opacity: 0.6;
}

@keyframes card-smoke {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1) rotate(0deg);
        opacity: 0.3;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.3) rotate(180deg);
        opacity: 0.6;
    }
}

/* Дым для кнопок */
.mystical-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, 
        rgba(212, 175, 55, 0.3) 0%, 
        transparent 70%);
    filter: blur(20px);
    animation: button-smoke 4s ease-in-out infinite;
    z-index: -1;
    pointer-events: none;
    opacity: 0;
}

.mystical-button:hover::before {
    opacity: 0.8;
}

@keyframes button-smoke {
    0%, 100% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.4;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.8;
    }
}
