
.system-center {
    padding: 6px 14px;
    border-radius: 50px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.2);
    color: #ddd;
    margin: 10px auto;
    display: inline-flex;
    align-items: center;
    backdrop-filter: blur(6px);
}

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@1,300;1,400;1,500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bitcount+Prop+Double+Ink&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cinzel+Decorative:wght@400;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400;700&display=swap');

/* Локальный Bitcount Prop Double Ink */


/* Стиль сообщения */
.vip-nini-message {
    font-family: 'BitcountPropDoubleInk', sans-serif !important;
    font-weight: 400;

    background: linear-gradient(270deg,
        #d0e6f7,  /* светло-голубой */
        #a8c0d9,  /* небесно-голубой */
        #cfd8e0,  /* светло-серый с голубым оттенком */
        #b0d6d1  /* мягкий мятно-голубой */
    );
    background-size: 800% 800%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    text-shadow: 0 0 2px rgba(116, 148, 224, 0.1);

    animation: gradient_shift 6s ease infinite, msg_fade_in 0.4s ease-out;
}


.vip-mm-message {
     font-family: 'Cinzel Decorative', 'Dancing Script', serif !important;
    font-weight: 100;
    background: linear-gradient(270deg,
        #fff8e7, /* мягкий бело-карамельный */
        #f5e1c0, /* тонкая карамель */
        #ced1f7, /* чуть красноватый оттенок */
        #9dc8d09c  /* светлый желтоватый */
    );
    background-size: 800% 800%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    /* тень очень тонкая, чтобы текст слегка выделялся */
    text-shadow: 0 0 2px rgba(116, 8, 8, 0.1);

    animation: gradient_shift 6s ease infinite, msg_fade_in 0.4s ease-out;
}


.vip-mm-icon {
    width: 22px;
    height: 22px;
}







.vip-nini-center {
    font-family: 'Bitcount Prop Double Ink', sans-serif !important;

    font-weight: 400; /* можно изменить под свои нужды */
    letter-spacing: 1px;

    /* ნაზი ღია ლურჯი → ცისფერი → მსუბუქი ნაცრისფერი → მსუბუქი მოიასამნისფრო */
    background: linear-gradient(135deg, 
        rgba(173, 216, 230, 0.35) 0%,    /* ღია ლურჯი */
        rgba(176, 224, 230, 0.08) 50%,   /* ცისფერი */
        rgba(200, 210, 220, 0.25) 75%,  /* მსუბუქი ნაცრისფერი */
        rgba(152, 195, 205, 0.2) 100%   /* მსუბუქი მოიასამნისფრო */
    );

    mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, #2c2a3e 15%, black 85%, transparent 100%);

    border-top: 1px solid rgba(131, 140, 160, 0.25);
    border-bottom: 1px solid rgba(131, 140, 160, 0.25);
    border-left: none;
    border-right: none;
    border-radius: 12px;

    padding: 10px 18px;
    display: inline-flex;
    align-items: center;
    gap: 8px;

    box-shadow: 0 0 12px rgba(173, 216, 230, 0.25), inset 0 0 8px rgba(152, 195, 205, 0.25);

    animation: gradient_shift 6s ease infinite, msg_fade_in 0.4s ease-out !important;
}



.vip-mm-center {
       font-family: 'Cinzel Decorative', 'Dancing Script', serif !important;
    font-weight: 100;
    letter-spacing: 1px;
    background: linear-gradient(135deg, rgb(147 137 189 / 25%), rgb(63 62 78 / 36%));
    mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, #2c2a3e 15%, black 85%, transparent 100%);
    border-top: 1px solid rgb(131 111 82 / 35%);
    border-bottom: 1px solid rgb(131 111 82 / 35%);
    border-left: none;
    border-right: none;
    border-radius: 12px;
 
    padding: 10px 18px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 0 12px rgb(231 64 149 / 54%), inset 0 0 8px rgb(112 57 57 / 42%);


    
    animation: gradient_shift 6s ease infinite, msg_fade_in 0.4s ease-out !important;
}















