.hg-tour-backdrop {
    position: fixed;
    inset: 0;
    z-index: 9990;
    background: rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(0.6px);
    -webkit-backdrop-filter: blur(0.6px);
    pointer-events: none;
}

.ws-modal-bg.open,
.wv-modal-bg.open,
.ls-modal-bg.open {
    z-index: 10001 !important;
}

.hg-tour-focus {
    position: relative !important;
    z-index: 10003 !important;
    box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.95), 0 0 0 9px rgba(251, 191, 36, 0.18), 0 0 34px rgba(251, 191, 36, 0.72) !important;
    border-color: rgba(251, 191, 36, 0.9) !important;
    animation: hgTourPulse 1.25s ease-in-out infinite;
}

@keyframes hgTourPulse {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.22); }
}

.hg-tour-card {
    position: fixed;
    z-index: 10005;
    width: min(360px, calc(100vw - 28px));
    border-radius: 14px;
    padding: 16px;
    background: #111111;
    border: 1px solid rgba(251, 191, 36, 0.42);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55), 0 0 30px rgba(251, 191, 36, 0.14);
    color: #d4d4d8;
    user-select: none;
}

.hg-tour-card.dragging {
    cursor: grabbing;
}

.hg-tour-card.center {
    left: 50% !important;
    top: 50% !important;
    transform: translate(-50%, -50%);
}

.hg-tour-kicker {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 7px;
    color: #fbbf24;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    cursor: grab;
}

.hg-tour-kicker::after {
    content: "drag";
    margin-left: auto;
    color: #52525b;
    font-size: 9px;
    letter-spacing: .08em;
}

.hg-tour-title {
    margin: 0 0 6px;
    color: #fff;
    font-family: "Russo One", "Exo 2", sans-serif;
    font-size: 16px;
    line-height: 1.25;
}

.hg-tour-text {
    margin: 0;
    color: #a1a1aa;
    font-size: 13px;
    line-height: 1.45;
}

.hg-tour-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-top: 14px;
}

.hg-tour-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    border-radius: 9px;
    padding: 8px 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.06);
    color: #d4d4d8;
    font-size: 12px;
    font-weight: 800;
    cursor: pointer;
    transition: background .14s ease, color .14s ease, border-color .14s ease;
}

.hg-tour-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.hg-tour-btn.primary {
    background: #fbbf24;
    border-color: #fbbf24;
    color: #111;
}

.hg-tour-btn.primary:hover {
    background: #fcd34d;
    border-color: #fcd34d;
}

.hg-tour-progress {
    color: #71717a;
    font-size: 11px;
    font-weight: 700;
}

.hg-tour-save-demo {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 10003;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 18px;
    border-radius: 12px;
    background: #16a34a;
    color: #fff;
    font-size: 13px;
    font-weight: 900;
    box-shadow: 0 22px 60px rgba(0,0,0,.45);
}
