/* Global Styles */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    background: #0d1117;
    color: #fff;
    overflow-x: hidden;
}
header {
    background: linear-gradient(90deg, #151b2b, #0b0f19);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 25px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.5);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.logo {
    font-size: 1.4rem;
    color: #00ffd0;
    font-weight: 600;
}
nav a {
    color: #ccc;
    text-decoration: none;
    margin-left: 15px;
    transition: color 0.3s ease;
}
nav a:hover {
    color: #00ffd0;
}
.container {
    max-width: 1200px;
    margin: 20px auto;
    padding: 10px 20px;
}
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}
.game-card {
    background: #151b2b;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0,255,208,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.game-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 20px rgba(0,255,208,0.3);
}
.game-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}
.game-card h3 {
    margin: 10px;
    color: #00ffd0;
    font-size: 1.1rem;
}
.game-card p {
    margin: 0 10px 15px;
    color: #aaa;
    font-size: 0.9rem;
}
footer {
    background: #121826;
    text-align: center;
    padding: 20px;
    color: #888;
    margin-top: 30px;
}
.search-box {
    max-width: 500px;
    margin: 30px auto;
    display: flex;
    gap: 10px;
}
.search-box input {
    flex: 1;
    padding: 10px 15px;
    border-radius: 8px;
    border: none;
    outline: none;
    font-size: 1rem;
}
.search-box button {
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    background: #00ffd0;
    color: #000;
    font-weight: 600;
    cursor: pointer;
}
.search-box button:hover {
    background: #00caa7;
}
.play-btn {
    display: inline-block;
    padding: 10px 20px;
    background: #00ffd0;
    color: #000;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
    transition: 0.3s;
}
.play-btn:hover {
    background: #00caa7;
}