@import url('https://fonts.googleapis.com/css2?family=Cinzel+Decorative:wght@400;700&display=swap');

.vip-l-text {
    font-family: 'Cinzel Decorative', serif !important;
    font-weight: 400 !important;
    font-size: 15px !important;
    letter-spacing: 0.2px !important;

    opacity: 0;
    color: #dec6ac; /* стартовый тон — бледно-розовый */
    animation: l_text_fadein 1.2s ease-out forwards;
    animation-delay: 0.6s;
}

/* Появление и плавная смена цвета: розовый → фиолетовый → белый */
@keyframes l_text_fadein {
    0% {
        opacity: 0;
        transform: translateY(2px);
        color: #dec6ac; /* бледно-розовый */
        filter: blur(2px);
    }
    50% {
        opacity: 0.7;
        transform: translateY(1px);
        color: #d9c0f0; /* нежный фиолетовый */
        filter: blur(1px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
        color: #ffffff; /* белый */
        filter: blur(0);
    }
}


/* Контейнер изображения профиля L */
.vip-l-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden; /* чтобы волосы и PNG сверху не вылезали за рамку */
    
    /* Бордер и фон */
    border: 2px solid rgba(245, 200, 210, 0.25); /* тускло-розовый */
    background-origin: border-box;
    background-clip: content-box, border-box;
    background-image:
        linear-gradient(to right, rgba(245,200,210,0.15), rgba(245,180,200,0.12), rgba(245,200,210,0.15)),
        linear-gradient(180deg, rgba(0,0,0,0.95), rgba(20,20,20,0.85)); /* черный с тенями */
    background-size: 100% 300%; /* растянут для анимации волн */
    animation: l_image_wave 8s ease-in-out infinite, l_image_glow 8s ease-in-out infinite;
}

/* Анимация свечения бордера */
@keyframes l_image_glow {
    0%, 100% {
        box-shadow: 0 1px 0 rgba(245,200,210,0.2),
                    0 -1px 0 rgba(245,150,180,0.15),
                    0 0 6px rgba(60,60,60,0.15),
                    inset 0 0 3px rgba(30,30,30,0.08);
    }
    50% {
        box-shadow: 0 1px 0 rgba(245,180,200,0.25),
                    0 -1px 0 rgba(245,150,180,0.2),
                    0 0 10px rgba(245,180,200,0.1),
                    inset 0 0 5px rgba(245,200,210,0.08);
    }
}

/* Анимация волнового движения внутри картинки (фон) */
@keyframes l_image_wave {
    0%   { background-position: 0% 100%, 0% 0%; }
    50%  { background-position: 0% 0%, 0% 100%; }
    100% { background-position: 0% 100%, 0% 0%; }
}
/* Только для mainwrap, который содержит vip-l-image (L-профиль) */
.mainwrap:has(.vip-l-image)::before {
    content: "";
    position: absolute;
    top: -16px; 
    left: 50%;
    transform: translateX(-50%);
    width: 33px;   
    height: 33px;  
    background: url('/static/vip_profiles/icons/chka2.png') no-repeat center center;
    background-size: contain;
    z-index: 2;

    opacity: 0; /* стартовая прозрачность */

    /* Анимации: появление, внутреннее свечение, плавное движение */
    animation: 
        l_accessory_appear 0.5s ease forwards 0.9s,   /* плавное появление */
        l_accessory_glow 6s ease-in-out infinite,     /* внутреннее свечение */
        l_accessory_float 4s ease-in-out infinite alternate 3s; /* движение вверх-вниз */
}

/* Появление (fade-in) */
@keyframes l_accessory_appear {
    0%   { opacity: 0; transform: translateX(-50%) translateY(0px); }
    100% { opacity: 1; transform: translateX(-50%) translateY(0px); }
}

