body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: #333;
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
            background-color: #f9f3e9;
        }
        header {
            background-color: #8b0000;
            color: white;
            padding: 15px 0;
            text-align: center;
            position: relative;
        }
        .logo {
            font-size: 2.5em;
            font-weight: bold;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        nav {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 10px;
        }
        nav a {
            color: white;
            text-decoration: none;
            font-weight: bold;
        }
        .mobile-menu-btn {
            display: none;
            position: absolute;
            right: 20px;
            top: 15px;
            background: none;
            border: none;
            color: white;
            font-size: 1.5em;
            cursor: pointer;
        }
        h1 {
            color: #8b0000;
            margin-top: 30px;
            font-size: 2.2em;
        }
        h2 {
            color: #5c2c06;
            margin-top: 25px;
            font-size: 1.8em;
        }
        h3 {
            color: #7a4e1e;
            margin-top: 20px;
            font-size: 1.5em;
        }
        .download-btn, .login-btn {
            display: inline-block;
            background-color: #8b0000;
            color: white;
            padding: 12px 25px;
            margin: 15px 0;
            border-radius: 5px;
            text-decoration: none;
            font-weight: bold;
            transition: background-color 0.3s;
        }
        .download-btn:hover, .login-btn:hover {
            background-color: #5c0000;
        }
        .game-image {
            width: 100%;
            max-width: 600px;
            margin: 20px auto;
            display: block;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        .strategy-section {
            background-color: #fff9e6;
            padding: 20px;
            border-radius: 10px;
            margin: 20px 0;
        }
        footer {
            margin-top: 40px;
            padding: 20px 0;
            border-top: 2px solid #8b0000;
            text-align: center;
            font-size: 0.9em;
            color: #666;
        }
        .game-types, .tags {
            margin: 20px 0;
            text-align: center;
        }
        .game-types a, .tags a {
            display: inline-block;
            background-color: #e6ccb2;
            padding: 8px 15px;
            margin: 5px;
            border-radius: 20px;
            text-decoration: none;
            color: #5c2c06;
            font-weight: bold;
        }
        @media (max-width: 768px) {
            nav {
                flex-direction: column;
                align-items: center;
                display: none;
            }
            .mobile-menu-btn {
                display: block;
            }
            .nav-active {
                display: flex;
            }
            body {
                padding: 10px;
            }
            h1 {
                font-size: 1.8em;
            }
            h2 {
                font-size: 1.5em;
            }
            h3 {
                font-size: 1.3em;
            }
        }
