/* ============ 인터랙티브 가이드 ============ */
#interactive-guide-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    cursor: pointer;
    transition: opacity var(--transition-speed) ease;
}

.guide-mask {
    position: absolute;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(2px);
    transition: all var(--transition-speed) ease;
    pointer-events: none;
}

#interactive-guide-overlay.u-display-none {
    display: none !important;
}

.guide-target-section {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.interactive-guide-content {
    position: absolute;
    z-index: 10001;
    background: rgba(20, 20, 20, 0.95);
    border: 2px solid var(--accent);
    border-radius: 12px;
    padding: 20px;
    max-width: 500px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8), 0 0 15px var(--accent-glow);
    animation: popupSlideIn 0.3s ease-out;
    pointer-events: none;
}

#interactive-guide-text {
    color: var(--text-primary);
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 15px;
    word-break: keep-all;
}

.interactive-guide-hint {
    display: block;
    color: var(--text-gold);
    font-size: 0.85rem;
    font-weight: bold;
    animation: pulse 1.5s infinite;
}