
    .weaver-container {
    background-color: #fff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); /* Same as article section */
    text-align: center;
    margin-bottom: 30px;
}
    
    .word-display {
        display: flex;
        justify-content: space-around;
        margin: 20px 0;
        text-align: center;
    }
    
    .word-box {
        padding: 10px;
        background: white;
        border-radius: 8px;
        width: 45%;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }
    
    .word {
        font-size: 2rem;
        font-weight: bold;
        color: #2c3e50;
        margin: 10px 0;
    }
    
    .steps-container {
        background: white;
        padding: 10px;
        border-radius: 8px;
        margin: 20px 0;
        min-height: 200px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }
    
    .step {
        padding: 8px;
        margin: 5px 0;
        border-radius: 4px;
    }
    
    .step.correct {
        background-color: #d4edda;
    }
    
    .step.incorrect {
        background-color: #f8d7da;
    }
    
    .button-group {
        display: flex;
        gap: 10px;
        justify-content: center;
        margin: 20px 0;
    }
    
    .btn-game {
        padding: 8px 15px;
        border: none;
        border-radius: 4px;
        cursor: pointer;
        font-weight: bold;
    }
    
    #progress {
        height: 10px;
        background: #e9ecef;
        border-radius: 5px;
        margin-top: 10px;
    }
    
    #progress-bar {
        height: 100%;
        width: 100%;
        background: #28a745;
        border-radius: 5px;
        transition: width 1s linear;
    }
