.games-sidebar {
    grid-column: 3;
    position: sticky;
    top: 150px;
    width: 100%;
    max-width: 320px;
    background: transparent;
    padding: 0;
    z-index: 10;
}

.sidebar-home,
.sidebar-games a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 18px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    color: #ffffff !important;
    text-decoration: none !important;
    font-size: 14px;
    transition: all 0.3s ease;
    white-space: nowrap;
    margin-bottom: 5px;
}

.sidebar-home {
    display: flex;
    width: fit-content;
    margin: 0 auto 20px auto;
}

.sidebar-games {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.sidebar-home:hover,
.sidebar-games a:hover {
    background: rgba(255, 255, 255, 0.2) !important;
    transform: translateY(-3px);
    border-color: #00aeef !important;
    color: #ffffff !important;
    box-shadow: 0 5px 15px rgba(0, 174, 239, 0.3);
}

/* html[dir="ltr"] .games-sidebar,
html[dir="rtl"] .games-sidebar {
    left: auto;
    right: auto;
    transform: none;
} */

html[dir="rtl"] .games-sidebar,
html[dir="ltr"] .games-sidebar {
    right: auto;
    left: auto;
}
/* .game-page-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 30px;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding-top: 20px;
} */

@media (max-width: 1100px) {
    .game-page-wrapper {
        grid-template-columns: 1fr; /* عمود واحد في الجوال */
    }
    .xo-container,
    .games-sidebar {
        grid-column: 1;
        justify-self: center;
    }
    .games-sidebar {
        position: static;
        margin-top: 40px;
    }
}
@media (max-width: 480px) {
    .sidebar-games a {
        padding: 6px 12px;
        font-size: 12px;
    }
}
