* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
}

header {
    background: #333;
    color: #fff;
    padding: 20px 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header h1 {
    font-size: 2.5em;
}

header nav ul {
    list-style: none;
}

header nav ul li {
    display: inline;
    margin-left: 20px;
}

header nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

#hero {
    background: #0073e6;
    color: white;
    padding: 100px 0;
    text-align: center;
}

#hero h2 {
    font-size: 3em;
    margin-bottom: 20px;
}

#hero p {
    font-size: 1.2em;
    margin-bottom: 20px;
}

.cta-btn {
    background: #fff;
    color: #0073e6;
    padding: 10px 30px;
    border: none;
    font-size: 1.1em;
    cursor: pointer;
    text-decoration: none;
    border-radius: 5px;
}

#games, #gift-cards {
    padding: 50px 0;
}

.product-section {
    background: #fff;
}

.container {
    width: 80%;
    margin: 0 auto;
}

h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5em;
}

.products {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.product {
    width: 30%;
    background: #f9f9f9;
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #121212;
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Header */
header {
    background: #111;
    color: #fff;
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 10;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

header h1 {
    font-size: 2.5em;
    letter-spacing: 1px;
    font-family: 'Press Start 2P', cursive;
}

header nav ul {
    list-style: none;
}

header nav ul li {
    display: inline;
    margin-left: 20px;
}

header nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 1px;
}

header nav ul li a:hover {
    color: #ff6600;
}

/* Hero Section */
#hero {
    background: #212121 url('https://via.placeholder.com/1920x1080') center/cover no-repeat;
    color: white;
    padding: 150px 0;
    text-align: center;
    position: relative;
}

#hero h2 {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-family: 'Press Start 2P', cursive;
    text-transform: uppercase;
}

#hero p {
    font-size: 1.2em;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.cta-btn {
    background: #ff6600;
    color: #fff;
    padding: 10px 30px;
    border: none;
    font-size: 1.2em;
    cursor: pointer;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.cta-btn:hover {
    background: #ff9933;
}

/* Product Sections */
.product-section {
    padding: 60px 0;
    text-align: center;
}

.container {
    width: 90%;
    margin: 0 auto;
}

h2 {
    font-size: 2.5em;
    margin-bottom: 30px;
    color: #ff6600;
}

.products {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
}

.product {
    background: #2c2c2c;
    width: 30%;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease-in-out;
}

.product img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.product h3 {
    margin-top: 15px;
    font-size: 1.5em;
}

.product p {
    font-size: 1.1em;
    color: #ff6600;
}

.product button {
    padding: 12px 25px;
    background-color: #ff6600;
    border: none;
    color: white;
    font-size: 1em;
    cursor: pointer;
    border-radius: 5px;
    margin-top: 10px;
    transition: background 0.3s ease;
}

.product button:hover {
    background-color: #ff9933;
}

.product:hover {
    transform: translateY(-10px);
}

/* Footer */
footer {
    background: #111;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
}

footer p {
    font-size: 1em;
    letter-spacing: 1px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .products {
        flex-direction: column;
        align-items: center;
    }

    .product {
        width: 80%;
    }

    .cta-btn {
        font-size: 1em;
    }
}
