.scenario-body {
    background: radial-gradient(circle at 18% 18%, rgba(157, 218, 255, 0.35), transparent 36%),
                radial-gradient(circle at 86% 8%, rgba(214, 196, 255, 0.28), transparent 38%),
                linear-gradient(180deg, #e8f5ff 0%, #e5ecff 55%, #dff1ff 100%);
    color: #0f1f34;
    margin: 0;
    padding: 0;
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    min-height: 100vh;
}

.scenario-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 14px;
    margin-top: 10px;
}

.bubble-panel {
    background: linear-gradient(140deg, rgba(255, 255, 255, 0.92), rgba(229, 243, 255, 0.9));
    border-radius: 24px;
    padding: 22px 20px;
    border: 1px solid rgba(46, 87, 132, 0.12);
    box-shadow: 0 20px 36px rgba(49, 107, 164, 0.12);
    position: relative;
    overflow: hidden;
}

.bubble-panel::before {
    content: "";
    position: absolute;
    inset: 10% 12% auto auto;
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, rgba(163, 222, 255, 0.4), transparent 60%);
    filter: blur(22px);
}

.bubble-panel h2 {
    margin: 0 0 12px;
    font-size: 22px;
    color: #0f2140;
}

.bubble-panel p {
    margin: 0 0 18px;
    color: rgba(15, 33, 64, 0.72);
}

.bubble-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.scenario-bubble {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(226, 245, 255, 0.95), rgba(242, 232, 255, 0.9));
    border: 1px solid rgba(46, 87, 132, 0.18);
    color: #0f2140;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.scenario-bubble:hover {
    transform: translateY(-2px);
    border-color: rgba(49, 107, 164, 0.36);
    box-shadow: 0 10px 20px rgba(49, 107, 164, 0.18);
}

.bubble-panel.compact {
    min-height: 100%;
}

.scenario-navbar {
    background: transparent;
    border-bottom: none;
    padding: 0;
}

.scenario-content {
    padding-top: 0;
}

@media (max-width: 768px) {
    .scenario-container {
        grid-template-columns: 1fr;
    }
}
