/* Fishing DataDeck — käyttöopas-tour styles */
.fdd-tour-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: transparent; /* JS asettaa rgba taustaksi kun spotlight ei ole kaytossa */
    z-index: 99998;
    pointer-events: auto;
}
.fdd-tour-spotlight {
    position: absolute;
    border: 2px solid #00c8ff;
    border-radius: 12px;
    /* Box-shadow tekee koko ruudun "leikkauksen" — spotlightin sisalla nakyy elementti, ulkopuolella tummennus */
    box-shadow: 0 0 0 9999px rgba(7, 13, 18, 0.85), 0 0 28px rgba(0, 200, 255, 0.55), inset 0 0 18px rgba(0, 200, 255, 0.18);
    background: transparent;
    transition: top 0.3s ease, left 0.3s ease, width 0.3s ease, height 0.3s ease;
    pointer-events: none;
}
.fdd-tour-box {
    position: fixed;
    z-index: 99999;
    background: #0d1b24;
    border: 1px solid #00c8ff;
    border-radius: 12px;
    padding: 16px 18px;
    width: 320px;
    max-width: calc(100vw - 24px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.6), 0 0 24px rgba(0, 200, 255, 0.25);
    color: #e8f4f8;
    font-family: 'DM Sans', sans-serif;
    transition: top 0.3s ease, left 0.3s ease;
}
.fdd-tour-progress {
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    color: #7a9bb0;
    letter-spacing: 2px;
    margin-bottom: 6px;
}
.fdd-tour-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 18px;
    color: #00c8ff;
    letter-spacing: 1px;
    margin-bottom: 8px;
    line-height: 1.2;
}
.fdd-tour-text {
    font-size: 13px;
    line-height: 1.55;
    color: #e8f4f8;
    margin-bottom: 14px;
}
.fdd-tour-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}
.fdd-tour-actions button {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 600;
    border-radius: 6px;
    padding: 8px 14px;
    cursor: pointer;
    border: 1px solid transparent;
    transition: all 0.15s;
}
.fdd-tour-skip {
    background: transparent;
    color: #7a9bb0;
    border: 1px solid #1a3040;
}
.fdd-tour-skip:hover { color: #ff8888; border-color: #ff4444; }
.fdd-tour-prev {
    background: #112233;
    color: #e8f4f8;
    border: 1px solid #1a3040;
}
.fdd-tour-prev:hover { border-color: #00c8ff; }
.fdd-tour-next {
    background: #00c8ff;
    color: #000;
    border: none;
}
.fdd-tour-next:hover { opacity: 0.85; }
@media (max-width: 480px) {
    .fdd-tour-box { width: calc(100vw - 24px); }
}
