#wordle-game-container #mobileInput{
    position:fixed;
   top:0;
   left:0;
   width:100%;
   height:100%;
   opacity:0;
   z-index:100;
   border:none;
   outline:none;
   display: none;
}
#wordle-game-container {
    margin: 0 auto;
    position: relative;
    /*padding: 20px;*/
    /*max-width: 465px;*/

    display: flex;

}
#wordle-game-container .spinword_single_game{
    width: 70%;
}
#wordle-game-container .game-right-ads{
    width: 30%;
    min-height: 350px;
}
#wordle-game-container #wordle-header {
    text-align: center;
    /*margin-bottom: 20px;*/
}

#wordle-game-container #user-stats {
    font-size: 14px;
    color: #666;
    margin-top: 10px;
}

#wordle-game-container #wordle-board {
    display: grid;
    gap: 5px;
    margin-bottom: 30px;

        max-width: 62%;
    margin: auto;
    padding-bottom: 40px;
}

#wordle-game-container .wordle-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 5px;
}

#wordle-game-container .wordle-cell {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: bold;
    text-transform: uppercase;

    background: white;
    border: 1px solid #707070;
    border-radius: 50%; 
    background: url(/wp-content/themes/vinyl-mapper/images/round-game-icon.svg);
    background-size: 60px;
    background-repeat: no-repeat;
    background-position: center;
}

#wordle-game-container .wordle-cell.filled {
    border-color: #878a8c;
}

#wordle-game-container .wordle-cell.correct {
    /*background-color: #6aaa64;
    border-color: #6aaa64;*/
    color: white;

    border-color: #00B20C;
    background-color: #00B20C;
    background-blend-mode: color-burn;
}

#wordle-game-container .wordle-cell.present {
    color: white;
    /*background-color: #c9b458;
    border-color: #c9b458;*/

    border-color: #FD7200;
    background-color: #FD7200;
    background-blend-mode: color-burn;
}

#wordle-game-container .wordle-cell.absent {
    color: white;
    /*background-color: #787c7e;
    border-color: #787c7e;*/

    border-color: #717171;
    background-color: #717171;
    background-blend-mode: color-burn;
}

#wordle-game-container #wordle-keyboard {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
}

#wordle-game-container .keyboard-row {
    display: flex;
    gap: 6px;
}

#wordle-game-container #wordle-keyboard .key {
    padding: 0;
    border: none;
    cursor: pointer;
    user-select: none;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 43px;
    height: 58px;
    text-decoration: none;


    border-radius: 7.297px;
    background: #D3D6DA;
    color: #000;
    font-family: Oswald;
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

#wordle-game-container #wordle-keyboard .key-large {
    min-width: 80px;
}

/*#wordle-game-container #wordle-keyboard .key:hover {
    background: #bbb;
}
*/
#wordle-game-container #wordle-keyboard .key.correct {
 
    color: white;

     background-color: #00B20C;
}

#wordle-game-container #wordle-keyboard .key.absent {
    background-color: #787c7e;
    color: white;

    background-color: #717171;
}

#wordle-game-container #wordle-message,#wordle-message1 {
    text-align: center;
    margin: 20px 0;
    font-weight: bold;
    min-height: 20px;
}

#wordle-game-container #new-game-btn {
    display: block;
    margin: 20px auto;
    padding: 10px 20px;
    background: #6aaa64;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
}

#wordle-game-container #new-game-btn:hover {
    background: #5a9a54;
}

#wordle-game-container .shake {
    animation: shake 0.5s;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

#wordle-game-container .flip {
    animation: flip 0.6s ease-in-out forwards;
}

@keyframes flip {
    0% { transform: rotateX(0); }
    50% { transform: rotateX(90deg); }
    100% { transform: rotateX(0); }
}
@media only screen and (min-width:320px) and (max-width:568px) {
    #wordle-game-container #mobileInput{
       display:block;
    }
    #wordle-game-container .wordle-cell{
        width: 55px;
        height: 55px;
    }
}