

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #0a0c14;
    color: white;
    font-family: Arial, sans-serif;
}

/* NAVBAR */
.navbar {
    background: rgba(0,0,0,0.4);
    padding: 15px 0;
    backdrop-filter: blur(10px);
}

.nav-inner {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}


.logo {
    height: 60px;
    width: auto;
}

/* NAV LINKS - Ui fixes  */

nav {
    display: flex;
    align-items: center;
}

nav a {
    margin-left: 24px;
    color: var(--muted);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: 0.25s ease;
    padding: 6px 10px;
    border-radius: 10px;
}

nav a:hover {
    color: var(--accent);
    background: rgba(90,180,255,0.08);
    text-shadow: var(--accent-glow);
}


.hero {
    text-align: center;
    padding: 60px 20px;
}

.hero-logo {
    width: 150px;
    height: auto;
    display: block;
    margin: 0 auto 20px auto;
    object-fit: contain;
}

/* SECTION WRAPPER */
.section {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.section h2 {
    margin-bottom: 20px;
}

/* GAME GRID */
.game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
}

/* GAME CARD */
.game-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 12px;
    padding: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
}

/* GAME CARD IMAGE — UNIFORM SIZE */
.game-card img {
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 4; /* keeps consistent shape */
    object-fit: cover;
    border-radius: 12px;
    display: block;
}


/* STORE LINKS */
.store-links {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.store-links a {
    background: rgba(77,163,255,0.2);
    padding: 8px 14px;
    border-radius: 8px;
    color: #4da3ff;
    text-decoration: none;
    font-size: 0.9rem;
}

.store-links a:hover {
    background: rgba(77,163,255,0.35);
}

/* FOOTER */
.footer {
    text-align: center;
    padding: 20px;
    color: #aaa;
}

/* MOBILE FIXES */
@media (max-width: 500px) {
    .logo {
        height: 50px;
    }

    .hero-logo {
        width: 120px;
    }

    .game-card img {
        height: 350px;
    }
}
