#onboardingPortal {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: transparent;           /* No dark overlay */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    pointer-events: none;              /* Allows clicks to pass through */
}

.glass-setup-badge {
    background: rgba(15, 23, 42, 0.92);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.22);
    padding: 40px 34px;
    border-radius: 26px;
    width: 380px;
    box-shadow: 0 30px 70px -15px rgba(0,0,0,0.45);
    pointer-events: all;               /* Only the card catches clicks */
    transition: all 0.4s ease;
}

.expanded-card {
    width: 420px !important;
    padding: 50px 40px !important;
}
.btn-lang {
    background: rgba(255,255,255,0.08);
    border: 1.5px solid rgba(255,255,255,0.25);
    color: white;
    width: 100%;
    padding: 16px 20px;
    border-radius: 16px;
    font-size: 1.05rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.35s ease;
}

.btn-lang:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px -5px rgba(0,0,0,0.3);
}

/* Different colors for each language */
.en-btn { border-color: #0062ff; }
.en-btn:hover { background: rgba(0,98,255,0.15); color: #fff; }

.hi-btn { border-color: #ff6b00; }
.hi-btn:hover { background: rgba(255,107,0,0.15); color: #fff; }

.sv-btn { border-color: #00c853; }
.sv-btn:hover { background: rgba(0,200,83,0.15); color: #fff; }

.de-btn { border-color: #d32f2f; }
.de-btn:hover { background: rgba(211,47,47,0.15); color: #fff; }

/* Small colored dot */
.lang-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

.en-btn .lang-dot { background: #0062ff; }
.hi-btn .lang-dot { background: #ff6b00; }
.sv-btn .lang-dot { background: #00c853; }
.de-btn .lang-dot { background: #d32f2f; }