.tutorial-section {
    width: 100%;
    padding: 50px 0;
    background-color: var(--background-color);
    position: relative;
}

.tutorial-content {
    width: 70%;
    margin: 0 auto;
    background-color: var(--background-color);
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(0, 255, 157, 0.3);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
}

.tutorial-image-container {
    width: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    background-color: #0A1A1A;
    border-bottom: 1px solid rgba(0, 255, 157, 0.2);
    position: relative;
}

.tutorial-image {
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tutorial-image img {
    width: 100%;
    height: auto;
    display: block;
    max-width: 100%;
}

.tutorial-cursor {
    position: absolute;
    width: 30px;
    height: 30px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="30" height="30" viewBox="0 0 30 30"><path d="M5,5 L25,20 L15,20 L5,25 Z" fill="white" stroke="black" stroke-width="1"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 10;
    transition: left 0.5s ease, top 0.5s ease;
    left: 50%;
    top: 50%;
}

.tutorial-cursor.click {
    animation: cursorClick 0.5s ease;
}

@keyframes cursorClick {
    0% {
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        transform: translate(-50%, -50%) scale(0.8);
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
    }
}

.tutorial-info {
    padding: 20px;
    text-align: center;
}

.tutorial-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    background: linear-gradient(78deg, #FFFFFF, #CECECE);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.tutorial-description {
    font-size: 16px;
    color: var(--text-color);
    margin-bottom: 20px;
}

.tutorial-controls {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.tutorial-next-btn {
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    background: linear-gradient(78deg, #00FF9D, #00995E);
    color: var(--dark-color);
    border: none;
    box-shadow: 0 0 10px rgba(0, 255, 157, 0.3);
}

.tutorial-next-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(0, 255, 157, 0.6);
}

.tutorial-progress {
    width: 100%;
    height: 4px;
    background-color: rgba(132, 154, 154, 0.2);
    position: relative;
}

.tutorial-progress-fill {
    height: 100%;
    background: linear-gradient(78deg, #00FF9D, #00995E);
    width: 0;
    transition: width 0.3s ease;
}

@media (max-width: 768px) {
    .tutorial-content {
        width: 95%;
    }
    
    .tutorial-title {
        font-size: 20px;
    }
    
    .tutorial-description {
        font-size: 14px;
    }
    
    .tutorial-next-btn {
        padding: 8px 16px;
        font-size: 12px;
    }
} 