/* Внутреннее свечение (как у смски, только по иконке) */
@keyframes l_accessory_glow {
    0%   { filter: drop-shadow(0 0 4px rgba(245,200,210,0.5)) drop-shadow(0 0 6px rgba(250,180,200,0.5)); }
    25%  { filter: drop-shadow(0 0 6px rgba(250,180,200,0.6)) drop-shadow(0 0 8px rgba(245,190,210,0.6)); }
    50%  { filter: drop-shadow(0 0 8px rgba(245,190,210,0.6)) drop-shadow(0 0 10px rgba(250,180,200,0.65)); }
    75%  { filter: drop-shadow(0 0 6px rgba(250,180,200,0.55)) drop-shadow(0 0 8px rgba(245,200,210,0.6)); }
    100% { filter: drop-shadow(0 0 4px rgba(245,200,210,0.5)) drop-shadow(0 0 6px rgba(250,180,200,0.5)); }
}

/* Плавное движение вверх-вниз */
@keyframes l_accessory_float {
    0% { transform: translateX(-50%) translateY(0px); }
    50% { transform: translateX(-50%) translateY(-3px); }
    100% { transform: translateX(-50%) translateY(0px); }
}

.vip-l-icon {
    width: 22px;
    height: 22px;
    opacity: 0; /* изначально невидимо */
    transform: scale(0.9); /* чуть уменьшена для плавного эффекта */
    animation: l_icon_appear 1s ease-out 0.9s forwards, /* появление через 3 секунды */
               l_icon_glow 6s ease-in-out infinite; /* свечение */
}

