* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        body {
            background-color: #fff8e6;
            color: #333;
            line-height: 1.8;
            padding-bottom: 50px;
        }
        .header {
            background-color: #ff6b35;
            padding: 15px 20px;
            position: sticky;
            top: 0;
            z-index: 100;
        }
        .logo {
            color: white;
            font-size: 24px;
            font-weight: bold;
            text-decoration: none;
            display: inline-block;
            margin-right: 30px;
        }
        .nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
        }
        .nav-links li {
            margin-left: 20px;
        }
        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 500;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        h1 {
            color: #d9534f;
            margin: 30px 0;
            font-size: 32px;
            text-align: center;
        }
        h2 {
            color: #c9302c;
            margin: 25px 0 15px;
            font-size: 26px;
            border-bottom: 2px solid #ffccbc;
            padding-bottom: 8px;
        }
        h3 {
            color: #e67e22;
            margin: 20px 0 10px;
            font-size: 22px;
        }
        p {
            margin-bottom: 15px;
            font-size: 18px;
        }
        .btn {
            display: inline-block;
            padding: 12px 24px;
            background-color: #ff5722;
            color: white;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            margin: 10px 5px;
            transition: background-color 0.3s;
        }
        .btn:hover {
            background-color: #e64a19;
        }
        .btn-download {
            background-color: #4caf50;
        }
        .btn-download:hover {
            background-color: #388e3c;
        }
        .image-container {
            margin: 25px 0;
            text-align: center;
        }
        .game-image {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        .highlight {
            font-weight: bold;
            color: #d35400;
        }
        .stats-box {
            background-color: #fff3e0;
            border-left: 5px solid #ff9800;
            padding: 15px;
            margin: 20px 0;
            border-radius: 0 5px 5px 0;
        }
        .review {
            background-color: #f1f8e9;
            padding: 15px;
            border-radius: 5px;
            margin: 15px 0;
        }
        .reviewer {
            font-style: italic;
            color: #558b2f;
        }
        .footer {
            background-color: #333;
            color: white;
            padding: 30px 20px;
            margin-top: 50px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        .game-types {
            margin: 20px 0;
        }
        .game-types a {
            color: #ffccbc;
            margin-right: 15px;
            text-decoration: none;
        }
        .tags {
            margin: 20px 0;
        }
        .tags a {
            color: #ffecb3;
            margin-right: 10px;
            text-decoration: none;
            display: inline-block;
            margin-bottom: 8px;
        }
        .copyright {
            margin-top: 30px;
            text-align: center;
            font-size: 14px;
            color: #bbb;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 60px;
                left: 0;
                width: 100%;
                background-color: #ff6b35;
                padding: 20px;
            }
            .nav-links.show {
                display: flex;
            }
            .nav-links li {
                margin: 10px 0;
                margin-left: 0;
            }
            .mobile-menu-btn {
                display: block;
            }
            h1 {
                font-size: 28px;
            }
            h2 {
                font-size: 24px;
            }
            h3 {
                font-size: 20px;
            }
            p {
                font-size: 16px;
            }
        }
