/* Основные стили */
body {
    background-color: #f8f9fa;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
}

/* Карточки игр */
.game-card {
    transition: all 0.3s ease;
    border-radius: 10px;
    overflow: hidden;
    border: none;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.game-card img {
    height: 180px;
    object-fit: cover;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

/* Навигация */
.navbar-brand {
    font-size: 1.5rem;
}

/* Адаптивные корректировки */
@media (max-width: 768px) {
    .navbar-brand {
        font-size: 1.2rem;
    }
}