@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');

body {
    font-family: 'Press Start 2P', cursive;
    background: url('https://wallpapercave.com/wp/wp8348413.jpg') no-repeat center center fixed;
    background-size: cover;
    color: white;
    margin: 0;
    padding: 0;
}

.container {
    background: rgba(0, 0, 0, 0.85);
    margin: 20px auto;
    border-radius: 15px;
    padding: 20px;
    max-width: 1200px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.9);
}

h1 {
    font-size: 2rem;
    color: #ff5722;
    text-shadow: 0 4px 15px rgba(255, 87, 34, 1);
}

h2 {
    color: #ff9800;
    font-size: 1.5rem;
    text-shadow: 0 3px 10px rgba(255, 152, 0, 0.8);
}

.description {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin: 0 auto;
}

.item {
    background: linear-gradient(145deg, rgba(0, 0, 0, 0.9), rgba(50, 50, 50, 0.8));
    border: 2px solid #ff5722;
    border-radius: 15px;
    padding: 15px;
    width: 200px;
    text-align: center;
    transition: transform 0.3s, border-color 0.3s;
    box-shadow: 0 6px 12px rgba(255, 87, 34, 0.6);
}

.item:hover {
    transform: scale(1.1);
    border-color: #ff9800;
}

.item img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 10px;
}

.buy-button {
    background: linear-gradient(to right, #ff5722, #e64a19);
    color: white;
    border: none;
    border-radius: 10px;
    padding: 10px 15px;
    font-size: 0.9rem;
    margin-top: 10px;
    cursor: pointer;
    transition: transform 0.3s, background-color 0.3s;
}

.buy-button:hover {
    background: linear-gradient(to right, #ff9800, #ff5722);
    transform: scale(1.1);
}

/* Responsividade */
@media (max-width: 1024px) {
    .container {
        padding: 15px;
        margin: 10px;
    }

    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.3rem;
    }

    .description {
        font-size: 1rem;
    }

    .items {
        flex-direction: row;
        justify-content: space-between;
    }

    .item {
        width: 48%;
    }
}

@media (max-width: 768px) {
    .items {
        flex-direction: column;
        gap: 20px;
    }

    .item {
        width: 90%;
        margin: 0 auto;
    }

    h1 {
        font-size: 1.6rem;
    }

    h2 {
        font-size: 1.2rem;
    }

    .description {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.4rem;
    }

    h2 {
        font-size: 1.1rem;
    }

    .description {
        font-size: 0.85rem;
    }

    .buy-button {
        font-size: 0.8rem;
        padding: 8px 10px;
    }

    .item {
        width: 100%;
        margin: 0 auto;
        padding: 12px;
    }

    .items {
        flex-direction: column;
        gap: 15px;
    }
}