/* Появление иконки (fade-in, без смещения) */
@keyframes l_icon_appear {
    0% {
        opacity: 0;
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Плавное свечение иконки (розовый оттенок под ушки) */
@keyframes l_icon_glow {
    0%   { filter: drop-shadow(0 0 4px rgba(245,200,210,0.6)); }
    25%  { filter: drop-shadow(0 0 6px rgba(250,180,200,0.7)); }
    50%  { filter: drop-shadow(0 0 8px rgba(245,190,210,0.7)); }
    75%  { filter: drop-shadow(0 0 6px rgba(250,180,200,0.65)); }
    100% { filter: drop-shadow(0 0 4px rgba(245,200,210,0.6)); }
}


/* Месседж для L-профиля — обновлённый стиль */
.vip-l-message {
    position: relative !important;
    padding: 10px 16px !important;
    margin: 4px 0 !important;
    border-radius: 12px !important;

    /* Бордеры с акцентом на светящийся эффект */
    border-top: 1px solid rgba(220,180,200,0.25) !important;
    border-bottom: 1px solid rgba(230,190,210,0.2) !important;
    border-left: 2px solid rgba(220,180,200,0.35) !important;
    border-right: 2px solid rgba(230,190,210,0.35) !important;

    /* Мягкая тень и внутренний inset для свечения */
    box-shadow: 
        0 2px 10px rgba(245,190,210,0.3), /* внешнее свечение */
        inset 0 0 6px rgba(245,180,200,0.05) !important; /* внутреннее свечение */

    font-style: italic !important;
    font-weight: 300 !important;
    color: #dec6ac !important; /* текст под тон кожи/ушек */

    /* Фон с градиентом + анимация легкой волны */
    background: linear-gradient(
        180deg, 
        rgba(30,20,25,0.9) 0%,        /* почти черный */
        rgba(100,80,90,0.15) 25%,     /* тускло-фиолетовый дым */
        rgba(245,200,210,0.1) 50%,    /* бледно-розовое свечение */
        rgba(100,80,90,0.15) 75%, 
        rgba(30,20,25,0.9) 100%
    );
    background-size: 100% 300%;
    
    /* Анимации */
    animation: 
        l_message_wave 6s linear infinite,
        l_message_fade_in 0.8s ease-out forwards,
        l_message_glow 6s ease-in-out infinite;
}

/* Анимация волн внутри месседжа */
@keyframes l_message_wave {
    0%   { background-position: 0% 100%; }
    50%  { background-position: -8% 0%; }
    100% { background-position: 0% 100%; }
}

/* Появление текста */
@keyframes l_message_fade_in {
    0% {
        opacity: 0;
        transform: translateY(4px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Плавное свечение месседжа (по краям, в тон ушек) */
@keyframes l_message_glow {
    0%   { box-shadow: 0 2px 6px rgba(245,190,210,0.3), inset 0 0 4px rgba(245,180,200,0.05); }
    25%  { box-shadow: 0 2px 8px rgba(245,180,200,0.35), inset 0 0 5px rgba(245,190,210,0.05); }
    50%  { box-shadow: 0 2px 10px rgba(245, 200, 210, 0.5), inset 0 0 6px rgba(245,180,200,0.05); }
    75%  { box-shadow: 0 2px 8px rgba(245,180,200,0.4), inset 0 0 5px rgba(245,190,210,0.05); }
    100% { box-shadow: 0 2px 6px rgba(245,190,210,0.35), inset 0 0 4px rgba(245,180,200,0.05); }
}





















































.vip-mari-image {
    border-radius: 15px;

    /* Тонкий бордер сверху и снизу */
    border-top: 1px solid rgba(245, 245, 245, 0.4); /* тусклый белый */
    border-bottom: 1px solid rgba(180, 50, 50, 0.4); /* тускло-красный */

    background-origin: border-box;
    background-clip: content-box, border-box;

    /* Градиент бордера и мягкие тени */
    background-image:
        linear-gradient(
            to right,
            rgba(200, 200, 200, 0.12), /* светло-серый */
            rgba(180, 50, 50, 0.1),    /* тускло-красный */
            rgba(245, 245, 245, 0.12)  /* белый */
        ),
        linear-gradient(
            to bottom,
            rgba(20,20,20,0.85),
            rgba(25,25,25,0.95)
        );

    box-shadow: 0 0 6px rgba(60, 60, 60, 0.25),
                inset 0 0 3px rgba(30, 30, 30, 0.2);

    animation: mari_image_glow 8s ease-in-out infinite;
}

@keyframes mari_image_glow {
    0% {
        box-shadow: 0 0 6px rgba(245,245,245,0.15), inset 0 0 2px rgba(245,245,245,0.08);
    }
    25% {
        box-shadow: 0 0 8px rgba(180,50,50,0.2), inset 0 0 3px rgba(180,50,50,0.08);
    }
    50% {
        box-shadow: 0 0 10px rgba(200,200,200,0.2), inset 0 0 4px rgba(200,200,200,0.12);
    }
    75% {
        box-shadow: 0 0 8px rgba(180,50,50,0.18), inset 0 0 3px rgba(180,50,50,0.08);
    }
    100% {
        box-shadow: 0 0 6px rgba(245,245,245,0.15), inset 0 0 2px rgba(245,245,245,0.08);
    }
}

.vip-mari-message {
    position: relative !important;
    padding: 12px 18px !important;
    margin: 6px 0 !important;

    border-radius: 5px 4px 6px 5px !important;

    /* Тонкие бордеры сверху и снизу */
    border-top: 1px solid rgba(245, 245, 245, 0.35);   /* тусклый белый */
    border-bottom: 1px solid rgba(180, 50, 50, 0.35);  /* тускло-красный */

    /* Прозрачный фон с ярче выраженными волнами */
    background: linear-gradient(
        90deg,
        rgba(200, 200, 200, 0.15), /* серый */
        rgba(180, 50, 50, 0.12),   /* тускло-красный */
        rgba(245, 245, 245, 0.15),
        rgba(200, 200, 200, 0.15),
        rgba(180, 50, 50, 0.12)
    );
    background-size: 300% 100%;

    /* Box-shadow чуть заметнее, цветной */
    box-shadow:
        0 0 10px rgba(245,245,245,0.12),
        0 0 12px rgba(180,50,50,0.1),
        inset 0 0 6px rgba(150,150,150,0.1) !important;

    animation: mari_wave_bg 8s linear infinite,
               mari_reveal_vertical 0.6s ease-out !important;
}
/* Горизонтальные волны */
@keyframes mari_wave_bg {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Вертикальное раскрытие */
@keyframes mari_reveal_vertical {
    0% {
        opacity: 0;
        transform: scaleY(0.6);
        clip-path: inset(50% 0 50% 0);
    }
    65% {
        opacity: 0.85;
        transform: scaleY(1.05);
        clip-path: inset(10% 0 10% 0);
    }
    100% {
        opacity: 1;
        transform: scaleY(1);
        clip-path: inset(0 0 0 0);
    }
}

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&display=swap');

.vip-mari-text {
    font-family: 'Playfair Display', serif !important;
    font-weight: 400 !important;
    font-size: 15px !important;
    letter-spacing: 0.2px !important;

    opacity: 0;
    animation: mari_text_fadein 0.9s ease-out forwards;
    animation-delay: 0.6s;
}

@keyframes mari_text_fadein {
    0% {
        opacity: 0;
        transform: translateY(3px);
        filter: blur(2px);
    }
    60% {
        opacity: 0.7;
        transform: translateY(1px);
        filter: blur(1px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}




















.vip-jane-image {
    border-radius: 5px; 
    box-shadow: 0 0 12px rgba(100, 77, 60, 0.5); 
    border: 4px solid transparent;
    background-origin: border-box;
    background-clip: content-box, border-box;

    /* Градиентный бордер с волнами */
    background-image: 
        linear-gradient(180deg, rgba(50,85,65,0.4), rgba(30,35,30,0.05), rgba(50,85,65,0.4)),
        linear-gradient(180deg, rgba(70,100,80,0.5), rgba(90,130,95,0.2));
    
    animation: jane_image_border_wave 9s linear infinite, jane_border_radius 9s ease-in-out infinite;
}

/* Анимация движения и изменения прозрачности градиента (9 секунд) */
@keyframes jane_image_border_wave {
    0% {
        background-position: 0% 100%, 0% 0%;
        background-image:
            linear-gradient(180deg, rgba(50,85,65,0.4), rgba(30,35,30,0.05), rgba(50,85,65,0.4)),
            linear-gradient(180deg, rgba(70,100,80,0.5), rgba(90,130,95,0.2));
    }
    25% {
        background-image:
            linear-gradient(180deg, rgba(50,85,65,0.35), rgba(30,35,30,0.03), rgba(50,85,65,0.35)),
            linear-gradient(180deg, rgba(70,100,80,0.45), rgba(90,130,95,0.15));
    }
    50% {
        background-position: 0% 0%, 0% 100%;
        background-image:
            linear-gradient(180deg, rgba(50,85,65,0.5), rgba(30,35,30,0.05), rgba(50,85,65,0.5)),
            linear-gradient(180deg, rgba(70,100,80,0.55), rgba(90,130,95,0.25));
    }
    75% {
        background-image:
            linear-gradient(180deg, rgba(50,85,65,0.3), rgba(30,35,30,0.02), rgba(50,85,65,0.3)),
            linear-gradient(180deg, rgba(70,100,80,0.4), rgba(90,130,95,0.15));
    }
    100% {
        background-position: 0% 100%, 0% 0%;
        background-image:
            linear-gradient(180deg, rgba(50,85,65,0.4), rgba(30,35,30,0.05), rgba(50,85,65,0.4)),
            linear-gradient(180deg, rgba(70,100,80,0.5), rgba(90,130,95,0.2));
    }
}

/* Анимация изменения радиуса бордера */
@keyframes jane_border_radius {
    0%, 100% { border-radius: 10px; }
    50% { border-radius: 25px; }
}
.vip-jane-icon {
    width: 22px;
    height: 22px;
    opacity: 0; /* изначально невидимо */
    transform: translateY(20px); /* смещено вниз */
    animation: jane_icon_appear 1s ease-out 2s forwards, jane_icon_glow 6s ease-in-out infinite; 
    /* jane_icon_appear — появление, jane_icon_glow — свечение */
}

/* Анимация появления иконки (ушек) снизу вверх */
@keyframes jane_icon_appear {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Анимация свечения иконки */
@keyframes jane_icon_glow {
    0%   { filter: drop-shadow(0 0 6px rgba(255, 215, 0, 0.6)); }    /* золотистый */
    25%  { filter: drop-shadow(0 0 10px rgba(34, 139, 34, 0.7)); }   /* зелёный */
    50%  { filter: drop-shadow(0 0 12px rgba(255, 60, 60, 0.7)); }   /* красноватый */
    75%  { filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.6)); }   /* золотистый снова */
    100% { filter: drop-shadow(0 0 6px rgba(34, 139, 34, 0.5)); }    /* зелёный слегка тусклее */
}

.vip-jane-message {
    position: relative !important;
    padding: 10px 16px !important;
    margin: 4px 0 !important;
    border-radius: 10px !important;

    /* Верх и низ тонкие, бока заметнее */
    border-top: 1px solid rgba(60, 80, 60, 0.25) !important;
    border-bottom: 1px solid rgba(60, 80, 60, 0.25) !important;
    border-left: 2px solid rgba(50, 120, 60, 0.4) !important;
    border-right: 2px solid rgba(50, 120, 60, 0.4) !important;

    /* Тень зеленоватая */
    box-shadow: 0 2px 8px rgba(40, 120, 60, 0.25), inset 0 0 4px rgba(30, 50, 40, 0.1) !important;

    font-style: italic !important;
    font-weight: 300 !important;

    /* Фон с градиентом и движением волн */
    background: linear-gradient(
        180deg, 
        rgba(20, 30, 25, 0.5) 0%,    /* почти черный */
        rgba(40, 60, 50, 0.4) 25%,  /* серо-зеленый */
        rgba(60, 80, 60, 0.3) 50%,  /* серый с зеленым */
        rgba(40, 60, 50, 0.4) 75%, 
        rgba(20, 30, 25, 0.5) 100%
    );
    background-size: 100% 300%; /* удлиненный фон для плавного движения */

    animation: jane_wave_bg 6s linear infinite, jane_fade_in 0.8s ease-out !important;
}



.vip-jane-message {
    position: relative !important;
    padding: 10px 16px !important;
    margin: 4px 0 !important;
    border-radius: 10px !important;

    /* Верх и низ тонкие, бока заметнее */
    border-top: 1px solid rgba(60, 80, 60, 0.25) !important;
    border-bottom: 1px solid rgba(60, 80, 60, 0.25) !important;
    border-left: 2px solid rgba(50, 110, 70, 0.5) !important;
    border-right: 2px solid rgba(50, 110, 70, 0.5) !important;

    /* Тень зеленоватая, мягкая */
    box-shadow: 0 2px 8px rgba(40, 100, 70, 0.25), inset 0 0 4px rgba(30, 50, 40, 0.1) !important;

    font-style: italic !important;
    font-weight: 300 !important;

    /* Фон с волнами — серо-зеленый дым */
    background: linear-gradient(
        180deg, 
        rgba(10, 10, 10, 0.6) 0%,         /* почти черный */
        rgba(72, 144, 108, 0.25) 25%,       /* серо-зеленый дым */
        rgba(80, 110, 85, 0.2) 50%,       /* тусклый зеленый */
        rgba(169, 214, 192, 0.25) 75%, 
        rgba(10, 10, 10, 0.6) 100%
    );
    background-size: 100% 300%;

    animation: jane_wave_bg 6s linear infinite, jane_fade_in_lr 0.8s ease-out !important;
}

/* Анимация волн снизу вверх (немного диагональ) */
@keyframes jane_wave_bg {
    0%   { background-position: 0% 100%; }
    50%  { background-position: -10% 0%; }
    100% { background-position: 0% 100%; }
}

/* Появление текста слева направо */
@keyframes jane_fade_in_lr {
    0% {
        opacity: 0;
        transform: translateX(-20px);
        clip-path: inset(0 100% 0 0);
    }
    50% {
        opacity: 0.6;
        clip-path: inset(0 50% 0 0);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
        clip-path: inset(0 0 0 0);
    }
}
/* FadeIn для Jane */
@keyframes jane_fade_in {
    0%   { opacity: 0; transform: translateY(6px); }
    100% { opacity: 1; transform: translateY(0); }
}


@keyframes jane_glow {
    0%   { box-shadow: 0 0 6px rgba(70, 100, 80, 0.5), inset 0 0 4px rgba(255, 59, 59, 0.2); }
    50%  { box-shadow: 0 0 16px rgba(70, 100, 80, 0.7), inset 0 0 8px rgba(255, 59, 59, 0.3); }
    100% { box-shadow: 0 0 6px rgba(70, 100, 80, 0.5), inset 0 0 4px rgba(255, 59, 59, 0.2); }
}

@keyframes icon_glow_jane {
    0%   { filter: drop-shadow(0 0 8px rgba(70, 100, 80, 0.5)); }
    50%  { filter: drop-shadow(0 0 14px rgba(255, 59, 59, 0.6)); }
    100% { filter: drop-shadow(0 0 8px rgba(70, 100, 80, 0.5)); }
}

@keyframes gradient_shift_jane {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
























@keyframes gold_pulse {
    0%   { box-shadow: 0 0 8px rgba(186, 45, 45, 0.69); }
    50%  { box-shadow: 0 0 16px rgba(80, 133, 255, 0.5); }
    100% { box-shadow: 0 0 8px rgba(68, 51, 153, 0.593); }
}
@keyframes icon_glow {
    0%   { filter: drop-shadow(0 0 9px rgba(29, 107, 171, 0.587)); }
    50%  { filter: drop-shadow(0 0 12px rgba(38, 100, 201, 0.7)); }
    100% { filter: drop-shadow(0 0 9px rgba(74, 152, 207, 0.609)); }
}

@keyframes msg_fade_in {
    0% { opacity: 0; transform: translateY(10px); }
    100% { opacity: 1; transform: translateY(0); }
}






@keyframes vip_glow {
    0%   { box-shadow: 0 0 4px rgba(255,200,120,0.4); }
    50%  { box-shadow: 0 0 12px rgba(255,200,120,1); }
    100% { box-shadow: 0 0 4px rgba(255,200,120,0.4); }
}


@keyframes icon_glow_nini {
    0%   { filter: drop-shadow(0 0 9px rgba(29, 107, 171, 0.587)); }
    50%  { filter: drop-shadow(0 0 12px rgba(201, 38, 122, 0.7)); }
    100% { filter: drop-shadow(0 0 9px rgba(107, 74, 207, 0.609)); }
}



@keyframes vip_glow {
    0% {
        box-shadow: 0 0 6px rgb(231 64 149 / 54%), inset 0 0 4px rgb(112 57 57 / 42%);
    }
    50% {
        box-shadow: 0 0 16px rgba(231, 64, 150, 0.742), inset 0 0 8px rgb(112 57 57 / 42%);
    }
    100% {
        box-shadow: 0 0 6px rgba(225, 51, 51, 0.54), inset 0 0 4px rgb(112 57 57 / 42%);
    }
}

@keyframes gradient_shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes gradient_move {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@font-face {
    font-family: 'BitcountPropDoubleInk';
    src: url('./fonts/BitcountPropDoubleInk.woff2') format('woff2'),
         url('./fonts/BitcountPropDoubleInk.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@keyframes gradient_shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}


