/* -------- GLOBAL -------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: #f4f4f4;
    color: #333;
}

a {
    text-decoration: none;
}

/* -------- HEADER -------- */
.site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 30px;
    background: #1a1a1a;
    color: #fff;
}

.site-header .logo {
    font-size: 24px;
    font-weight: bold;
}

.main-nav a {
    margin: 0 12px;
    color: #fff;
    font-weight: 500;
}

.search-bar input {
    padding: 6px 10px;
    border-radius: 4px;
    border: none;
}

/* -------- FEATURED -------- */
.featured-game {
    padding: 25px 30px;
    background: #fff;
}

.featured-card {
    display: flex;
    gap: 20px;
    align-items: center;
}

.featured-card img {
    width: 220px;
    border-radius: 8px;
}

.featured-info h3 {
    margin-bottom: 8px;
}

.play-btn {
    display: inline-block;
    margin-top: 12px;
    padding: 8px 14px;
    background: #ff4b2b;
    color: #fff;
    border-radius: 6px;
    font-weight: bold;
}

/* -------- GAMES GRID -------- */
.games-list {
    padding: 25px 30px;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 18px;
}

.game-card {
    background: #fff;
    padding: 12px;
    text-align: center;
    border-radius: 8px;
    box-shadow: rgba(0,0,0,0.05) 0px 4px 8px;
}

.game-card img {
    width: 100%;
    border-radius: 6px;
}

/* -------- FOOTER -------- */
.site-footer {
    text-align: center;
    padding: 18px 0;
    background: #1a1a1a;
    color: #eee;
}
