:root,
html.light {
    color-scheme: light;
    --oi-bg: radial-gradient(circle at 20% 20%, #f1f7ff 0%, #f8fbff 35%, #ffffff 85%);
    --oi-ice: #e0f2ff;
    --oi-azure: #93c5fd;
    --oi-sky: #38bdf8;
    --oi-cobalt: #2563eb;
    --oi-gold: #fcd34d;
    --oi-deep: #0f172a;
    --oi-card: rgba(255, 255, 255, 0.95);
    --oi-border: rgba(147, 197, 253, 0.6);
}

html.dark {
    color-scheme: dark;
    --oi-bg: radial-gradient(circle at 10% 5%, #0b1220 0%, #050c1b 45%, #020617 90%);
    --oi-ice: #0f172a;
    --oi-azure: #1d4ed8;
    --oi-sky: #0ea5e9;
    --oi-cobalt: #2563eb;
    --oi-gold: #fbbf24;
    --oi-deep: #e2e8f0;
    --oi-card: rgba(4, 12, 24, 0.92);
    --oi-border: rgba(51, 65, 85, 0.6);
}

:root {
    --oi-radius-reset: 0px;
}

html,
body {
    -webkit-text-size-adjust: 100%;
}

.pix-modal {
    display: flex;
    align-items: stretch;
    justify-content: center;
    padding-top: env(safe-area-inset-top, 0px);
    padding-bottom: env(safe-area-inset-bottom, 0px);
    width: 100%;
    min-height: 100vh;
    overflow-y: auto;
}

.pix-modal__panel {
    width: 100%;
    min-height: 100vh;
    max-height: none;
    overflow-y: auto;
    margin: 0;
    border-radius: 0;
    display: flex;
    flex-direction: column;
}

@media (max-width: 768px) {
    input,
    select,
    textarea,
    button {
        font-size: 16px;
    }

    .pix-modal input,
    .pix-modal select,
    .pix-modal textarea,
    .pix-modal button {
        font-size: 16px;
    }

    .pix-modal__panel {
        padding: env(safe-area-inset-top, 0px) 1rem env(safe-area-inset-bottom, 12px);
    }
}

@media (min-width: 768px) {
    .pix-modal {
        align-items: flex-start;
        padding: 2rem 1rem;
    }

    .pix-modal__panel {
        max-width: 32rem;
        min-height: auto;
        max-height: calc(100vh - 4rem);
        border-radius: 32px;
        margin-top: 2.5rem;
        padding: 1.5rem;
    }
}

.pwa-install {
    position: fixed;
    top: 0.75rem;
    left: 0;
    right: 0;
    z-index: 70;
    padding-inline: 1.25rem;
    pointer-events: none;
}

.pwa-install__bar {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 1.5rem;
    align-items: center;
    background: rgba(2, 6, 23, 0.9);
    border: 1px solid rgba(148, 163, 184, 0.35);
    border-radius: 20px;
    padding: 0.9rem 1.4rem;
    box-shadow: 0 15px 50px rgba(2, 6, 23, 0.45);
    backdrop-filter: blur(18px);
    color: #f8fafc;
    pointer-events: auto;
}

.pwa-install__info {
    flex: 1;
    min-width: 0;
}

.pwa-install__identity {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.pwa-install__icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.9rem;
    object-fit: cover;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.45);
    border: 1px solid rgba(248, 250, 252, 0.3);
    flex-shrink: 0;
}

.pwa-install__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #a855f7;
}

.pwa-install__title {
    display: block;
    margin: 0.2rem 0 0;
    font-size: 1rem;
    font-weight: 600;
}

.pwa-install__subtitle {
    margin: 0.15rem 0 0;
    font-size: 0.85rem;
    color: rgba(248, 250, 252, 0.7);
}

.pwa-install__helper {
    margin: 0.3rem 0 0;
    font-size: 0.78rem;
    color: rgba(148, 163, 184, 0.9);
}

.pwa-install__helper--error {
    color: #f87171;
    font-weight: 600;
}

.pwa-install__actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pwa-install__button {
    border: none;
    border-radius: 30px;
    padding: 0.5rem 1.4rem;
    font-weight: 600;
    background: #a855f7;
    color: #0f172a;
    cursor: pointer;
    box-shadow: inset 0 0 12px rgba(255, 255, 255, 0.18);
}

.pwa-install__button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.pwa-install__dismiss {
    border: none;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(15, 23, 42, 0.6);
    color: #f8fafc;
    cursor: pointer;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .pwa-install__bar {
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }

    .pwa-install__identity {
        flex-direction: column;
    }

    .pwa-install__actions {
        width: 100%;
        justify-content: center;
    }
}

