﻿/* پس‌زمینه کلی صفحه */
.game-page-bg {
    background: linear-gradient(180deg, #0d1117, #121826, #0d1117);
    padding-bottom: 40px;
}

/* هدر صفحه بازی */
.game-header {
    position: relative;
    height: 320px;
    overflow: hidden;
    border-radius: 18px;
    margin-bottom: 25px;
}

.game-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.45) blur(2px);
}

.game-header-text {
    position: absolute;
    bottom: 25px;
    right: 30px;
    color: #fff;
}

.game-header-text h1 {
    font-size: 2.3rem;
    font-weight: 900;
    color: #00eaff;
}

.section-title {
    font-weight: 800;
    margin-bottom: 15px;
    border-right: 4px solid #00eaff;
    padding-right: 10px;
    color: #fff;
}


/* کارت محصول */
.product-card {
    background: #1a2234;
    border: 1px solid #2b364a;
    border-radius: 14px;
    padding: 12px;
    text-align: center;
    color: #fff;
    transition: 0.3s;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
}

.product-card img {
    width: 100%;
    height:150px;
    border-radius: 10px;
}

.product-card h5 {
    margin-top: 10px;
    font-weight: bold;
}

.price {
    color: #00eaff;
    font-weight: bold;
    margin: 10px 0;
}

.buy-btn {
    display: block;
    background: #00eaff;
    color: #000;
    padding: 10px;
    text-align: center;
    border-radius: 10px;
    font-weight: bold;
    transition: 0.2s;
}

.buy-btn:hover {
    background: #00bcd4;
    color: #fff;
}



/* توضیحات */
.game-description p {
    color: #dce3ef;
    line-height: 1.9;
}

.desc-img {
    width: 100%;
    border-radius: 12px;
    margin: 20px 0;
    box-shadow: 0 0 20px rgba(0,0,0,0.35);
}


/* محصولات مرتبط */
.related-box {
    background: #161d27;
    padding: 20px;
    border-radius: 12px;
    position: sticky;
    top: 100px;
    border: 1px solid #283243;
}

.related-title {
    color: #00eaff;
    margin-bottom: 15px;
}

.related-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.related-box li {
    margin-bottom: 12px;
}

.related-box a {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #1f2733;
    padding: 8px 10px;
    border-radius: 8px;
    color: #e2e6ec;
    text-decoration: none;
    transition: 0.25s;
}

.related-box a:hover {
    background: #00eaff33;
    color: #fff;
}

.related-box img {
    width: 42px;
    height: 42px;
    border-radius: 6px;
    object-fit: cover;
}
