.tutorial-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9998;
    pointer-events: none;
    clip-path: polygon(0% 0%, 0% 100%, 100% 100%, 100% 0%);
    transition: clip-path 0.3s ease-in-out;
}

.tutorial-tooltip {
    position: fixed;
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    max-width: 300px;
    animation: tooltip-appear 0.3s ease-out;
}

.tutorial-tooltip h3 {
    margin: 0 0 10px 0;
    color: #333;
    font-size: 18px;
}

.tutorial-tooltip p {
    margin: 0 0 15px 0;
    color: #666;
    font-size: 14px;
    line-height: 1.4;
}

.tutorial-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tutorial-progress {
    color: #666;
    font-size: 14px;
}

.tutorial-next-btn {
    background: #007bff;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.2s;
}

.tutorial-next-btn:hover {
    background: #0056b3;
}

.tutorial-skip-btn {
    position: fixed;
    top: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #ddd;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    z-index: 10000;
    font-size: 14px;
    transition: all 0.2s;
}

.tutorial-skip-btn:hover {
    background: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

@keyframes tooltip-appear {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .tutorial-tooltip {
        max-width: calc(100vw - 40px);
        margin: 0 20px;
    }
    
    .tutorial-skip-btn {
        top: auto;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
    }
}
