/* Ogólne style */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #111;
    color: #fff;
}

/* Nagłówek */
.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #222;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo img {
    height: 50px;
}

.navbar ul {
    list-style: none;
    display: flex;
    gap: 15px;
}

.btn-nav {
    text-decoration: none;
    padding: 10px 20px;
    color: #fff;
    background: linear-gradient(45deg, #f9e71a, #ffae00);
    border-radius: 20px;
    font-weight: bold;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-nav:hover {
    transform: scale(1.1);
    box-shadow: 0px 4px 15px rgba(255, 174, 0, 0.5);
}

/* Sekcja Hero */
.hero {
    position: relative;
    height: 90vh;
    background: url('giphy.gif') no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-overlay {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 15px;
}

.hero h1 {
    font-size: 3em;
    margin: 0;
    color: #ffae00;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}

.hero p {
    font-size: 1.5em;
    margin: 10px 0 0;
}

/* Sekcja Gier */
.games-section, .about-section {
    padding: 50px 20px;
    text-align: center;
}

.games-section h2, .about-section h2 {
    font-size: 2.5em;
    color: #ffae00;
}

.game-list {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.game-card {
    background-color: #333;
    border: 1px solid #444;
    border-radius: 10px;
    padding: 15px;
    width: 300px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
}

.game-card img {
    width: 100%;
    border-radius: 10px;
}

/* Stopka */
.main-footer {
    text-align: center;
    padding: 20px;
    background-color: #222;
    color: #fff;
    font-size: 0.9em;
    margin-top: 20px;
}

/* Responsywność */
@media (max-width: 768px) {
    .main-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .navbar ul {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }

    .btn-nav {
        text-align: center;
        width: 100%;
        padding: 15px;
        border-radius: 5px;
    }

    .hero h1 {
        font-size: 2.5em;
    }

    .hero p {
        font-size: 1.2em;
    }

    .games-section, .about-section {
        padding: 20px;
    }

    .game-list {
        flex-direction: column;
        gap: 20px;
    }

    .game-card {
        width: 90%;
        margin: 0 auto;
    }

    .main-footer {
        font-size: 0.8em;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2em;
    }

    .hero p {
        font-size: 1em;
    }

    .btn-nav {
        font-size: 0.9em;
        padding: 10px;
    }
}
