body {
    background-color: #f4f7f6;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* تأثيرات بطاقات الألعاب */
.hover-up {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    border-radius: 15px;
    overflow: hidden;
}

.hover-up:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15) !important;
}

.card-img-top {
    height: 140px;
    object-fit: cover;
}

/* حاوية اللعبة */
.game-container {
    background: #000;
    position: relative;
    padding-bottom: 56.25%; /* نسبة 16:9 */
    height: 0;
    overflow: hidden;
}

.game-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* النافبار */
.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
    color: #ffc107 !important;
}