body {
            font-family: Arial, sans-serif;
            line-height: 1.6;
            margin: 0;
            padding: 0;
            color: #333;
            background-color: #f5f5dc; 
        }
        header {
            background-color: #8b4513; 
            color: white;
            padding: 10px 0;
            text-align: center;
            position: relative;
        }
        header h1 {
            margin: 0;
            font-size: 2em;
        }
        .logo {
            font-weight: bold;
            font-size: 1.5em;
            text-shadow: 2px 2px 4px #000;
        }
        nav {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 10px;
        }
        nav a {
            color: white;
            text-decoration: none;
        }
        .mobile-nav-toggle {
            display: none;
            position: absolute;
            top: 10px;
            right: 10px;
            background: none;
            border: none;
            color: white;
            font-size: 1.5em;
        }
        @media (max-width: 768px) {
            .mobile-nav-toggle {
                display: block;
            }
            nav {
                display: none;
                flex-direction: column;
                align-items: center;
                background-color: #8b4513;
                width: 100%;
                position: absolute;
                top: 60px;
                left: 0;
            }
            nav.active {
                display: flex;
            }
            nav a {
                padding: 10px 0;
            }
        }
        main {
            padding: 20px;
            max-width: 1200px;
            margin: 0 auto;
        }
        section {
            margin-bottom: 30px;
        }
        h2 {
            color: #8b4513;
            border-bottom: 2px solid #8b4513;
            padding-bottom: 5px;
        }
        h3 {
            color: #a0522d;
        }
        .download-btn, .login-btn {
            display: inline-block;
            background-color: #8b4513;
            color: white;
            padding: 10px 20px;
            text-decoration: none;
            border-radius: 5px;
            margin: 10px 0;
        }
        .download-btn:hover, .login-btn:hover {
            background-color: #a0522d;
        }
        .image-container {
            text-align: center;
            margin: 20px 0;
        }
        .image-container img {
            max-width: 100%;
            height: auto;
        }
        footer {
            background-color: #8b4513;
            color: white;
            text-align: center;
            padding: 10px 0;
            position: relative;
            bottom: 0;
            width: 100%;
        }
        .game-types, .tags {
            margin: 10px 0;
        }
        .game-types a, .tags a {
            color: white;
            text-decoration: none;
            margin: 0 5px;
        }
