.tut-spotlight {
    position: fixed;
    z-index: 9999;
    border-radius: 14px;
    box-shadow: 0 0 0 9999px rgba(0, 0, 0, 0.55);
    transition: top 0.35s ease, left 0.35s ease,
                width 0.35s ease, height 0.35s ease;
    pointer-events: none;
}

.tut-tooltip {
    position: fixed;
    z-index: 10000;
    width: 260px;
    background: #ffffff;
    border-radius: 14px;
    padding: 18px 20px;
    border: 0.5px solid rgba(0, 0, 0, 0.12);
    transition: top 0.35s ease, left 0.35s ease;
    font-family: 'Nunito', sans-serif;
}

.tut-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.tut-brand {
    font-size: 12px;
    font-weight: 700;
    color: #F5A623;
}

.tut-step-count {
    font-size: 11px;
    color: #aaa;
    margin-left: auto;
}

.tut-dots {
    display: flex;
    gap: 4px;
    align-items: center;
    margin-bottom: 12px;
}

.tut-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #ddd;
    transition: width 0.2s ease, background 0.2s ease;
}

.tut-dot.active {
    background: #F5A623;
    width: 14px;
    border-radius: 3px;
}

.tut-body {
    font-size: 13px;
    line-height: 1.65;
    color: #333;
    margin-bottom: 16px;
}

.tut-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.tut-skip {
    font-size: 11px;
    color: #bbb;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    font-family: 'Nunito', sans-serif;
}

.tut-skip:hover {
    color: #555;
}

.tut-btns {
    display: flex;
    gap: 6px;
}

.tut-btn {
    font-size: 12px;
    padding: 5px 14px;
    border-radius: 20px;
    border: none;
    font-weight: 700;
    cursor: pointer;
    font-family: 'Nunito', sans-serif;
    transition: background 0.15s ease;
}

.tut-btn.prev {
    background: #f0f0f0;
    color: #555;
}

.tut-btn.prev:hover {
    background: #e4e4e4;
}

.tut-btn.next {
    background: #F5A623;
    color: #fff;
}

.tut-btn.next:hover {
    background: #e09515;
}