.push-optin {
    position: fixed;
    bottom: 1rem;
    left: 0;
    right: 0;
    z-index: 60;
    display: flex;
    justify-content: center;
    padding: 0 1rem;
    pointer-events: none;
}

.push-optin__bar {
    width: 100%;
    max-width: 360px;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0.65rem;
    align-items: flex-start;
    padding: 0.85rem 1rem 1rem;
    border-radius: 20px;
    background: rgba(2, 6, 23, 0.92);
    border: 1px solid rgba(148, 163, 184, 0.2);
    box-shadow: 0 18px 40px rgba(2, 6, 23, 0.45);
    color: #f8fafc;
    pointer-events: auto;
    position: relative;
    backdrop-filter: blur(18px);
}

@media (min-width: 540px) {
    .push-optin__bar {
        grid-template-columns: minmax(0, 1fr) 132px;
        align-items: center;
    }
}

.push-optin__copy {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.push-optin__identity {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.push-optin__avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #38bdf8, #6366f1);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.4);
    position: relative;
}

.push-optin__avatar::after {
    content: '';
    position: absolute;
    inset: 0;
    margin: auto;
    width: 14px;
    height: 14px;
    border: 2px solid #0f172a;
    border-bottom: none;
    border-radius: 2px 2px 0 0;
    top: 11px;
}

.push-optin__avatar::before {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: #0f172a;
    border-radius: 50%;
}

.push-optin__eyebrow {
    display: inline-block;
    font-size: 0.62rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(226, 232, 240, 0.65);
}

.push-optin__title {
    display: block;
    margin-top: 0.1rem;
    font-size: 0.95rem;
    font-weight: 600;
}

.push-optin__subtitle {
    margin: 0;
    font-size: 0.78rem;
    color: rgba(226, 232, 240, 0.78);
}

.push-optin__helper {
    margin: 0;
    font-size: 0.74rem;
    color: rgba(148, 163, 184, 0.9);
}

.push-optin__helper--error {
    color: #f87171;
}

.push-optin__actions {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    width: 100%;
}

@media (min-width: 540px) {
    .push-optin__actions {
        width: 132px;
    }
}

.push-optin__button {
    border: none;
    border-radius: 14px;
    padding: 0.55rem 0.9rem;
    font-weight: 600;
    background: linear-gradient(135deg, #22d3ee, #0ea5e9);
    color: #022c44;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s ease;
}

.push-optin__button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.push-optin__ghost {
    border: none;
    border-radius: 14px;
    padding: 0.45rem 0.9rem;
    background: rgba(248, 250, 252, 0.08);
    color: rgba(248, 250, 252, 0.85);
    cursor: pointer;
    font-size: 0.8rem;
}

.push-optin__dismiss {
    border: none;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(15, 23, 42, 0.6);
    color: #e2e8f0;
    cursor: pointer;
    font-size: 1rem;
    position: absolute;
    top: 0.45rem;
    right: 0.45rem;
}

.push-optin[data-push-state="activating"] .push-optin__button::after {
    content: '';
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid rgba(2, 44, 68, 0.5);
    border-top-color: transparent;
    margin-left: 0.4rem;
    animation: push-optin-spin 0.7s linear infinite;
}

@keyframes push-optin-spin {
    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 520px) {
    .push-optin {
        padding: 0 0.75rem;
    }

    .push-optin__subtitle {
        display: none;
    }

    .push-optin__bar {
        grid-template-columns: minmax(0, 1fr);
    }

    .push-optin__actions {
        width: 100%;
    }
}
html {
    overflow-x: hidden;
}

/* Force square styling across the experience */
*,
*::before,
*::after {
    border-radius: var(--oi-radius-reset) !important;
}

[class*="rounded"],
[class*="pill"],
[class*="chip"],
button,
input,
select,
textarea {
    border-radius: 0 !important;
}

body {
    min-height: 100vh;
    background: var(--oi-bg);
    color: var(--oi-deep);
    position: relative;
    overflow-x: hidden;
}

body::before,
body::after {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    mix-blend-mode: screen;
    opacity: 0.55;
    z-index: -1;
}

body::before {
    background-image:
        radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.75), transparent 45%),
        radial-gradient(circle at 80% 0%, rgba(147, 197, 253, 0.35), transparent 50%),
        radial-gradient(circle at 60% 60%, rgba(56, 189, 248, 0.25), transparent 60%);
    filter: blur(2px);
}

