.game-container {
    width: 100%;
    max-width: 800px;
    aspect-ratio: 4/3;
    margin: 0;
    background: rgb(30, 30, 30);
    border-radius: 10px;
    overflow: hidden;
}
.game-iframe {
    width: 100%;
    height: 100%;
    border: none;
}
.game-description {
    max-width: 800px;
    padding: 20px;
    background: rgb(30, 30, 30);
    border-radius: 10px;
    text-align: center;
}
.game-info {
    background: rgb(30, 30, 30);
    border-radius: 10px;
    padding: 20px;
    height: 100%;
}
.like-btn {
transition: all 0.2s;
width: 100%;
color: white !important;
}
.like-btn i {
color: white !important;
}
.like-btn:hover {
transform: scale(1.03);
}
.like-btn.liked {
background-color: #dc3545 !important;
border-color: #dc3545 !important;
color: white !important;
}
.share-btn {
    transition: all 0.2s;
}
.share-btn:hover {
    transform: scale(1.1);
}
.fullscreen-btn {
    width: 100%;
    margin-bottom: 15px;
}
.device-badge {
    margin-right: 5px;
    margin-bottom: 5px;
}

.game-container embed {
    width: 100%;
    height: 100%;
    border: none;
}