        * { margin: 0; padding: 0; box-sizing: border-box; }
        body {
            font-family: 'Baloo 2', 'Segoe UI', Arial, sans-serif;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            background-color: #fff9ee;
            background-image:
                radial-gradient(#ffe1a6 2px, transparent 2px),
                radial-gradient(#ffd6e6 2px, transparent 2px);
            background-size: 38px 38px, 38px 38px;
            background-position: 0 0, 19px 19px;
        }
        .site-footer { margin-top: auto; }

        header {
            display: flex;
            align-items: center;
            padding: 15px 30px;
            background: #ffffff;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
        }
        header img.logo {
            height: 70px;
            width: auto;
            cursor: pointer;
            transition: transform 0.3s ease;
        }
        header img.logo:hover {
            transform: scale(1.15);
        }
        header .brand {
            margin-left: 14px;
            font-weight: 800;
            font-size: 32px;
            color: #b8860b;
            letter-spacing: 0.5px;
        }
        header .lang {
            margin-left: auto;
            display: flex;
            gap: 6px;
            background: #fff4d6;
            padding: 5px;
            border-radius: 30px;
        }
        header .lang button {
            border: none;
            cursor: pointer;
            font-family: inherit;
            font-weight: 700;
            font-size: 15px;
            color: #6b5a30;
            background: transparent;
            padding: 7px 16px;
            border-radius: 24px;
            transition: background 0.2s ease, color 0.2s ease;
        }
        header .lang button:hover { background: #ffe9b8; }
        header .lang button.active {
            background: #f5b921;
            color: #4a3a16;
            box-shadow: 0 2px 6px rgba(245, 185, 33, 0.4);
        }
        header .login-btn {
            margin-left: 14px;
            display: inline-flex;
            align-items: center;
            gap: 7px;
            border: none;
            cursor: pointer;
            font-family: inherit;
            font-weight: 700;
            font-size: 16px;
            color: #4a3a16;
            background: #f5b921;
            padding: 11px 24px;
            border-radius: 30px;
            box-shadow: 0 4px 10px rgba(245, 185, 33, 0.4);
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }
        header .login-btn:hover {
            transform: translateY(-2px) scale(1.04);
            box-shadow: 0 6px 16px rgba(245, 185, 33, 0.5);
        }
        header .user-menu {
            position: relative;
            margin-left: 14px;
        }
        header .user-menu .login-btn { margin-left: 0; }
        header .user-dropdown {
            position: absolute;
            top: calc(100% + 8px);
            right: 0;
            min-width: 160px;
            background: #fff;
            border-radius: 14px;
            box-shadow: 0 10px 26px rgba(180, 120, 60, 0.25);
            padding: 6px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-6px);
            transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
            z-index: 60;
        }
        header .user-menu.open .user-dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        header .user-dropdown button {
            width: 100%;
            display: flex;
            align-items: center;
            gap: 8px;
            border: none;
            cursor: pointer;
            font-family: inherit;
            font-weight: 700;
            font-size: 15px;
            color: #4a3a16;
            background: transparent;
            padding: 10px 14px;
            border-radius: 10px;
            text-align: left;
            transition: background 0.15s ease;
        }
        header .user-dropdown button:hover { background: #fff4d6; }

        /* ---- Compact hero ---- */
        .hero {
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 40px;
            padding: 60px 50px;
            background: linear-gradient(135deg, #ffdf94 0%, #ffc1dc 100%);
            border-bottom: 5px solid #f5b921;
            box-shadow: inset 0 -8px 20px rgba(245, 185, 33, 0.12);
        }
        .hero > * { position: relative; z-index: 1; }
        .hero .hero-left {
            flex: 1 1 0;
            text-align: center;
        }
        .hero .bubble {
            position: absolute;
            bottom: -40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.45);
            z-index: 0;
            animation: rise linear infinite;
        }
        @keyframes rise {
            from { transform: translateY(0) scale(0.9); opacity: 0; }
            10%  { opacity: 1; }
            90%  { opacity: 1; }
            to   { transform: translateY(-220px) scale(1.1); opacity: 0; }
        }
        .hero h1 {
            font-weight: 800;
            font-size: 42px;
            line-height: 1.2;
            color: #4a3a16;
            margin-bottom: 10px;
            min-height: 56px;
            transition: opacity 0.7s ease, transform 0.7s ease;
        }
        .hero h1 .accent { color: #b8860b; }
        .hero h1.fade { opacity: 0; transform: translateY(8px); }
        .hero p {
            font-size: 19px;
            color: #6b5a30;
            margin-bottom: 22px;
            min-height: 26px;
            transition: opacity 0.7s ease, transform 0.7s ease;
        }
        .hero p.fade { opacity: 0; transform: translateY(8px); }
        .hero .dots {
            margin-bottom: 16px;
        }
        .hero .dots button {
            width: 16px;
            height: 16px;
            margin: 0 6px;
            padding: 0;
            border: 2px solid #fff;
            border-radius: 50%;
            background: #e2c270;
            cursor: pointer;
            box-shadow: 0 2px 5px rgba(180, 120, 60, 0.25);
            transition: background 0.2s ease, transform 0.2s ease;
        }
        .hero .dots button:hover { transform: scale(1.4); background: #f5b921; }
        .hero .dots button.active {
            background: #f5b921;
            transform: scale(1.5);
            box-shadow: 0 0 0 4px rgba(245, 185, 33, 0.3);
        }

        /* ---- AI impact panel (right) ---- */
        .ai-panel {
            flex: 0 0 460px;
            max-width: 460px;
            text-align: left;
            background: rgba(255, 255, 255, 0.78);
            backdrop-filter: blur(4px);
            border: 1px solid rgba(255, 255, 255, 0.9);
            border-radius: 26px;
            padding: 34px 38px;
            box-shadow: 0 12px 32px rgba(180, 120, 60, 0.22);
        }
        .ai-panel .badge {
            display: inline-block;
            font-size: 15px;
            font-weight: 700;
            color: #4a3a16;
            background: #f5b921;
            padding: 5px 18px;
            border-radius: 24px;
            margin-bottom: 16px;
            letter-spacing: 0.5px;
        }
        .ai-panel .ai-fact {
            min-height: 120px;
            transition: opacity 0.7s ease, transform 0.7s ease;
        }
        .ai-panel .ai-fact.fade { opacity: 0; transform: translateY(8px); }
        .ai-panel .ai-fact .ai-title {
            font-weight: 800;
            font-size: 24px;
            color: #4a3a16;
            margin-bottom: 10px;
        }
        .ai-panel .ai-fact .ai-desc {
            font-size: 17px;
            line-height: 1.55;
            color: #6b5a30;
        }
        .ai-panel .ai-bars {
            display: flex;
            gap: 8px;
            margin-top: 14px;
        }
        /* Hide indicators when there's only one slide */
        .ai-panel .ai-bars:has(span:only-child) { display: none; }
        .ai-panel .ai-bars span {
            flex: 1;
            height: 9px;
            border-radius: 5px;
            background: #ecdcb6;
            cursor: pointer;
            box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.08);
            transition: background 0.2s ease, transform 0.2s ease;
        }
        .ai-panel .ai-bars span:hover {
            background: #f3cf7a;
            transform: scaleY(1.5);
        }
        .ai-panel .ai-bars span.active {
            background: #f5b921;
            transform: scaleY(1.6);
            box-shadow: 0 2px 6px rgba(245, 185, 33, 0.5);
        }

        @media (max-width: 720px) {
            .hero { flex-direction: column; }
            .ai-panel { flex-basis: auto; max-width: 100%; width: 100%; }
        }

        /* ---- Mobile responsive ---- */
        @media (max-width: 640px) {
            header {
                flex-wrap: wrap;
                gap: 10px;
                padding: 12px 16px;
            }
            header img.logo { height: 48px; }
            header .brand { font-size: 24px; margin-left: 10px; }
            /* Push the language + login controls to the right edge */
            header .lang { margin-left: auto; }
            header .user-menu {
                margin-left: 10px;
                flex: 0 0 auto;
            }
            header .login-btn {
                font-size: 14px;
                padding: 9px 16px;
                max-width: 52vw;
            }
            header .login-btn #loginLabel {
                overflow: hidden;
                text-overflow: ellipsis;
                white-space: nowrap;
            }
            header .user-dropdown { right: 0; left: auto; }

            .hero {
                padding: 36px 20px;
                gap: 24px;
            }
            .hero h1 { font-size: 30px; min-height: 0; }
            .hero p { font-size: 16px; }

            .ai-panel { padding: 24px 22px; }
            .ai-panel .ai-fact .ai-title { font-size: 21px; }
            .ai-panel .ai-fact .ai-desc { font-size: 15.5px; }

            .programs { padding: 30px 16px 40px; }
            .programs h2 { font-size: 24px; }

            .site-footer { padding: 18px 16px; }
        }
        .hero .cta {
            display: inline-block;
            background: #f5b921;
            color: #4a3a16;
            font-weight: 700;
            font-size: 16px;
            text-decoration: none;
            padding: 11px 28px;
            border-radius: 30px;
            box-shadow: 0 4px 10px rgba(245, 185, 33, 0.4);
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }
        .hero .cta:hover {
            transform: translateY(-2px) scale(1.04);
            box-shadow: 0 6px 16px rgba(245, 185, 33, 0.5);
        }

        /* ---- Programs section ---- */
        .programs {
            padding: 40px 30px 50px;
            text-align: center;
        }
        .programs h2 {
            font-size: 30px;
            color: #4a3a16;
            margin-bottom: 6px;
        }
        .programs .lead {
            font-size: 16px;
            color: #6b5a30;
            margin-bottom: 30px;
        }
        .program-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 24px;
            justify-content: center;
        }
        .programs-loading {
            color: #a98f5e;
            font-size: 16px;
        }
        .program-loader {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 14px;
            padding: 30px;
            color: #a98f5e;
            font-size: 15px;
            font-weight: 600;
        }
        .program-spinner {
            width: 46px;
            height: 46px;
            border: 5px solid #ffe9b8;
            border-top-color: #f5b921;
            border-radius: 50%;
            animation: cubs-spin 0.8s linear infinite;
        }
        @keyframes cubs-spin { to { transform: rotate(360deg); } }
        .program-card {
            position: relative;
            display: flex;
            flex-direction: column;
            align-items: center;
            width: 300px;
            text-decoration: none;
            background: #fff;
            border: 2px solid #ffe9b8;
            border-radius: 24px;
            padding: 28px 24px 26px;
            box-shadow: 0 10px 26px rgba(180, 120, 60, 0.12);
            transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
        }
        .program-card .visit-badge {
            position: absolute;
            top: 12px;
            left: 14px;
            background: #f5b921;
            color: #4a3a16;
            font-size: 12.5px;
            font-weight: 700;
            padding: 3px 11px;
            border-radius: 14px;
            box-shadow: 0 2px 6px rgba(180, 120, 60, 0.25);
        }
        .program-card .lock {
            position: absolute;
            top: 12px;
            right: 14px;
            font-size: 15px;
            background: #fff4d6;
            color: #8a6d10;
            padding: 3px 9px;
            border-radius: 14px;
            display: inline-flex;
            align-items: center;
            gap: 4px;
        }
        .program-card .card-desc {
            font-size: 14px;
            color: #6b5a30;
            line-height: 1.45;
            margin-bottom: 18px;
            text-align: center;
        }
        .program-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 16px 34px rgba(180, 120, 60, 0.22);
            border-color: #f5b921;
        }
        .program-card .emoji {
            font-size: 52px;
            margin-bottom: 14px;
            transition: transform 0.25s ease;
        }
        .program-card:hover .emoji { transform: scale(1.15) rotate(-6deg); }
        .program-card h3 {
            font-size: 22px;
            color: #4a3a16;
            margin-bottom: 18px;
        }
        .program-card .feature-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            justify-content: center;
            margin-bottom: 16px;
        }
        .program-card .feature-tags .tag {
            position: relative;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 42px;
            height: 42px;
            background: #fff4d6;
            font-size: 20px;
            border-radius: 50%;
            box-shadow: inset 0 1px 3px rgba(180, 120, 60, 0.15);
            transition: transform 0.2s ease, background 0.2s ease;
        }
        .program-card:hover .feature-tags .tag { background: #ffe9b8; }
        .program-card .feature-tags .tag:hover { transform: translateY(-3px) scale(1.1); }

        /* Smart tooltip */
        .program-card .feature-tags .tag::after,
        .program-card .feature-tags .tag::before {
            position: absolute;
            bottom: calc(100% + 10px);
            left: 50%;
            transform: translateX(-50%) translateY(4px);
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.18s ease, transform 0.18s ease;
            z-index: 10;
        }
        .program-card .feature-tags .tag::after {
            content: attr(data-tip);
            white-space: nowrap;
            background: #4a3a16;
            color: #fff;
            font-size: 12px;
            font-weight: 700;
            padding: 6px 11px;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        }
        .program-card .feature-tags .tag::before {
            content: "";
            bottom: calc(100% + 4px);
            border: 6px solid transparent;
            border-top-color: #4a3a16;
        }
        .program-card .feature-tags .tag:hover::after,
        .program-card .feature-tags .tag:hover::before {
            opacity: 1;
            transform: translateX(-50%) translateY(0);
        }
        .program-card .go {
            display: inline-block;
            background: #f5b921;
            color: #4a3a16;
            font-weight: 700;
            font-size: 15px;
            padding: 10px 24px;
            border-radius: 30px;
            box-shadow: 0 4px 10px rgba(245, 185, 33, 0.4);
        }

        /* ---- Your Activity (chat-style pill, bottom-right) ---- */
        .activity-dock {
            position: fixed;
            right: 20px;
            bottom: 20px;
            z-index: 150;
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            gap: 12px;
        }
        .activity-toggle {
            border: none;
            cursor: pointer;
            font-family: inherit;
            font-weight: 800;
            font-size: 15px;
            color: #4a3a16;
            background: #f5b921;
            padding: 12px 20px;
            border-radius: 30px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            box-shadow: 0 6px 18px rgba(245, 185, 33, 0.45);
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }
        .activity-toggle:hover {
            transform: translateY(-2px) scale(1.04);
            box-shadow: 0 8px 22px rgba(245, 185, 33, 0.55);
        }
        .activity-toggle .pill-icon { font-size: 18px; }

        .activity-panel {
            width: 340px;
            max-width: calc(100vw - 40px);
            background: #fff;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 16px 40px rgba(180, 120, 60, 0.3);
            transform: translateY(16px) scale(0.96);
            transform-origin: bottom right;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.25s ease, transform 0.25s ease;
        }
        .activity-dock.open .activity-panel {
            opacity: 1;
            transform: translateY(0) scale(1);
            pointer-events: auto;
        }
        .activity-panel-head {
            display: flex;
            align-items: center;
            justify-content: space-between;
            background: #f5b921;
            color: #4a3a16;
            font-weight: 800;
            font-size: 16px;
            padding: 14px 18px;
        }
        .activity-close {
            border: none;
            background: transparent;
            font-size: 24px;
            color: #4a3a16;
            cursor: pointer;
            line-height: 1;
        }
        .activity-list {
            display: flex;
            flex-direction: column;
            gap: 10px;
            max-height: 52vh;
            overflow-y: auto;
            padding: 16px;
        }
        .activity-row {
            display: flex;
            align-items: center;
            gap: 14px;
            background: #fff;
            border: 1px solid #ffe9b8;
            border-radius: 16px;
            padding: 14px 18px;
            box-shadow: 0 6px 16px rgba(180, 120, 60, 0.1);
            text-decoration: none;
            transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
        }
        .activity-row:hover {
            transform: translateY(-2px);
            border-color: #f5b921;
            box-shadow: 0 10px 22px rgba(180, 120, 60, 0.18);
        }
        .activity-row .a-icon { font-size: 30px; flex-shrink: 0; }
        .activity-row .a-info {
            flex: 1;
            min-width: 0;
            display: flex;
            flex-direction: column;
            text-align: left;
        }
        .activity-row .a-name {
            font-weight: 700;
            font-size: 17px;
            color: #4a3a16;
            line-height: 1.3;
        }
        .activity-row .a-meta {
            font-size: 13px;
            color: #a98f5e;
            margin-top: 2px;
        }
        .activity-row .a-count {
            flex-shrink: 0;
            background: #fff4d6;
            color: #8a6d10;
            font-weight: 700;
            font-size: 14px;
            padding: 6px 14px;
            border-radius: 20px;
            white-space: nowrap;
        }
        .activity-empty { color: #a98f5e; font-size: 15px; }
        .activity-login {
            text-align: center;
            padding: 18px 10px 6px;
        }
        .activity-login p {
            color: #6b5a30;
            font-size: 15px;
            margin-bottom: 16px;
        }
        .activity-login-btn {
            border: none;
            cursor: pointer;
            font-family: inherit;
            font-weight: 700;
            font-size: 15px;
            color: #4a3a16;
            background: #f5b921;
            padding: 11px 24px;
            border-radius: 30px;
            box-shadow: 0 4px 10px rgba(245, 185, 33, 0.4);
            transition: transform 0.2s ease;
        }
        .activity-login-btn:hover { transform: translateY(-2px) scale(1.04); }

        /* ---- Footer ---- */
        .site-footer {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 18px;
            flex-wrap: wrap;
            padding: 22px 30px;
            background: #fff;
            border-top: 1px solid rgba(180, 120, 60, 0.14);
            color: #6b5a30;
            font-size: 14px;
        }
        .site-footer a {
            color: #8a6d10;
            font-weight: 700;
            text-decoration: underline;
        }
        .site-footer a:hover { text-decoration: underline; }

        /* ---- Auth modal ---- */
        .modal-overlay {
            position: fixed;
            inset: 0;
            background: rgba(60, 40, 10, 0.45);
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 100;
            padding: 20px;
        }
        .modal-overlay.open { display: flex; }
        .modal {
            background: #fff;
            width: 100%;
            max-width: 400px;
            border-radius: 24px;
            padding: 30px 30px 26px;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
            position: relative;
        }
        .modal .close {
            position: absolute;
            top: 14px;
            right: 16px;
            width: 40px;
            height: 40px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border: none;
            border-radius: 50%;
            background: transparent;
            font-size: 32px;
            color: #b59a5e;
            cursor: pointer;
            line-height: 1;
            transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
        }
        .modal .close:hover {
            background: #fff4d6;
            color: #8a6d10;
            transform: scale(1.1);
        }
        .modal h2 {
            text-align: center;
            color: #4a3a16;
            font-size: 26px;
            margin-bottom: 4px;
        }
        .modal .subtitle {
            text-align: center;
            color: #948258;
            font-size: 14px;
            margin-bottom: 18px;
        }
        .modal .tabs {
            display: flex;
            background: #fff4d6;
            border-radius: 30px;
            padding: 5px;
            margin-bottom: 18px;
        }
        .modal .tabs button {
            flex: 1;
            border: none;
            cursor: pointer;
            font-family: inherit;
            font-weight: 700;
            font-size: 15px;
            color: #a98314;
            background: transparent;
            padding: 9px;
            border-radius: 24px;
            transition: background 0.2s ease, color 0.2s ease;
        }
        .modal .tabs button.active {
            background: #f5b921;
            color: #fff;
        }
        .modal .field { margin-bottom: 14px; }
        .modal label {
            display: block;
            font-size: 13px;
            font-weight: 700;
            color: #6b5a30;
            margin-bottom: 5px;
        }
        .modal input {
            width: 100%;
            font-family: inherit;
            font-size: 15px;
            padding: 12px 14px;
            border: 2px solid #f0e2bf;
            border-radius: 12px;
            outline: none;
            transition: border-color 0.2s ease;
        }
        .modal input:focus { border-color: #f5b921; }
        .modal .pass-wrap { position: relative; }
        .modal .pass-wrap input { padding-right: 46px; }
        .modal .toggle-pass {
            position: absolute;
            top: 50%;
            right: 8px;
            transform: translateY(-50%);
            border: none;
            background: transparent;
            cursor: pointer;
            font-size: 17px;
            padding: 6px;
            line-height: 1;
            opacity: 0.65;
            transition: opacity 0.2s ease;
        }
        .modal .toggle-pass:hover { opacity: 1; }
        .modal .name-field { display: none; }
        .modal.signup .name-field { display: block; }
        .modal .submit {
            width: 100%;
            border: none;
            cursor: pointer;
            font-family: inherit;
            font-weight: 700;
            font-size: 16px;
            color: #fff;
            background: #f5b921;
            padding: 13px;
            border-radius: 30px;
            margin-top: 6px;
            box-shadow: 0 4px 10px rgba(245, 185, 33, 0.4);
            transition: transform 0.15s ease;
        }
        .modal .submit:hover { transform: translateY(-2px); }
        .modal .submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
        .modal .msg {
            text-align: center;
            font-size: 13.5px;
            margin-top: 14px;
            min-height: 18px;
        }
        .modal .msg.error { color: #d4564b; }
        .modal .msg.success { color: #3a9d4a; }
        .modal .google-btn {
            width: 100%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            border: 2px solid #ecdcb6;
            cursor: pointer;
            font-family: inherit;
            font-weight: 700;
            font-size: 16px;
            color: #4a3a16;
            background: #fff;
            padding: 13px;
            border-radius: 30px;
            box-shadow: 0 4px 12px rgba(180, 120, 60, 0.12);
            transition: transform 0.15s ease, box-shadow 0.2s ease, border-color 0.2s ease;
        }
        .modal .google-btn:hover {
            transform: translateY(-2px);
            border-color: #f5b921;
            box-shadow: 0 6px 16px rgba(180, 120, 60, 0.2);
        }
        .modal .google-btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
        .modal .google-btn svg { flex-shrink: 0; }
        .modal .google-mount {
            display: flex;
            justify-content: center;
            min-height: 44px;
        }

        /* ---- Toast (bottom-right) ---- */
        .cubs-toast-wrap {
            position: fixed;
            bottom: 22px;
            right: 22px;
            z-index: 200;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .cubs-toast {
            display: flex;
            align-items: center;
            gap: 10px;
            background: #fff;
            color: #4a3a16;
            font-family: 'Baloo 2', 'Segoe UI', Arial, sans-serif;
            font-weight: 700;
            font-size: 15px;
            padding: 14px 20px;
            border-radius: 14px;
            border-left: 5px solid #f5b921;
            box-shadow: 0 10px 26px rgba(180, 120, 60, 0.28);
            opacity: 0;
            transform: translateY(14px);
            transition: opacity 0.3s ease, transform 0.3s ease;
        }
        .cubs-toast.show { opacity: 1; transform: translateY(0); }
        @media (max-width: 640px) {
            .cubs-toast-wrap { left: 16px; right: 16px; bottom: 16px; }
        }
