/* Demo Mode Banner Styles */
.demo-mode-banner {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    animation: slideDown 0.5s ease-out;
    position: relative;
}

.demo-banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 60px;
    /* max-width: 1200px;
    margin: 0 auto; */
    gap: 15px;
}

.demo-banner-icon {
    width: 32px;
    height: 32px;
    color: #fff;
    flex-shrink: 0;
}

.demo-banner-icon svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.demo-banner-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.demo-banner-text {
    flex: 1;
    color: #fff;
}

.demo-banner-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 2px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.demo-banner-subtitle {
    font-size: 13px;
    opacity: 0.9;
    font-weight: 400;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.demo-banner-button {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    flex-shrink: 0;
    text-decoration: none;
    display: inline-block;
}

.demo-banner-button:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    color: #fff;
    text-decoration: none;
}

.demo-banner-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Мобильная адаптация */
@media (max-width: 768px) {
    .demo-banner-content {
        padding: 10px 60px;
        /* flex-direction: column; */
        /* text-align: center; */
        gap: 10px;
    }
    
    .demo-banner-icon {
        width: 28px;
        height: 28px;
    }
    
    .demo-banner-title {
        font-size: 15px;
    }
    
    .demo-banner-subtitle {
        font-size: 12px;
    }
    
    .demo-banner-button {
        padding: 10px 20px;
        font-size: 14px;
        /* width: 100%;
        max-width: 200px; */
    }
}

@media (max-width: 600px) {
    .demo-banner-content {
        padding: 8px 1.1rem;
    }
}

@media (max-width: 480px) {
    .demo-banner-title {
        font-size: 14px;
    }
    
    .demo-banner-subtitle {
        font-size: 11px;
    }
    
    .demo-banner-button {
        width: auto;
        padding: 8px 16px;
        font-size: 13px;
    }
}

/* Альтернативный стиль - более минималистичный */
.demo-mode-banner.minimal {
    background: linear-gradient(90deg, #4facfe 0%, #00f2fe 100%);
}

.demo-mode-banner.minimal .demo-banner-content {
    padding: 8px 20px;
}

.demo-mode-banner.minimal .demo-banner-title {
    font-size: 14px;
}

.demo-mode-banner.minimal .demo-banner-subtitle {
    font-size: 12px;
}
/* Cache version: 55972997 - Updated: 2025-08-23 21:16:37 */