.scroll-section {
        position: relative;
        min-height: 70vh;
    }

    .scroll-section-inner {
        display: flex;
        align-items: flex-start;
        min-height: 70vh;
        margin: auto;
    }
    
    .scroll-section-title {
    margin-bottom: 60px;
}

.scroll-section-title h2{
    margin-bottom:0;
}
    
    .scroll-section-title span{
        color:var(--color-primary);
    }

    .left-content {
        flex: 1;
        padding-right:50px;
    }

    .content-block {
        min-height: 70vh;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        opacity: 0.3;
        transition: opacity 0.6s ease;
        padding:0 0 2rem 0;
    }

    .content-block.active {
        opacity: 1;
    }

.content-block-box{
    width:100%;
    height:300px;
    background:#000000;
    margin-bottom:15px;
    border-radius:20px;
}

    .content-block p {
        font-size: 1.2rem;
        line-height: 1.8;
        color: #666;
        margin-bottom: 2rem;
    }

    .right-content {
        flex: 1;
        position: sticky;
        top: 310px;
        height: 70vh;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        padding:0 0 0 30px;
    }

    .visual-content {
        position: absolute;
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: center;
        opacity: 0;
    }

    .visual-content.active {
        opacity: 1;
        transform: translateY(0);
    }

    .right-panel-content {
        max-width: 500px;
        width: 100%;
    }

    .video-placeholder {
        width: 100%;
        height: 300px;
        background: #000;
        border-radius: 15px;
        margin-bottom: 3rem;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #666;
        font-size: 1.1rem;
    }

    .features-list {
        list-style: none;
        padding: 0;
    }

    .feature-item {
        display: flex;
        align-items: flex-start;
        margin-bottom: 2rem;
        position: relative;
    }

    .feature-item::before {
    content: "";
    position: absolute;
    left: 4px;
    top: 9px;
    bottom: -2rem;
    width: 2px;
    background: #c9c9c9;
    }

    .feature-item:last-child::before {
        display: none;
    }

    .feature-dot {
        width: 11px;
        height: 11px;
        border-radius: 50%;
        background: #fff;
        border: 2px solid #e9ecef;
        margin-right: 1.5rem;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        z-index: 1;
        transition: all 0.3s ease;
    }

    .feature-item.active .feature-dot {
        background: #ff006e;
        border-color: #ff006e;
    }

    .feature-title {
        color: #333;
        font-size: 1.1rem;
        font-weight: 500;
        line-height: 1.4;
    }

    .feature-item.active .feature-number {
        color: #ff006e;
    }

    .feature-item.active .feature-title {
        color: #ff006e;
        font-weight: 600;
    }

    .description-text {
        color: #8c8c8c;
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 2rem;
        max-width: 400px;
    }
    
    .feature-number {
    font-size: 20px;
    font-weight: 500;
}

    @media (max-width: 860px) {

.grid-card{
    gap:25px
}



}

    @media (max-width: 768px) {
        .scroll-section .container {
            flex-direction: column;
        }

        .right-content {
            position: relative;
            height: 50vh;
        }

        .content-block h2 {
            font-size: 2.5rem;
        }

        .demo-text {
            font-size: 2.5rem;
        }
        
        .crafting-type .container {
    grid-template-columns: repeat(1, 1fr);
}
    }
    
    @media (max-width: 580px) {
        .grid-card {
            grid-template-columns: repeat(1, 1fr);   
        }
    }
    