/**
 * Demo Banner Styling
 * Matches site's dark theme with green accents
 */

.demo-banner {
    background: rgba(0, 20, 40, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--primary-color);
    color: white;
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0, 255, 159, 0.2);
}

.demo-banner .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

.demo-banner-badge {
    background: var(--primary-color);
    color: #000;
    padding: 4px 12px;
    border-radius: 15px;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 1px;
}

.demo-banner-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    flex: 1;
    text-align: center;
}

.demo-banner-button {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 6px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    transition: all 0.3s ease;
}

.demo-banner-button:hover {
    background: var(--primary-color);
    color: #000;
    box-shadow: 0 0 20px rgba(0, 255, 159, 0.5);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .demo-banner .container {
        justify-content: center;
    }
    
    .demo-banner-text {
        flex: 1 0 100%;
        text-align: center;
    }
}