        body {
            background-color: #000000;
            color: #cccccc;
            font-family: "Courier New", Courier, monospace;
            margin: 0;
            padding: 0;
            text-align: center;
        }

        nav {
            background-color: #333333;
            padding: 10px;
            border-bottom: 2px solid #666666;
        }

        nav a {
            color: #cccccc;
            text-decoration: none;
            margin: 0 15px;
            font-size: 18px;
        }

        nav a:hover {
            color: #ff0000;
        }
	
        .container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            margin-top: 50px;
            padding: 0 10px;
        }

        .product {
            background-color: #222222;
            border: 2px solid #666666;
            padding: 20px;
            margin: 10px;
            width: 250px;
            max-width: 512px;
            text-align: left;
            box-sizing: border-box;
            flex-grow: 1;
        }

        .product img {
            width: 100%;
            height: auto;
            border-bottom: 2px solid #666666;
            margin-bottom: 10px;
        }

        .product h2 {
            font-size: 22px;
            color: #ff0000;
            margin-bottom: 10px;
        }

        .product p {
            font-size: 16px;
            color: #aaaaaa;
            margin-bottom: 10px;
        }

        .product .price {
            color: #00ff00;
            font-size: 20px;
            font-weight: bold;
        }

        footer {
            background-color: #333333;
            color: #cccccc;
            padding: 20px;
            margin-top: 50px;
            border-top: 2px solid #666666;
        }

        footer p {
            margin: 0;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .product {
                width: 45%;
            }
        }

        @media (max-width: 480px) {
            .product {
                width: 100%;
            }

            nav a {
                display: block;
                margin: 10px 0;
                font-size: 20px;
            }

            h1 {
                font-size: 36px;
            }
        }
#featured-product {
    background-color: #222; /* Dark background */
    padding: 40px;
    text-align: center;
    color: #fff; /* White text for contrast */
    border-top: 2px solid #ff0000; /* Red top border to highlight the section */
    border-bottom: 2px solid #ff0000; /* Red bottom border for symmetry */
}

#featured-product h2 {
    font-size: 2em;
    margin-bottom: 20px;
    font-family: 'Metal Mania', 'Courier New', Courier, monospace;
}

#featured-product img {
    max-width: 250px; /* Set max width for image */
    height: auto;
    border: 3px solid #ff0000; /* Red border around product image */
    border-radius: 8px;
    margin-bottom: 20px;
}

#featured-product p {
    font-size: 1.2em;
    margin-bottom: 20px;
}

#featured-product .btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #ff0000; /* Red background for button */
    color: #fff; /* White text */
    font-size: 1.2em;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

#featured-product .btn:hover {
    background-color: #cc0000; /* Darker red on hover */
}