body::after {
    background-image: radial-gradient(circle, rgba(148, 197, 255, 0.18) 1px, transparent 1px);
    background-size: 120px 120px;
}

html.dark body {
    background: var(--oi-bg);
    color: var(--oi-deep);
}

html.dark body::before {
    background-image:
        radial-gradient(circle at 10% 10%, rgba(3, 7, 18, 0.85), transparent 45%),
        radial-gradient(circle at 85% 0%, rgba(30, 58, 138, 0.45), transparent 55%),
        radial-gradient(circle at 60% 80%, rgba(14, 165, 233, 0.2), transparent 60%);
    opacity: 0.65;
}

html.dark body::after {
    background-image: radial-gradient(circle, rgba(15, 118, 220, 0.12) 1px, transparent 1px);
    opacity: 0.25;
}

.shell-chrome {
    position: relative;
    isolation: isolate;
}

.shell-chrome::before,
.shell-chrome::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.shell-chrome::before {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.6));
    border-radius: 36px;
    margin: 20px 12px calc(32px + env(safe-area-inset-bottom, 0px));
}

.shell-chrome::after {
    background: radial-gradient(circle at 20% -10%, rgba(147, 197, 253, 0.75), transparent 45%),
        radial-gradient(circle at 100% 0%, rgba(59, 130, 246, 0.35), transparent 55%);
    filter: blur(40px);
}

html.dark .shell-chrome::before {
    background: linear-gradient(180deg, rgba(4, 12, 24, 0.95), rgba(4, 12, 24, 0.7));
    border: 1px solid rgba(15, 23, 42, 0.8);
}

html.dark .shell-chrome::after {
    background: radial-gradient(circle at 10% -10%, rgba(14, 165, 233, 0.35), transparent 45%),
        radial-gradient(circle at 100% 0%, rgba(59, 130, 246, 0.25), transparent 55%);
    filter: blur(60px);
    opacity: 0.6;
}

.glow-spot {
    position: absolute;
    width: 240px;
    height: 240px;
    border-radius: 999px;
    filter: blur(50px);
    opacity: 0.55;
    pointer-events: none;
}

.glow-spot--pink {
    top: 20px;
    right: -60px;
    background: rgba(147, 197, 253, 0.9);
}

.glow-spot--lilac {
    bottom: 120px;
    left: -80px;
    background: rgba(56, 189, 248, 0.8);
}

html.dark .glow-spot--pink {
    background: rgba(59, 130, 246, 0.35);
}

html.dark .glow-spot--lilac {
    background: rgba(14, 165, 233, 0.3);
}

