* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial Unicode MS', sans-serif;
        }
        body {
            background-color: #f8f5e6;
            color: #333;
            line-height: 1.8;
            padding-bottom: 50px;
        }
        header {
            background-color: #8b4513;
            padding: 15px 20px;
            color: white;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: #ffd700;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            margin-bottom: 10px;
        }
        .nav-container {
            position: relative;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
        }
        .nav-links {
            display: flex;
            gap: 20px;
        }
        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }
        .nav-links a:hover {
            color: #ffd700;
        }
        main {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        h1, h2, h3 {
            color: #8b4513;
            margin: 25px 0 15px;
            padding-bottom: 8px;
            border-bottom: 2px solid #d2b48c;
        }
        h1 {
            font-size: 2.2rem;
            color: #8b4513;
            text-align: center;
            margin: 30px 0;
            border-bottom: none;
        }
        h2 {
            font-size: 1.8rem;
        }
        h3 {
            font-size: 1.5rem;
            border-bottom: 1px solid #d2b48c;
        }
        p {
            margin-bottom: 15px;
            font-size: 1.05rem;
        }
        .btn {
            display: inline-block;
            padding: 12px 24px;
            margin: 10px 5px;
            background-color: #cd853f;
            color: white;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            transition: background-color 0.3s;
            text-align: center;
        }
        .btn:hover {
            background-color: #8b4513;
        }
        .btn-download {
            background-color: #228b22;
        }
        .btn-download:hover {
            background-color: #006400;
        }
        .btn-login {
            background-color: #4682b4;
        }
        .btn-login:hover {
            background-color: #1e3a8a;
        }
        .btn-container {
            text-align: center;
            margin: 30px 0;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            margin: 20px 0;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        .stats-box {
            background-color: #fff8dc;
            border-radius: 8px;
            padding: 20px;
            margin: 20px 0;
            border-left: 5px solid #cd853f;
        }
        .highlight {
            font-weight: bold;
            color: #8b4513;
        }
        .gameplay-section {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin: 20px 0;
        }
        .gameplay-item {
            flex: 1;
            min-width: 300px;
            background-color: white;
            padding: 15px;
            border-radius: 8px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
        .review {
            background-color: white;
            border-radius: 8px;
            padding: 15px;
            margin: 15px 0;
            border: 1px solid #eee;
        }
        .reviewer {
            font-style: italic;
            color: #666;
            margin-top: 10px;
        }
        .tag {
            display: inline-block;
            background-color: #d2b48c;
            color: white;
            padding: 5px 10px;
            border-radius: 20px;
            margin: 5px;
            text-decoration: none;
            font-size: 0.9rem;
        }
        .tag:hover {
            background-color: #8b4513;
        }
        .game-type {
            display: inline-block;
            margin: 5px;
            text-decoration: none;
            color: #8b4513;
            font-weight: 500;
        }
        .game-type:hover {
            text-decoration: underline;
        }
        footer {
            background-color: #333;
            color: white;
            padding: 30px 20px;
            margin-top: 50px;
        }
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
        }
        .footer-section {
            margin-bottom: 20px;
        }
        .footer-section h3 {
            color: #ffd700;
            border-bottom: 1px solid #ffd700;
            padding-bottom: 5px;
            margin-bottom: 15px;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #555;
            margin-top: 20px;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
                margin-bottom: 15px;
            }
            .nav-links {
                display: none;
                flex-direction: column;
                gap: 10px;
            }
            .nav-links.active {
                display: flex;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.3rem;
            }
        }
