/* Pro Tour – Onboarding overlay styling */

.pro-tour-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 26, 26, 0.85);
    backdrop-filter: blur(2px);
    z-index: 9998;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.pro-tour-overlay.show {
    opacity: 1;
    pointer-events: auto;
}

.pro-tour-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    background: linear-gradient(135deg, #FFFFFF 0%, #F5F5F0 100%);
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow: auto;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    pointer-events: none;
}

.pro-tour-modal.show {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    pointer-events: auto;
}

.pro-tour-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 0;
}

.pro-tour-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 2px solid var(--border-light);
    background: linear-gradient(135deg, #FFFFFF 0%, #F8F8F5 100%);
    border-radius: 16px 16px 0 0;
}

.pro-tour-step-indicator {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--accent-gold);
    background: rgba(212, 175, 55, 0.1);
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
}

.pro-tour-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-secondary);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.pro-tour-close:hover {
    background-color: rgba(212, 175, 55, 0.1);
    color: var(--accent-gold);
    transform: rotate(90deg);
}

.pro-tour-body {
    flex: 1;
    padding: 2.5rem 1.5rem;
    text-align: center;
    overflow-y: auto;
}

.pro-tour-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    animation: bounce-in 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes bounce-in {
    0% {
        transform: scale(0) rotate(-45deg);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1) rotate(0);
        opacity: 1;
    }
}

.pro-tour-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 0.75rem 0;
    line-height: 1.2;
}

.pro-tour-description {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
    max-width: 100%;
}

.pro-tour-footer {
    padding: 1.5rem;
    border-top: 2px solid var(--border-light);
    background: linear-gradient(135deg, #F8F8F5 0%, #FFFFFF 100%);
    border-radius: 0 0 16px 16px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pro-tour-btn-skip {
    background: transparent;
    border: 1px solid var(--border-light);
    color: var(--text-secondary);
    padding: 0.75rem 1.25rem;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.2s ease;
}

.pro-tour-btn-skip:hover {
    background: rgba(0, 0, 0, 0.02);
    border-color: var(--text-secondary);
    color: var(--text-primary);
}

.pro-tour-nav {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
}

.pro-tour-btn-prev,
.pro-tour-btn-next {
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-light) 100%);
    border: none;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 700;
    transition: all 0.2s ease;
    flex: 1;
}

.pro-tour-btn-prev {
    background: linear-gradient(135deg, #E0E0D8 0%, #D5D5CE 100%);
    color: var(--text-primary);
}

.pro-tour-btn-prev:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.pro-tour-btn-next {
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.pro-tour-btn-next:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(212, 175, 55, 0.4);
}

.pro-tour-progress {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    padding-bottom: 1rem;
}

.pro-tour-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.2);
    cursor: pointer;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

.pro-tour-dot:hover {
    background: rgba(212, 175, 55, 0.4);
    transform: scale(1.2);
}

.pro-tour-dot.active {
    background: var(--accent-gold);
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.4);
}

/* Mobile responsive */
@media (max-width: 640px) {
    .pro-tour-modal {
        max-width: 95%;
        max-height: 85vh;
    }
    
    .pro-tour-header {
        padding: 1.25rem;
    }
    
    .pro-tour-body {
        padding: 2rem 1.25rem;
    }
    
    .pro-tour-icon {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .pro-tour-title {
        font-size: 1.25rem;
    }
    
    .pro-tour-description {
        font-size: 0.9rem;
    }
    
    .pro-tour-footer {
        padding: 1.25rem;
        gap: 0.75rem;
    }
    
    .pro-tour-nav {
        flex-direction: column;
    }
    
    .pro-tour-btn-prev,
    .pro-tour-btn-next {
        width: 100%;
    }
}

/* Accessibility */
.pro-tour-btn-skip:focus,
.pro-tour-btn-prev:focus,
.pro-tour-btn-next:focus {
    outline: 2px solid var(--accent-gold);
    outline-offset: 2px;
}

.pro-tour-close:focus {
    outline: 2px solid var(--accent-gold);
    outline-offset: -2px;
}

/* Dark mode (if implemented)
@media (prefers-color-scheme: dark) {
    .pro-tour-modal {
        background: linear-gradient(135deg, #2A2A2A 0%, #1F1F1F 100%);
        color: #E0E0E0;
    }
    
    .pro-tour-title {
        color: #FFFFFF;
    }
    
    .pro-tour-description {
        color: #B0B0B0;
    }
} */
