/* ═══════════════════════════════════════════════
   WALKTHROUGH TOUR — Radio DON v1.2.0
   ═══════════════════════════════════════════════ */

/* Overlay — полное затемнение */
.wt-overlay {
    position: fixed;
    inset: 0;
    z-index: 900;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}
.wt-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

/* Подсвеченный элемент — свечение */
.wt-highlight {
    position: relative;
    z-index: 901 !important;
    transition: box-shadow 0.5s ease;
}
.wt-highlight-active {
    box-shadow:
        0 0 0 4px rgba(255, 140, 0, 0.7),
        0 0 24px rgba(255, 140, 0, 0.35),
        0 0 60px rgba(255, 140, 0, 0.15) !important;
    border-radius: 16px;
}

/* Плашка с подсказкой */
.wt-tooltip {
    position: fixed;
    z-index: 902;
    max-width: min(340px, 90vw);
    background: rgba(0, 0, 0, 0.88);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 1.25rem;
    padding: 18px 20px 16px;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    will-change: transform, opacity;
}
.wt-tooltip.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* Иконка внутри плашки */
.wt-icon {
    font-size: 1.5rem;
    margin-right: 12px;
    color: var(--neon-orange, #ff8c00);
    filter: drop-shadow(0 0 6px rgba(255, 140, 0, 0.5));
    flex-shrink: 0;
    line-height: 1;
}

/* Текст */
.wt-text {
    font-family: 'Manrope', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: #f1f5f9;
    line-height: 1.5;
    flex: 1;
    min-width: 0;
}

/* Верхняя строка плашки: иконка + текст + крестик */
.wt-header-row {
    display: flex;
    align-items: flex-start;
    gap: 0;
    margin-bottom: 14px;
}

/* Крестик закрытия */
.wt-close {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: none;
    color: #94a3b8;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin-left: 8px;
    transition: background 0.2s, color 0.2s;
    line-height: 1;
}
.wt-close:active {
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
}

/* Нижняя строка: индикатор точек + кнопка */
.wt-footer-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Индикатор шагов (точки) */
.wt-dots {
    display: flex;
    gap: 6px;
}
.wt-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transition: background 0.3s, transform 0.3s;
}
.wt-dot.active {
    background: var(--neon-orange, #ff8c00);
    box-shadow: 0 0 8px rgba(255, 140, 0, 0.6);
    transform: scale(1.3);
}

/* Кнопки */
.wt-btn {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    padding: 8px 18px;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    transition: transform 0.15s, opacity 0.2s;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.wt-btn:active {
    transform: scale(0.94);
}

.wt-btn-next {
    background: var(--neon-orange, #ff8c00);
    color: #fff;
    box-shadow: 0 4px 16px rgba(255, 140, 0, 0.35);
}

.wt-btn-done {
    background: #4ade80;
    color: #000;
    box-shadow: 0 4px 16px rgba(74, 222, 128, 0.35);
}