.demo-notice-bar {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 9999 !important;
    min-height: 64px;
    padding: 0.8rem 1.25rem;
    background: linear-gradient(90deg, rgba(185, 28, 28, 0.96) 0%, rgba(146, 64, 14, 0.96) 100%);
    color: #f9fafb;
    border-bottom: 1px solid rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.demo-notice-left {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.demo-notice-icon {
    font-size: 1.15rem;
    line-height: 1;
}

#demoNoticeText,
.demo-notice-bar p {
    margin: 0 !important;
    font-size: 0.92rem !important;
    line-height: 1.35 !important;
    color: #fff7ed !important;
    font-weight: 500 !important;
}

.demo-overview-btn {
    flex-shrink: 0;
    background: #ffffff;
    color: #7c2d12;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.84rem;
    padding: 0.55rem 1rem;
    border-radius: 999px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.demo-overview-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
}

body.has-demo-banner {
    padding-top: 74px !important;
}

@media (max-width: 768px) {
    .demo-notice-bar {
        flex-direction: column;
        align-items: flex-start;
        min-height: auto;
    }

    .demo-overview-btn {
        align-self: flex-end;
    }

    body.has-demo-banner {
        padding-top: 92px !important;
    }
}
