/* Container and header */
body {
    font-family: Arial, sans-serif;
    background-color: #f0f2f5;
    margin: 0;
    padding: 0;
}

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

.main-header {
    text-align: center;
    margin-bottom: 40px;
}

.main-header h1 {
    font-size: 2.5rem;
    color: #333;
}

.group-info {
    font-size: 1rem;
    color: #555;
}


.games-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 20px;
    color: #333;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}


.game-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s, box-shadow 0.2s;
}

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


.game-screenshot {
    width: 100%;
    height: 150px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #eaeaea;
}

.game-screenshot img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}


.game-info {
    padding: 15px;
    text-align: center;
}

.game-info h3 {
    margin: 10px 0;
    font-size: 1.25rem;
    color: #333;
}

.play-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 16px;
    font-size: 1rem;
    color: #fff;
    background-color: #4caf50;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.2s;
}

.play-btn:hover {
    background-color: #45a049;
}


