.game-play-page {
    background: #000 url("/imgs/body-bg.png") fixed;
    padding: 170px 0 60px;
    min-height: 100vh;
    border-top: 1px solid rgba(0, 174, 239, 0.1);
}

.game-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 35px;
    position: relative;
    z-index: 1;
}

.game-frame-container {
    background: #111;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid #00aeef;
    box-shadow: 0 0 30px rgba(0, 174, 239, 0.3);
}

.game-frame-container iframe {
    width: 100%;
    height: 600px;
    display: block;
}

.game-frame-container:fullscreen {
    width: 100vw;
    height: 100vh;
    border: none;
    border-radius: 0;
}

.game-frame-container:fullscreen iframe {
    height: calc(100vh - 60px);
}

.game-controls-bar {
    background: #1a1a1a;
    padding: 15px;
    display: flex;
    justify-content: flex-end;
}

.control-btn {
    background: linear-gradient(45deg, #00aeef, #ec008c);
    border: none;
    color: #fff;
    padding: 8px 20px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
}

.control-btn:hover {
    opacity: 0.9;
    transform: scale(1.05);
}

.game-info-card {
    background: rgba(20, 20, 20, 0.6);
    backdrop-filter: blur(15px);
    border-radius: 24px;
    padding: 35px;
    margin-top: 30px;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.info-header {
    margin-bottom: 25px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 20px;
}

.info-header h1 {
    font-size: 2rem;
    background: linear-gradient(to right, #fff, #00aeef);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

.game-quick-stats {
    display: flex;
    gap: 20px;
    color: #aaa;
    font-size: 0.9rem;
}

.game-quick-stats i { color: #ec008c; }

.info-grid {
    display: grid;
    /* grid-template-columns: 1.5fr 1fr; */
    gap: 40px;
}

.description-section h3, .controls-section h3 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #00aeef;
    display: flex;
    align-items: center;
    gap: 10px;
}

.description-section p {
    line-height: 1.8;
    color: #ccc;
    font-size: 0.95rem;
}

.controls-icons { display: grid; gap: 12px; }

.control-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 12px 15px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: 0.3s;
}

.control-item i { color: #ec008c; width: 25px; text-align: center; }

.control-item:hover {
    background: rgba(0, 174, 239, 0.1);
    border-color: rgba(0, 174, 239, 0.3);
}

.side-games h3 {
    color: #fff;
    margin-bottom: 20px;
    border-right: 4px solid #ec008c;
    padding-right: 10px;
}

.side-game-card {
    display: flex;
    gap: 15px;
    background: rgba(255, 255, 255, 0.03);
    padding: 5px;
    border-radius: 15px;
    margin-bottom: 15px;
    text-decoration: none;
    transition: 0.3s;
}

.side-game-card img { width: 80px; height: 80px; border-radius: 10px; object-fit: cover; }
.side-game-card h4 { color: #fff; font-size: 0.9rem; margin: 0; }
.side-game-card:hover { background: rgba(0, 174, 239, 0.1); transform: scale(1.02); }

@media (max-width: 992px) {
    .game-layout { grid-template-columns: 1fr; }
    .game-frame-container iframe { height: 450px; }
    .game-play-page { padding-top: 100px; }
    .info-grid { grid-template-columns: 1fr; gap: 25px; }
}

@media (max-width: 480px) {
    .game-frame-container iframe { height: 300px; }
    .info-header h1 { font-size: 1.5rem; }
}
.game-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.85rem;
}

.game-breadcrumb a {
    color: #00aeef;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: 0.3s;
    font-weight: 500;
}

.game-breadcrumb a i {
    font-size: 0.75rem;
}

.game-breadcrumb a:hover {
    color: #ec008c;
    text-shadow: 0 0 10px rgba(236, 0, 140, 0.4);
}

.game-breadcrumb .separator {
    font-size: 0.7rem;
    color: #555;
}

.game-breadcrumb span {
    color: #888;
}

[lang="ar"] .game-breadcrumb .separator {
    transform: rotate(180deg);
}
.side-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.side-header h3 {
    margin-bottom: 0;
    font-size: 1.1rem;
}

.see-all-link {
    color: #00aeef;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.see-all-link:hover {
    opacity: 1;
    color: #ec008c;
    text-shadow: 0 0 8px rgba(236, 0, 140, 0.5);
    transform: translateX(3px);
}

[lang="ar"] .see-all-link:hover {
    transform: translateX(-3px);
}
[lang="ar"] .see-all-link i {
    transform: rotate(180deg);
}
