* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Noto Sans', 'Arial Unicode MS', sans-serif;
        }
        body {
            background-color: #f5f2ea;
            color: #2c2c2c;
            line-height: 1.8;
            padding-bottom: 60px;
        }
        header {
            background: linear-gradient(135deg, #6b4423 0%, #8b5a2b 100%);
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 10px rgba(0,0,0,0.2);
        }
        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            color: #ffffff;
            font-size: 1.6rem;
            font-weight: bold;
            text-decoration: none;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            font-family: 'Georgia', serif;
        }
        .nav-links {
            display: flex;
            gap: 25px;
        }
        .nav-links a {
            color: #ffffff;
            text-decoration: none;
            font-size: 1.05rem;
            transition: all 0.3s ease;
            padding: 5px 10px;
            border-radius: 4px;
        }
        .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;
            padding: 5px 10px;
        }
        main {
            max-width: 1200px;
            margin: 0 auto;
            padding: 30px 20px;
        }
        h1 {
            color: #6b4423;
            text-align: center;
            margin-bottom: 40px;
            font-size: 2.4rem;
            font-family: 'Georgia', serif;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
        }
        h2 {
            color: #6b4423;
            margin: 40px 0 20px;
            font-size: 1.9rem;
            border-bottom: 2px solid #d2b48c;
            padding-bottom: 10px;
            font-family: 'Georgia', serif;
        }
        h3 {
            color: #6b4423;
            margin: 30px 0 15px;
            font-size: 1.4rem;
            font-family: 'Georgia', serif;
        }
        p {
            margin-bottom: 22px;
            font-size: 1.05rem;
            text-align: justify;
            line-height: 1.8;
        }
        .highlight {
            font-weight: bold;
            color: #6b4423;
        }
        .btn-container {
            text-align: center;
            margin: 50px 0;
            display: flex;
            justify-content: center;
            gap: 25px;
            flex-wrap: wrap;
        }
        .btn {
            padding: 14px 30px;
            text-decoration: none;
            font-weight: bold;
            border-radius: 6px;
            transition: all 0.3s ease;
            font-size: 1.1rem;
            box-shadow: 0 4px 8px rgba(0,0,0,0.15);
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(0,0,0,0.2);
        }
        .download-btn {
            background-color: #2e8b57;
            color: white;
        }
        .login-btn {
            background-color: #1e90ff;
            color: white;
        }
        .image-container {
            text-align: center;
            margin: 40px 0;
        }
        .game-image {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 6px 18px rgba(0,0,0,0.15);
            border: 10px solid white;
        }
        .stats-container {
            background-color: #fff8e7;
            border-radius: 10px;
            padding: 30px;
            margin: 35px 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            border-left: 5px solid #cd853f;
        }
        .stat-item {
            display: flex;
            justify-content: space-between;
            margin-bottom: 18px;
            padding-bottom: 12px;
            border-bottom: 1px dashed #d2b48c;
            font-size: 1.05rem;
        }
        .stat-item:last-child {
            border-bottom: none;
        }
        .review-container {
            background-color: #ffffff;
            border-radius: 10px;
            padding: 25px;
            margin-bottom: 30px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            border-top: 5px solid #cd853f;
        }
        .reviewer {
            font-weight: bold;
            color: #6b4423;
            margin-bottom: 8px;
            font-size: 1.1rem;
        }
        .rating {
            color: #ffc107;
            margin-bottom: 12px;
            letter-spacing: 2px;
        }
        .tag-container {
            margin: 40px 0;
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }
        .tag {
            background-color: #d2b48c;
            color: #2d2d2d;
            padding: 9px 18px;
            border-radius: 25px;
            text-decoration: none;
            font-size: 0.95rem;
            transition: all 0.3s ease;
        }
        .tag:hover {
            background-color: #6b4423;
            color: white;
            transform: translateY(-2px);
        }
        .game-type-nav {
            margin: 40px 0;
            padding: 20px;
            background-color: #fff8e7;
            border-radius: 8px;
        }
        .game-type-nav h3 {
            margin-top: 0;
        }
        .game-type-nav a {
            color: #1e90ff;
            text-decoration: none;
            margin-right: 20px;
            font-size: 1.05rem;
            transition: all 0.2s ease;
        }
        .game-type-nav a:hover {
            color: #6b4423;
            text-decoration: underline;
        }
        footer {
            background-color: #2d2d2d;
            color: #f0f0f0;
            padding: 50px 20px 30px;
            margin-top: 60px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        .footer-section {
            margin-bottom: 40px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        .footer-box h3 {
            color: #d2b48c;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 1px solid #444;
        }
        .footer-box ul {
            list-style-type: none;
        }
        .footer-box ul li {
            margin-bottom: 12px;
        }
        .footer-box a {
            color: #f0f0f0;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .footer-box a:hover {
            color: #d2b48c;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #444;
            margin-top: 20px;
            font-size: 0.95rem;
            color: #bbbbbb;
        }
        .tips-box {
            background-color: #e8f4f8;
            border-left: 5px solid #1e90ff;
            padding: 20px;
            margin: 30px 0;
            border-radius: 0 8px 8px 0;
        }
        .tips-box h4 {
            color: #1e90ff;
            margin-bottom: 10px;
            font-size: 1.2rem;
        }
        .strategy-box {
            background-color: #fff0f0;
            border-radius: 8px;
            padding: 25px;
            margin: 30px 0;
            border-right: 5px solid #cd5c5c;
        }
        .strategy-box h4 {
            color: #cd5c5c;
            margin-bottom: 15px;
            font-size: 1.2rem;
        }
        .event-highlight {
            background-color: #fffbf0;
            border-radius: 8px;
            padding: 25px;
            margin: 30px 0;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
        }
        .event-highlight h4 {
            color: #e67e22;
            margin-bottom: 15px;
            font-size: 1.3rem;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 70px;
                left: 0;
                right: 0;
                background: linear-gradient(135deg, #6b4423 0%, #8b5a2b 100%);
                padding: 25px;
                gap: 18px;
                box-shadow: 0 10px 10px rgba(0,0,0,0.2);
            }
            .nav-links.active {
                display: flex;
            }
            .mobile-menu-btn {
                display: block;
            }
            h1 {
                font-size: 2rem;
                margin-bottom: 30px;
            }
            h2 {
                font-size: 1.6rem;
                margin: 30px 0 15px;
            }
            h3 {
                font-size: 1.3rem;
            }
            p {
                text-align: left;
                font-size: 1rem;
            }
            .btn {
                width: 100%;
                justify-content: center;
                padding: 12px 20px;
            }
            .stats-container {
                padding: 20px;
            }
            .review-container {
                padding: 20px;
            }
        }
