/* Красивый золотистый неоновый логотип Mellstroy Casino */

.mellstroy-logo {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 30%, #FF8C00 70%, #FFD700 100%);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.8),
        0 0 15px rgba(255, 215, 0, 0.9),
        0 0 25px rgba(255, 215, 0, 0.7),
        0 0 35px rgba(255, 215, 0, 0.5);
    animation: smoothGlow 3s ease-in-out infinite alternate;
    display: block;
    text-align: center;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Плавная анимация свечения без мелькания */
@keyframes smoothGlow {
    0% {
        text-shadow: 
            0 2px 4px rgba(0, 0, 0, 0.8),
            0 0 15px rgba(255, 215, 0, 0.9),
            0 0 25px rgba(255, 215, 0, 0.7),
            0 0 35px rgba(255, 215, 0, 0.5);
        background-position: 0% 50%;
        filter: brightness(1) contrast(1.1);
    }
    100% {
        text-shadow: 
            0 2px 4px rgba(0, 0, 0, 0.8),
            0 0 20px rgba(255, 215, 0, 1),
            0 0 30px rgba(255, 215, 0, 0.8),
            0 0 40px rgba(255, 215, 0, 0.6),
            0 0 50px rgba(255, 215, 0, 0.4);
        background-position: 100% 50%;
        filter: brightness(1.15) contrast(1.2);
    }
}

/* Логотип в боковой панели */
.sidebar .mellstroy-logo {
    font-size: 18px;
    line-height: 1.2;
    margin: 0;
    padding: 15px 20px;
    border-bottom: 1px solid rgba(255, 215, 0, 0.3);
}

/* Логотип в заголовке */
.header .mellstroy-logo {
    font-size: 24px;
    line-height: 1;
    margin: 0;
    padding: 0;
}

/* Адаптивные размеры */
@media (max-width: 1024px) {
    .header .mellstroy-logo {
        font-size: 20px;
    }
    
    .sidebar .mellstroy-logo {
        font-size: 16px;
        padding: 12px 15px;
    }
}

@media (max-width: 768px) {
    .header .mellstroy-logo {
        font-size: 18px;
    }
    
    .sidebar .mellstroy-logo {
        font-size: 14px;
        padding: 10px 15px;
    }
}

@media (max-width: 480px) {
    .header .mellstroy-logo {
        font-size: 16px;
        letter-spacing: 1px;
    }
    
    .sidebar .mellstroy-logo {
        font-size: 13px;
        padding: 8px 10px;
        letter-spacing: 1px;
    }
}

/* Элегантный эффект при наведении */
.mellstroy-logo:hover {
    animation-duration: 1.5s;
    transform: scale(1.05) translateY(-1px);
    transition: all 0.3s ease;
    filter: brightness(1.2) contrast(1.2) drop-shadow(0 4px 8px rgba(255, 215, 0, 0.4));
}

/* Убираем старые стили логотипов */
.logo-image,
.header-logo {
    display: none !important;
}