        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial Unicode MS', 'Tahoma', sans-serif;
        }
        body {
            background-color: #f8f5f0;
            color: #333;
            line-height: 1.8;
            padding-bottom: 60px;
            font-size: 16px;
        }
        header {
            background-color: #8b4513;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 8px rgba(0,0,0,0.2);
        }
        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            color: #ffffff;
            font-size: 1.5rem;
            font-weight: bold;
            text-decoration: none;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
            font-family: 'Georgia', serif;
            letter-spacing: 0.5px;
        }
        .nav-links {
            display: flex;
            gap: 20px;
        }
        .nav-links a {
            color: #ffffff;
            text-decoration: none;
            font-size: 1rem;
            padding: 5px 10px;
            border-radius: 4px;
            transition: all 0.3s ease;
        }
        .nav-links a:hover {
            background-color: rgba(255,255,255,0.2);
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
        }
        main {
            max-width: 1200px;
            margin: 0 auto;
            padding: 30px 15px;
        }
        h1 {
            color: #8b4513;
            font-size: 2.2rem;
            margin-bottom: 25px;
            text-align: center;
            padding-bottom: 15px;
            border-bottom: 3px solid #d2b48c;
            font-family: 'Georgia', serif;
        }
        h2 {
            color: #8b4513;
            font-size: 1.7rem;
            margin: 35px 0 15px;
            padding-bottom: 8px;
            border-bottom: 2px solid #d2b48c;
            font-family: 'Georgia', serif;
        }
        h3 {
            color: #8b4513;
            font-size: 1.4rem;
            margin: 25px 0 12px;
            font-family: 'Georgia', serif;
        }
        p {
            margin-bottom: 18px;
            font-size: 1.05rem;
            text-align: justify;
            line-height: 1.8;
        }
        strong {
            color: #8b4513;
        }
        .button-container {
            display: flex;
            gap: 20px;
            margin: 30px 0;
            flex-wrap: wrap;
            justify-content: center;
        }
        .btn {
            padding: 12px 25px;
            text-decoration: none;
            font-weight: bold;
            border-radius: 6px;
            transition: all 0.3s ease;
            text-align: center;
            font-size: 1.05rem;
            display: inline-block;
            min-width: 200px;
            box-shadow: 0 2px 6px rgba(0,0,0,0.2);
        }
        .download-btn {
            background-color: #228b22;
            color: white;
        }
        .login-btn {
            background-color: #1e90ff;
            color: white;
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 12px rgba(0,0,0,0.25);
        }
        .image-container {
            margin: 30px 0;
            text-align: center;
        }
        .game-image {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.15);
            border: 5px solid white;
        }
        .stats-box {
            background-color: white;
            border-radius: 8px;
            padding: 20px;
            margin: 25px 0;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
            border-left: 5px solid #8b4513;
        }
        .stat-item {
            display: flex;
            justify-content: space-between;
            margin: 10px 0;
            padding-bottom: 10px;
            border-bottom: 1px dashed #eee;
        }
        .stat-item:last-child {
            border-bottom: none;
        }
        .review {
            background-color: white;
            border-radius: 8px;
            padding: 20px;
            margin: 20px 0;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
            position: relative;
        }
        .review:before {
            content: '"';
            font-size: 5rem;
            color: rgba(139, 69, 19, 0.1);
            position: absolute;
            top: -10px;
            left: 10px;
            font-family: serif;
        }
        .reviewer {
            font-weight: bold;
            color: #8b4513;
            margin-top: 15px;
            display: block;
        }
        .rating {
            color: #ffd700;
            font-weight: bold;
            margin-bottom: 10px;
            display: block;
        }
        .guide-section, .events-section, .community-section {
            background-color: white;
            border-radius: 8px;
            padding: 25px;
            margin: 30px 0;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
        }
        .tag-container {
            margin: 30px 0;
        }
        .tag {
            display: inline-block;
            background-color: #d2b48c;
            color: #333;
            padding: 7px 15px;
            border-radius: 20px;
            margin: 5px;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 0.95rem;
        }
        .tag:hover {
            background-color: #8b4513;
            color: white;
            transform: translateY(-2px);
        }
        .game-types {
            margin: 30px 0;
        }
        .game-type {
            display: inline-block;
            margin: 0 10px 10px 0;
        }
        .game-type a {
            color: #1e90ff;
            text-decoration: none;
            font-weight: bold;
            font-size: 1rem;
        }
        .game-type a:hover {
            text-decoration: underline;
        }
        ul {
            margin: 15px 0 25px 30px;
        }
        li {
            margin-bottom: 10px;
            font-size: 1.02rem;
        }
        footer {
            background-color: #333;
            color: white;
            padding: 40px 20px;
            margin-top: 50px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        .recommendation {
            margin: 25px 0;
            padding: 15px;
            background-color: rgba(255,255,255,0.1);
            border-radius: 6px;
            font-size: 1.05rem;
        }
        .copyright {
            text-align: center;
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.2);
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 65px;
                left: 0;
                right: 0;
                background-color: #8b4513;
                padding: 20px;
                gap: 15px;
            }
            .nav-links.active {
                display: flex;
            }
            .mobile-menu-btn {
                display: block;
            }
            h1 {
                font-size: 1.9rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.3rem;
            }
            .button-container {
                flex-direction: column;
                align-items: center;
            }
            .btn {
                width: 100%;
                max-width: 300px;
            }
            ul {
                margin-left: 20px;
            }
            p {
                font-size: 1rem;
            }
        }
