.soft-launch-banner {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: linear-gradient(90deg, var(--primary, #C25E28), var(--accent, #E8A93B));
    color: #fff;
    text-align: center;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    font-weight: 500;
    box-shadow: 0 2px 12px rgba(0,0,0,0.12);
}

.soft-launch-banner a {
    color: #fff;
    text-decoration: underline;
    font-weight: 600;
}

.soft-launch-toast {
    position: fixed;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--surface, #fff);
    color: var(--text, #1f1f1f);
    border: 1px solid var(--border, #e8e2da);
    border-left: 4px solid var(--primary, #C25E28);
    border-radius: var(--radius-md, 10px);
    padding: 0.875rem 1.25rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    z-index: 10000;
    max-width: min(90%, 520px);
    font-size: 0.95rem;
    animation: softLaunchSlideUp 0.25s ease;
}

.soft-launch-toast strong {
    display: block;
    margin-bottom: 0.25rem;
    color: var(--primary, #C25E28);
}

.soft-launch-coming-soon {
    text-align: center;
    padding: 3rem 1rem;
    max-width: 640px;
    margin: 0 auto;
}

.soft-launch-coming-soon h2 {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
    color: var(--text, #1f1f1f);
}

.soft-launch-coming-soon p {
    color: var(--text-muted, #6c6c6c);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.soft-launch-coming-soon .btn {
    margin: 0.25rem;
}

.soft-launch-disabled {
    opacity: 0.6 !important;
    cursor: not-allowed !important;
}

/* Keep the clickable area so our delegated listener can show the toast. */
a.soft-launch-disabled {
    text-decoration: line-through;
}

@keyframes softLaunchSlideUp {
    from { opacity: 0; transform: translate(-50%, 12px); }
    to { opacity: 1; transform: translate(-50%, 0); }
}
