/* / هدر گیمینگ / */
.gaming-hero {
    background: linear-gradient(135deg, #1e1b4b, #4c1d95);
}

/* 
/ معرفی / */
.gamer-grid {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 25px;
    align-items: center;
}

.gamer-photo img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 14px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

/* 
/ معرفی بازی / */
.game-box {
    background: #1e1b4b;
    color: #e0e7ff;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.game-features {
    padding-right: 20px;
    margin-top: 10px;
}

.game-features li {
    margin-bottom: 6px;
}

/* / مهارت‌ها / */
.game-skills .skill-bar span {
    background: #8b5cf6;
}

.footer {
    background: #111827;
    color: #e5e7eb;
    padding: 40px 20px;
}

.footer-inner {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.contact-item {
    background: #1f2933;
    padding: 18px;
    border-radius: 12px;
}

.footer-copy {
    margin-top: 15px;
    font-size: 13px;
    opacity: 0.7;
}