body {
    margin: 50px;
    padding: 0;
    font-family: 'Arial', sans-serif;
    background: linear-gradient(45deg, #ff6b6b, #f06595, #cc5de8);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    min-height: 100vh;
    animation: gradientBackground 15s ease infinite;
}

@keyframes gradientBackground {
    0% {
        background: linear-gradient(45deg, #ff6b6b, #f06595, #cc5de8);
    }
    50% {
        background: linear-gradient(45deg, #f06595, #cc5de8, #ff6b6b);
    }
    100% {
        background: linear-gradient(45deg, #ff6b6b, #f06595, #cc5de8);
    }
}

.container {
    text-align: center;
    background: rgba(255, 255, 255, 0.9);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 1200px;
}

h1 {
    font-size: 2.5em;
    color: #333;
    margin-bottom: 20px;
}

.products-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 0 20px;
}

.product-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.product-card img {
    max-width: 100%;
    border-radius: 10px;
}

.product-card h2 {
    margin: 10px 0;
    color: #333;
}

.product-card p {
    color: #555;
}

.product-card .price {
    font-size: 1.5em;
    color: #ff6b6b;
    margin-top: 10px;
}

.redirect-button {
    display: inline-block;
    background-color: #ff6b6b;
    color: white;
    text-decoration: none;
    padding: 20px 40px;
    font-size: 1.5em;
    border-radius: 5px;
    margin: 20px 0;
    transition: background-color 0.3s;
}

.redirect-button:hover {
    background-color: #f06595;
}

/* Dostosowanie do urządzeń mobilnych */
@media (max-width: 600px) {
    body {
        margin: 20px;
    }

    h1 {
        font-size: 2em;
    }

    .product-card {
        padding: 15px;
    }

    .product-card .price {
        font-size: 1.2em;
    }

    .redirect-button {
        padding: 15px 30px;
        font-size: 1.2em;
    }
}

/* Dostosowanie kontenera wideo */
.video-container {
    margin-top: 35px;
    margin-bottom: 50px;
    text-align: center;
}
.video-player {
    width: 100%; /* Pełna szerokość wideo */
    max-width: 100%; /* Maksymalna szerokość wideo ograniczona do szerokości kontenera */
    height: auto; /* Auto wysokość, aby zachować proporcje wideo */
    border-radius: 10px; /* Zaokrąglone rogi */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Lekki cień */
}