/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #ffe6f2; /* Light pink background */
    color: #333;
}

/* Header Styles */
header {
    background: #ff66b3; /* Darker pink for header */
    color: #fff;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo {
    font-size: 24px;
    font-weight: bold;
}

header nav ul {
    list-style: none;
    display: flex;
}

header nav ul li {
    margin: 0 15px;
}

header nav a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

header nav a:hover {
    color: #fff5cc; /* Light yellow on hover */
}

header input[type="text"] {
    padding: 8px;
    border: none;
    border-radius: 4px;
}

/* Banner Styles */
.banner {
    background-color: #ff99cc; /* Light pink for banner */
    height: 200px;
    display: flex;
    flex-direction: column; /* Stack items vertically */
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
}

.banner h1 {
    font-size: 28px;
}

.back-button {
    background: #ff66b3; /* Darker pink for button */
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s;
    margin-top: 10px; /* Add space above the button */
}

.back-button:hover {
    background: #e6007e; /* Even darker pink on hover */
}

/* Featured Games Styles */
.featured-games {
    padding: 20px;
    text-align: center;
}

.featured-games h2 {
    margin-bottom: 20px;
}

.game-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.game-card {
    background: #fff;
    border-radius: 10px;
    text-align: center;
    transition: box-shadow 0.3s;
    text-decoration: none; /* Removes underline from links */
    padding: 10px;
}

.game-card:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.game-card img {
    width: 100%;
    border-radius: 10px 10px 0 0; /* Rounded corners for the top */
}

.game-card h3 {
    margin: 10px 0;
    color: #ff66b3; /* Pink text for game titles */
}

/* Footer Styles */
footer {
    padding: 20px;
    background: #ff66b3; /* Darker pink for footer */
    color: #fff;
    text-align: center;
}

footer ul {
    list-style: none;
    display: flex;
    justify-content: center;
}

footer ul li {
    margin: 0 15px;
}

footer ul a {
    color: #fff;
    text-decoration: none;
}

