.game-container {
    display: flex;
    border: 1px solid var(--col-fg);
}

.game-container button {
    all: unset;
}

.game-container button:hover {
    cursor: pointer;
}

.game-container button svg {
    fill: var(--col-white);
    filter: drop-shadow(0 0 5px var(--col-black));
    transition: .2s;
}

.game-container button:hover svg {
    fill: var(--col-accent);
    scale: 1.2;
}

.game-thumbnail {
    position: relative;
    width: 100%;
    height: auto;
}

.game-thumbnail button {
    all: unset;
    position: absolute;
    inset: 0;
    margin: auto;
    width: 10%;
    height: fit-content; /* This is kinda dumb, but it works */
}

.game-thumbnail button svg {
    width: 100%;
    height: auto;
}

.game-thumbnail img {
    border: none;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.game-frame {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: clip;
    border: none;
}

.game-frame iframe {
    width: 100%;
    height: 100%;
    overflow: clip;
    border: none;
}

.game-frame button {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 50px;
    height: 50px;
}

.game-frame button svg {
    width: 100%;
    height: 100%;
}

.note-disabled-games {
    color: var(--col-mg);
    font-weight: 600;
}
