.demo-page {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    background: #f7f8fc;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 1.25rem;
    box-shadow: 0 10px 35px rgba(15, 23, 42, 0.08);
    font-family: "Manrope", "Inter", system-ui, -apple-system, sans-serif;
}

.demo-heading {
    font-weight: 700;
    font-size: 1.25rem;
    color: #0f172a;
    letter-spacing: -0.01em;
}

.demo-subtitle {
    margin: 0;
    color: #475569;
    line-height: 1.6;
}

.demo-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: flex-start;
}

.demo-note {
    background: #dbeafe;
    border: 1px solid #cbdafc;
    color: #0f172a;
    border-radius: 12px;
    padding: 0.75rem 1rem;
    font-weight: 600;
}

@media (min-width: 640px) {
    .demo-page {
        padding: 1.5rem;
    }

    .demo-actions {
        flex-direction: row;
        align-items: center;
    }
}

@media (min-width: 1024px) {
    .demo-page {
        padding: 1.75rem;
    }

    .demo-heading {
        font-size: 1.5rem;
    }
}
