


#guide-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 10000;
    display: none; 
    
    pointer-events: none;
}

#guide-overlay.active {
    display: block;
}


.guide-mask {
    position: absolute;
    
    background-color: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px); 

    transition: all 0.2s ease-out; 
    z-index: 10001;
    
    pointer-events: auto;
}


#guide-highlight-box {
    position: absolute;
    border: 2px solid var(--color-brand-green); 
    box-shadow: 0 0 15px rgba(4, 195, 96, 0.5); 
    border-radius: 8px;
    z-index: 10002;
    transition: all 0.2s ease-out;
    
    pointer-events: auto;
    background: transparent;
}


#guide-tooltip {
    position: absolute;
    width: 320px;
    background-color: #faf5f1;
    
    padding: 0 0 20px 0;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 10003;
    transition: opacity 0.3s ease-out, transform 0.3s ease-out;
    opacity: 0;
    transform: translateY(10px);
    
    pointer-events: auto;
    overflow: hidden; 
}

#guide-tooltip.visible {
    opacity: 1;
    transform: translateY(0);
}


.guide-progress-container {
    width: 100%;
    height: 6px;
    background-color: #e0e0e0;
    margin-bottom: 15px;
}

.guide-progress-fill {
    height: 100%;
    background-color: var(--color-brand-green);
    width: 0%;
    transition: width 0.3s ease;
}


#guide-tooltip h4 {
    margin: 0 20px 10px 20px; 
    color: var(--color-brand-purple);
    font-size: 1.1rem;
    font-weight: 700;
}

#guide-tooltip p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
    margin: 0 20px 20px 20px; 
}


.guide-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #eee;
    padding: 15px 20px 0 20px; 
    margin: 0;
}

.guide-nav {
    display: flex;
    align-items: center;
    gap: 10px;
}

#guide-step-count {
    font-size: 0.8rem;
    color: #999;
    font-weight: 600;
}


.btn-guide {
    border: none;
    background: none;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 4px;
    transition: background 0.2s;
}

.btn-guide-secondary {
    color: #7f8c8d;
}
.btn-guide-secondary:hover {
    background-color: #f0f0f0;
    color: #333;
}

.btn-guide-primary {
    background-color: var(--color-brand-green);
    color: #faf5f1;
}
.btn-guide-primary:hover {
    background-color: #03a044; 
}


.nav-link-guide {
    margin-top: auto; 
    color: var(--color-brand-purple) !important;
    background-color: rgba(135, 45, 132, 0.1);
    border-radius: 8px;
}
.nav-link-guide:hover {
    background-color: rgba(135, 45, 132, 0.2) !important;
}