body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #121212; /* Nieco ciemniejszy, bardziej nowoczesny */
    color: white;
    text-align: center;
    margin: 0;
    padding: 0;
    min-height: 100-vh;
    display: flex;
    flex-direction: column;
}

h1 {
    margin-top: 50px;
    font-size: 2.5rem;
    letter-spacing: 2px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.games-container {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    margin: 40px auto;
    max-width: 1200px; /* Ograniczenie szerokości, żeby gry się nie rozjeżdżały */
    padding: 0 20px;
    flex-grow: 1;
}

.game-card {
    background-color: #1e1e1e;
    border: 1px solid #333;
    border-radius: 15px;
    width: 240px;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    overflow: hidden;
}

.game-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-bottom: 2px solid #00ffcc;
}

.game-card h2 {
    padding: 15px;
    font-size: 1.2rem;
    margin: 0;
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 255, 204, 0.3);
    border-color: #00ffcc;
}

/* Styl dla jeszcze nieobsadzonych slotów */
.coming-soon {
    opacity: 0.7;
    filter: grayscale(0.5);
}

/* Stopka z kontaktem */
.contact-section {
    background-color: #1a1a1a;
    padding: 30px;
    margin-top: 50px;
    border-top: 1px solid #333;
}

.contact-section p {
    margin: 5px 0;
    font-size: 1.1rem;
    color: #bbb;
}

.contact-section a {
    color: #00ffcc;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.2s;
}

.contact-section a:hover {
    color: #00b38f;
    text-decoration: underline;
}