#help-tour-launcher {
    position: fixed;
    right: 20px;
    bottom: 22px;
    z-index: 9997;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, #00ffe7, #00aaa7);
    color: #00131a;
    font-weight: 700;
    font-size: 14px;
    line-height: 1;
    padding: 12px 16px;
    box-shadow: 0 10px 26px rgba(0, 255, 231, 0.35);
}

#help-tour-launcher:hover {
    transform: translateY(-1px);
}

.help-tour-overlay {
    position: fixed;
    inset: 0;
    background: rgba(5, 8, 20, 0.20);
    z-index: 9998;
    pointer-events: auto;
}

.help-tour-spotlight {
    position: fixed;
    z-index: 9999;
    pointer-events: none;
    border-radius: 12px;
    box-shadow: 0 0 0 9999px rgba(5, 8, 20, 0.48), 0 0 0 3px rgba(0, 255, 231, 0.72), 0 0 26px rgba(0, 255, 231, 0.38);
    transition: top 0.18s ease, left 0.18s ease, width 0.18s ease, height 0.18s ease;
}

.help-tour-highlight {
    position: relative !important;
    z-index: 10000 !important;
    border-radius: 10px !important;
    box-shadow: 0 0 0 4px rgba(0, 255, 231, 0.85), 0 12px 28px rgba(0, 0, 0, 0.36) !important;
}

.help-tour-box {
    position: fixed;
    --help-arrow-offset: 24px;
    width: min(380px, calc(100vw - 24px));
    max-height: min(74vh, 620px);
    background: #101528;
    color: #ecf4ff;
    border: 1px solid rgba(0, 255, 231, 0.35);
    border-radius: 12px;
    z-index: 10001;
    box-shadow: 0 16px 46px rgba(0, 0, 0, 0.44);
    overflow: hidden;
}

.help-tour-box::before {
    content: "";
    position: absolute;
    width: 12px;
    height: 12px;
    background: #101528;
    border-left: 1px solid rgba(0, 255, 231, 0.35);
    border-top: 1px solid rgba(0, 255, 231, 0.35);
    transform: rotate(45deg);
}

.help-tour-box[data-placement="bottom"]::before {
    top: -7px;
    left: var(--help-arrow-offset);
}

.help-tour-box[data-placement="top"]::before {
    bottom: -7px;
    left: var(--help-arrow-offset);
    transform: rotate(225deg);
}

.help-tour-box[data-placement="left"]::before {
    right: -7px;
    top: var(--help-arrow-offset);
    transform: rotate(135deg);
}

.help-tour-box[data-placement="right"]::before {
    left: -7px;
    top: var(--help-arrow-offset);
    transform: rotate(-45deg);
}

.help-tour-box[data-placement="center"]::before {
    display: none;
}

.help-tour-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 14px 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.help-tour-title {
    margin: 0;
    font-size: 16px;
    color: #00ffe7;
}

.help-tour-close {
    border: 0;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    width: 28px;
    height: 28px;
}

.help-tour-body {
    padding: 12px 14px 8px;
    font-size: 14px;
    line-height: 1.45;
    color: #e7edf7;
    overflow-y: auto;
}

.help-tour-meta {
    color: rgba(231, 237, 247, 0.65);
    font-size: 12px;
    margin-bottom: 8px;
}

.help-tour-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 14px 14px;
    gap: 8px;
}

.help-tour-actions .left,
.help-tour-actions .right {
    display: flex;
    gap: 8px;
}

.help-tour-btn {
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    color: #f5f8ff;
    padding: 7px 11px;
    font-size: 13px;
}

.help-tour-btn.primary {
    border-color: rgba(0, 255, 231, 0.65);
    background: rgba(0, 255, 231, 0.18);
    color: #d8fffb;
}

.help-tour-btn:disabled {
    opacity: 0.45;
}
