:root{
    --btn-color: #000;
}

.newGame-page{
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
}

.gift-box-wrapper{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px 10px;
    width: 100%; 
}

.gift-block{
    position: relative;
    cursor: pointer;
}

.gift-block-icon_empty{
    position: absolute;
    z-index: -1;
    bottom: 0;
    left: 0;
}

.gift-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -15%);
    width: 40%;
    height: auto;
    z-index: -3; 
}

/* Modals */


.modal {
    display: none; 
    position: fixed;
    z-index: 10;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

.modal-success{
    display: none;
}

.modal-error, .modal-success, .modal-welcome {
    background-color: white; 
    padding: 20px;
    border-radius: 10px;
    max-width: 560px;
    width: 90%;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3); 
}



.modal-error, .modal-welcome{
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.error-icon img{
    width: 35%;
}
/* Welcome */

.welcome-icon{
    width: 50%;
}
.welcome-header{
    font-size: 20px;
}

.welcome-text{
    font-size: 16px;
}

.gift-block-icon_inner{
    z-index: -2;
    position: absolute;
    top: 0;
    left: 0;
}

.error-header{
    font-size: 26px;
    background-color: white;
}

.error-text{
    font-size: 16px;
}

.btn-ok{
    width: 60%;
    background-color: var(--btn-color);
    color: #fff;
    padding: 15px ;
    border-radius: 10px;
}

.modal-success{
    align-items: center;
    flex-direction: column;
    gap: 20px;
}

.gift-icon{
    width: 65%;
}

.success-header{
    font-size: 26px;
}

.success-text{
    font-size: 16px;
}



/* Анимация появления модального окна */
.modal-error {
    display: none;
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
}

/* Видимое состояние модального окна */
.modal-visible {
    opacity: 1;
}

/* Подергивание коробки */
.gift-block-icon_empty,
.gift-block-icon_up {
    transition: transform 0.1s ease-in-out; 
    top: -6px
}

.shake {
    animation: shake 0.3s ease;
}

@keyframes shake {
    0% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    50% { transform: translateX(5px); }
    75% { transform: translateX(-5px); }
    100% { transform: translateX(0); }
}




/* ПОдкоректировать если картинка вылазит */
.gift-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -25%);
    height: auto;
    z-index: -3; 
    height: 80px;
}