.game-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px;
    justify-content: center;
}
.search-container {
    text-align: center;
    padding: 20px;
}
.search-container input{
    border-radius: 10px;
    padding:15px;
    border:none;
    width:400px;
    transition: 0.3s ease;
    outline:none;
    background-color:transparent;
    color:white;
    box-shadow: 0px 0px 10px #DBCf7A;
}
.search-container input:hover {
    transform:scale(1.03);
}
.search-container input:focus {
    transform:scale(1.07);
}
.search-container input::placeholder {
    padding:10px;
}
.game {
    width: 150px;
    text-align: center;
    background-color: #111;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: transform 0.3s;
}
.game:hover {
    transform: scale(1.05);
}
.game img {
    width: 100%;
    border-radius: 8px;
}
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}
.modal-content {
    background-color: #22222289;
    border-radius: 8px;
    padding: 20px;
    width: 100%;
    max-width: 1000px;
    position: relative;
}
.modal iframe {
    width: 100%;
    height: 700px;
    border: none;
}
.modal-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #DBCf7A;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    cursor: pointer;
    font-size: 18px;
    line-height: 30px;
    text-align: center;
}
.modal-fullscreen {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #DBCf7A;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    cursor: pointer;
    font-size: 18px;
    line-height: 30px;
    text-align: center;
}