@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700&family=Roboto&display=swap');

body {
    font-family: 'Roboto', sans-serif;
    background-color: #f8f9fa;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.title-section {
    text-align: center;
    margin-bottom: 40px;
}

h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    margin: 0;
}

.game-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.game-card {
    flex: 0 0 100%;
    max-width: 400px;
}

@media (min-width: 768px) {
    .game-card {
        flex: 0 0 calc(50% - 10px);
        max-width: none;
    }
}

@media (min-width: 992px) {
    .game-card {
        flex: 0 0 calc(33.333% - 13.333px);
    }
}

.game-card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}

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

.game-card img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

.game-card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.game-card-body h5 {
    font-family: 'Montserrat', sans-serif;
    margin: 0 0 10px 0;
    font-size: 1.25rem;
}

.game-card-body p {
    margin: 0 0 20px 0;
    flex-grow: 1;
}

footer {
    text-align: center;
    padding: 20px 0;
    margin-top: auto;
}

.paypal img {
    border-radius: 5px;
}