@font-face {
        font-family: 'Avalon Quest';
        src: url('Avalon-Quest.ttf') format('truetype');
    }

    body {
        margin: 0;
        font-family: Lato;
        background: url('img/background.png') no-repeat center center fixed;
        background-size: cover;
        color: #fff;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        min-height: 100vh;
        overflow-x: hidden;
    }

    .container {
        display: flex;
        width: 90%;
        max-width: 1400px;
        min-height: 80vh;
        justify-content: center;
    }

    .menu-container {
        width: 40%;
        padding: 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    /* Dla większych rozdzielczości */
    @media screen and (min-width: 1920px) {
        .menu-container {
            width: 30%;
        }

        .menu button {
            width: 60%;
            max-width: 300px;
        }

        .content-container {
            width: 70%;
        }
    }

    @media screen and (min-width: 2560px) {
        .menu-container {
            width: 25%;
        }

        .menu button {
            width: 50%;
            max-width: 350px;
        }

        .content-container {
            width: 75%;
        }
    }

    .logo {
        margin-bottom: 5px;
        max-width: 100%;
        display: flex;
        justify-content: center;
    }

    .logo img {
        max-width: 80%;
        display: block;
        margin: 0 auto;
    }

    .menu {
        display: flex;
        flex-direction: column;
        gap: 20px; /* Dodane */
        width: 100%;
        align-items: center;
        justify-content: center;
    }

    .menu button {
        background: linear-gradient(0deg, #ffcc66, #d85a25);
        color: white;
        padding: 12px;
        border-radius: 15px;
        font-size: 18px;
        font-family: 'Avalon Quest', Arial, sans-serif;
        font-weight: bold;
        cursor: pointer;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
        box-shadow: inset 0 -3px 5px rgba(0, 0, 0, 0.5), 0 3px 6px rgba(0, 0, 0, 0.3);
        transition: transform 0.2s, box-shadow 0.2s;
        width: 50%;
        max-width: 300px;
        text-align: center;
    }

    .menu button:hover {
        transform: scale(1.05);
        box-shadow: inset 0 -3px 8px rgba(0, 0, 0, 0.8), 0 6px 12px rgba(0, 0, 0, 0.5);
    }

    .content-container {
        width: 60%;
        padding: 20px;
        color: #333;
        overflow-y: auto;
        max-height: 70vh;
        display: flex;
        flex-direction: column;
        align-items: center;
		scrollbar-width: none;
    }

    .content-header {
        font-size: 34px;
        margin-bottom: 20px;
        color: white;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        font-family: 'Avalon Quest', Arial, sans-serif;
        text-align: center;
    }

    .content-body {
        font-size: 18px;
        line-height: 1.6;
        text-align: justify;
        padding: 20px;
        background: linear-gradient(145deg, #f7e2c1, #e7d3a3);
        border: 1px solid #c3b091;
        border-radius: 15px;
        box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.3), 0 4px 8px rgba(0, 0, 0, 0.5);
        width: 90%;
        max-width: 800px;
    }

    .music-toggle {
        position: fixed;
        top: 20px;
        right: 20px;
        font-size: 24px;
        color: white;
        cursor: pointer;
        z-index: 1000;
    }

    .download-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
        padding: 20px;
    }

    .download-item {
        background: rgba(255, 255, 255, 0.9);
        padding: 15px;
        border-radius: 10px;
        text-align: center;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    }

    .faq-item {
        margin-bottom: 20px;
        background: rgba(255, 255, 255, 0.9);
        padding: 15px;
        border-radius: 10px;
        cursor: pointer;
    }

    .faq-question {
        font-weight: bold;
        margin-bottom: 10px;
    }

    .faq-answer {
        display: none;
        padding: 10px;
        background: #f5f5f5;
        border-radius: 5px;
    }
	
	    @media screen and (max-width: 1366px) {
        .container {
            width: 95%;
        }

        .menu {
            gap: 10px; /* Dodane */
        }

        .menu button {
            width: 40%;
            font-size: 16px;
            padding: 10px;
        }
    }

    @media screen and (max-width: 1280px) {
        .container {
            width: 95%;
        }

        .menu {
            gap: 10px; /* Dodane */
        }

        .menu button {
            width: 40%;
            font-size: 16px;
            padding: 10px;
        }
    }

    @media screen and (max-width: 900px) {
        .container {
            flex-direction: column;
        }

        .menu-container, .content-container {
            width: 100%;
        }

        .menu {
            gap: 5px; /* Dodane */
        }

        .menu button {
            width: 50%;
            max-width: 250px;
        }

        .content-container {
            max-height: none;
        }
    }

    @media screen and (max-width: 480px) {
        .menu {
            gap: 5px; /* Dodane */
        }

        .menu button {
            width: 80%;
            font-size: 14px;
            padding: 8px;
        }

        .content-header {
            font-size: 24px;
        }

        .content-body {
            font-size: 16px;
            padding: 15px;
        }
    }
	
	
            .SG-download-links {
                display: flex;
                justify-content: space-around;
                align-items: center;
                flex-wrap: wrap;
                gap: 20px;
            }
            .SG-download-links a {
                text-decoration: none;
                color: black;
                text-align: center;
                transition: transform 0.3s ease;
                width: 100px; /* Stała szerokość linku */
                display: flex;
                justify-content: center;
                align-items: center;
                flex-direction: column; /* Układ w kolumnie */
            }
            .SG-download-links a:hover .SG-icon {
                transform: scale(1.05); /* Zmniejsz efekt powiększenia */
            }
            .SG-icon {
                width: auto;
                height: 80px; /* Stała wysokość ikon */
                object-fit: contain; /* Zapewnienie proporcji */
                transition: transform 0.3s ease;
            }
    .footer-right {
        text-align: right;
        padding: 20px;
    }