.toast {
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.theme-icon {
    display: block;
}

input, select, textarea {
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input:focus, select:focus, textarea:focus {
    border-color: #38bdf8;
    box-shadow: 0 0 0 2px rgba(56, 189, 248, 0.2);
}

.lux-card {
    border-radius: 28px;
    padding: 1.5rem;
    background: var(--oi-card);
    border: 1px solid var(--oi-border);
    box-shadow: 0 25px 55px rgba(15, 23, 42, 0.08);
    position: relative;
    overflow: hidden;
}

.lux-card::after {
    content: '';
    position: absolute;
    inset: 12px;
    border-radius: 24px;
    border: 1px dashed rgba(255, 255, 255, 0.35);
    opacity: 0.5;
}

.lux-card > * {
    position: relative;
    z-index: 1;
}

.gradient-blush {
    background-image: linear-gradient(125deg, rgba(255, 255, 255, 0.98) 0%, rgba(224, 242, 255, 0.95) 100%);
}

.gradient-lilac {
    background-image: linear-gradient(130deg, rgba(255, 255, 255, 0.96) 0%, rgba(186, 230, 253, 0.95) 100%);
}

.gradient-sky {
    background-image: linear-gradient(130deg, rgba(255, 255, 255, 0.95) 0%, rgba(147, 197, 253, 0.95) 100%);
}

.gradient-amber {
    background-image: linear-gradient(130deg, rgba(255, 255, 255, 0.95) 0%, rgba(96, 165, 250, 0.9) 100%);
}

.stat-chip {
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 1.25rem 1.5rem;
    background: rgba(255, 255, 255, 0.85);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.stat-chip__helper {
    border-radius: 999px;
    padding: 0.2rem 0.85rem;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.08em;
}

.badge-tag {
    border-radius: 999px;
    border: 1px solid transparent;
    padding: 0.25rem 0.95rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.badge-emerald { background: rgba(34, 197, 94, 0.12); color: #059669; border-color: rgba(34, 197, 94, 0.35); }
.badge-amber { background: rgba(245, 158, 11, 0.15); color: #b45309; border-color: rgba(245, 158, 11, 0.35); }
.badge-rose { background: rgba(244, 114, 182, 0.15); color: #be185d; border-color: rgba(244, 114, 182, 0.35); }
.badge-sky { background: rgba(56, 189, 248, 0.15); color: #0369a1; border-color: rgba(56, 189, 248, 0.35); }
.badge-slate { background: rgba(148, 163, 184, 0.18); color: #334155; border-color: rgba(148, 163, 184, 0.3); }

.nav-shell {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 0;
    border-top: 1px solid rgba(147, 197, 253, 0.6);
    border-left: 0;
    border-right: 0;
    box-shadow: 0 -6px 30px rgba(15, 23, 42, 0.08);
    width: 100%;
    padding-bottom: calc(0.4rem + env(safe-area-inset-bottom, 0px));
}

html.scroll-locked,
body.scroll-locked {
    overflow: hidden;
}

body.scroll-locked {
    touch-action: none;
    overscroll-behavior: contain;
}

.top-bar {
    padding-left: calc(clamp(12px, 4vw, 24px) + env(safe-area-inset-left, 0px));
    padding-right: calc(clamp(12px, 4vw, 24px) + env(safe-area-inset-right, 0px));
    box-sizing: border-box;
}

.top-bar__inner {
    width: min(100vw, 36rem);
    max-width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}

.bottom-nav {
    left: 50%;
    transform: translate3d(-50%, 0, 0);
    width: min(100vw, 36rem);
    max-width: 100%;
    box-sizing: border-box;
    padding-left: calc(clamp(12px, 4vw, 24px) + env(safe-area-inset-left, 0px));
    padding-right: calc(clamp(12px, 4vw, 24px) + env(safe-area-inset-right, 0px));
}

@media (min-width: 768px) {
    .top-bar__inner,
    .bottom-nav {
        width: min(100vw, 38rem);
    }
}

html.dark .nav-shell {
    background: rgba(2, 6, 23, 0.96);
    border-top: 1px solid rgba(30, 41, 59, 0.8);
    box-shadow: 0 -12px 40px rgba(0, 0, 0, 0.65);
}


.nav-link {
    position: relative;
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #94a3b8;
    transition: color 0.2s ease;
    padding-top: 0.4rem;
}

.nav-link svg {
    width: 22px;
    height: 22px;
}

.nav-link--active {
    color: #0f172a;
}

.nav-link--active::before {
    content: '';
    position: absolute;
    inset: 0.25rem 0.9rem;
    border-radius: 999px;
    background: linear-gradient(125deg, #7dd3fc, #2563eb);
    opacity: 0.25;
    filter: blur(10px);
}

.nav-link__dot {
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: linear-gradient(125deg, #7dd3fc, #2563eb);
}

html.dark .nav-link {
    color: #94a3b8;
}

html.dark .nav-link--active {
    color: #f8fafc;
}

html.dark .nav-link--active::before {
    background: linear-gradient(125deg, #0ea5e9, #2563eb);
    opacity: 0.35;
}

html.dark .nav-link__dot {
    background: linear-gradient(125deg, #0ea5e9, #2563eb);
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-thumb {
    background: rgba(148, 163, 184, 0.6);
    border-radius: 999px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

html.dark .bg-white,
html.dark .bg-slate-50,
html.dark .bg-slate-100,
html.dark [class*="bg-white/"],
html.dark [class*="bg-slate-50"],
html.dark [class*="bg-slate-100"] {
    background-color: #0b1424 !important;
}

html.dark .border-slate-200,
html.dark [class*="border-slate-200"],
html.dark .border-white,
html.dark [class*="border-white/"] {
    border-color: rgba(148, 163, 184, 0.35) !important;
}

html.dark .text-slate-900,
html.dark .text-slate-800,
html.dark .text-slate-700 {
    color: #f8fafc !important;
}

html.dark .text-slate-600,
html.dark .text-slate-500 {
    color: #cbd5f5 !important;
}

html.dark .text-slate-400,
html.dark .text-slate-300 {
    color: #94a3b8 !important;
}

html.dark .bg-slate-900,
html.dark [class*="bg-slate-900"] {
    background-color: #020b1d !important;
}

html.dark input,
html.dark select,
html.dark textarea {
    background-color: #0d1a2b;
    border-color: rgba(56, 189, 248, 0.25);
    color: #f8fafc;
}

html.dark input::placeholder,
html.dark textarea::placeholder {
    color: #64748b;
}

html.dark button,
html.dark a {
    color: inherit;
}

html.dark [style*="#f6f8fb 0%,#eef2f7 45%,#ffffff 100%"] {
    background: linear-gradient(135deg, #030712 0%, #050c1b 45%, #0b1120 100%) !important;
}

/* Live investment popups */
.live-popup {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(15, 23, 42, 0.08);
    color: #0f172a;
    padding: 0.85rem 1rem;
    box-shadow: 0 25px 55px rgba(15, 23, 42, 0.18);
    font-size: 0.85rem;
    line-height: 1.25rem;
    transform: translateY(12px);
    opacity: 0;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.live-popup strong {
    font-weight: 600;
}

.live-popup span {
    color: #0369a1;
    font-weight: 600;
}

.live-popup[data-direction="high"] span {
    color: #059669;
}

.live-popup[data-direction="low"] span {
    color: #dc2626;
}

.live-popup--visible {
    opacity: 1;
    transform: translateY(0);
}

html.dark .live-popup {
    background: rgba(2, 6, 23, 0.95);
    border-color: rgba(51, 65, 85, 0.65);
    color: #f8fafc;
    box-shadow: 0 25px 55px rgba(0, 0, 0, 0.45);
}

html.dark .live-popup span {
    color: #38bdf8;
}

html.dark .live-popup[data-direction="high"] span {
    color: #34d399;
}

html.dark .live-popup[data-direction="low"] span {
    color: #f87171;
}

.text-4xl {
    font-size: 0.9rem !important;
    line-height: 1.2rem !important;
}

.text-3xl,
.text-2xl {
    font-size: 0.9rem !important;
    line-height: 1.2rem !important;
}

.text-xl {
    font-size: 0.95rem !important;
    line-height: 1.25rem !important;
}

.text-lg {
    font-size: 0.9rem !important;
    line-height: 1.2rem !important;
}

.text-base {
    font-size: 0.85rem !important;
    line-height: 1.15rem !important;
}

.push-stream {
    position: fixed;
    right: 1.5rem;
    bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    width: min(320px, calc(100vw - 2rem));
    z-index: 60;
    pointer-events: none;
}

.push-stream__item {
    background: rgba(15, 23, 42, 0.96);
    color: #f8fafc;
    border-radius: 1rem;
    padding: 1rem 1.25rem;
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.35);
    transform: translateY(20px) scale(0.98);
    opacity: 0;
    transition: opacity 0.25s ease, transform 0.25s ease;
    pointer-events: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    border: 1px solid rgba(148, 163, 184, 0.2);
}

.push-stream__item.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.push-stream__content {
    flex: 1;
    min-width: 0;
}

.push-stream__title {
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0;
}

.push-stream__body {
    font-size: 0.78rem;
    margin: 0.15rem 0 0;
    color: rgba(241, 245, 249, 0.85);
}

.push-stream__amount {
    display: inline-flex;
    margin-top: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: #34d399;
}

.push-stream__cta {
    background: #fbbf24;
    color: #0f172a;
    border: none;
    border-radius: 999px;
    font-weight: 600;
    padding: 0.45rem 0.9rem;
    cursor: pointer;
    flex-shrink: 0;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.push-stream__cta:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.25);
}

.push-stream__item[data-category="model-pulse"] {
    border-color: rgba(52, 211, 153, 0.7);
}

.push-stream__item[data-category="commission"] {
    border-color: rgba(244, 114, 182, 0.7);
}

.push-stream__item[data-category="daily-return"] {
    border-color: rgba(96, 165, 250, 0.7);
}

.push-stream__item[data-category="withdrawal"] {
    border-color: rgba(251, 191, 36, 0.7);
}

.push-stream__item[data-category="wallet"] {
    border-color: rgba(14, 165, 233, 0.7);
}

.push-stream__item[data-category="model-pulse"] .push-stream__cta {
    background: #34d399;
    color: #022c22;
}

.push-stream__item[data-category="commission"] .push-stream__cta {
    background: #f472b6;
    color: #4a044e;
}

.push-stream__item[data-category="daily-return"] .push-stream__cta {
    background: #93c5fd;
    color: #082f49;
}

@media (max-width: 640px) {
    .push-stream {
        left: 0.75rem;
        right: 0.75rem;
        bottom: 1rem;
        width: auto;
    }
}
