* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background: radial-gradient(circle at top, #1b0036, #050010);
    color: white;
}

/* NAV */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(10px);
}

.logo {
    font-size: 1.5em;
    font-weight: bold;
    color: #00fff7;
    text-shadow: 0 0 10px #00fff7;
}

nav input {
    padding: 8px 15px;
    border-radius: 20px;
    border: none;
    outline: none;
}

/* HEADER */
header {
    text-align: center;
    padding: 60px 20px;
}

header h1 {
    font-size: 3em;
    text-shadow: 0 0 20px #8a2be2;
}

/* GAMES GRID */
.games {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    padding: 40px;
}

/* GAME CARD */
.game-card {
    background: rgba(255,255,255,0.05);
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    color: white;
    transition: 0.4s;
    box-shadow: 0 0 0 transparent;
}

.game-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 0 30px #00fff7;
}

.game-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.game-card h2 {
    text-align: center;
    padding: 15px;
}

/* FOOTER */
footer {
    text-align: center;
    padding: 20px;
    opacity: 0.7;
}
