/* =============================================
   Learning Isn't Linear - Games Page Styles
   ============================================= */

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    color: #333;
    line-height: 1.6;
}

/* ==================== HEADER (same as rest of site) ==================== */
header {
    background: #222;
    padding: 8px 0;
}

nav {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    padding: 0 20px;
    flex-wrap: wrap;
    gap: 20px;
}

.logo-container {
    transition: transform 0.3s ease, filter 0.3s ease;
}

.logo-container:hover {
    transform: scale(1.08);
    filter: brightness(1.1);
}

.logo-container img {
    height: 38px;
    width: auto;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    white-space: nowrap;
}

nav a:hover {
    color: #0077cc;
}

/* ==================== FOOTER ==================== */
footer {
    background: #222;
    color: #888;
    text-align: center;
    padding: 25px 20px;
    margin-top: 60px;
}

.footer-nav {
    margin-top: 12px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.footer-nav a {
    color: #aaa;
    text-decoration: none;
}

.footer-nav a:hover {
    color: #0077cc;
}