* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial Unicode MS', 'Segoe UI', sans-serif;
        }
        body {
            background-color: #f8f9fa;
            color: #2d3436;
            line-height: 1.8;
            padding-bottom: 50px;
        }
        header {
            background: linear-gradient(135deg, #e67e22, #d35400);
            padding: 15px 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.2);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 1.6rem;
            font-weight: bold;
            color: white;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            text-decoration: none;
            font-family: 'Georgia', serif;
        }
        .nav-links {
            display: flex;
            gap: 25px;
        }
        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            padding: 5px 10px;
            border-radius: 4px;
        }
        .nav-links a:hover {
            background-color: rgba(255,255,255,0.2);
            transform: scale(1.05);
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
        }
        main {
            max-width: 1200px;
            margin: 0 auto;
            padding: 30px 20px;
        }
        .intro-section {
            margin-bottom: 50px;
            text-align: center;
        }
        .intro-section h1 {
            font-size: 2.8rem;
            color: #d35400;
            margin-bottom: 20px;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
            font-family: 'Times New Roman', serif;
        }
        .intro-section p {
            font-size: 1.1rem;
            max-width: 800px;
            margin: 0 auto 30px;
        }
        .btn-container {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin: 30px 0;
            flex-wrap: wrap;
        }
        .btn {
            padding: 12px 25px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: bold;
            transition: all 0.3s ease;
            font-size: 1.1rem;
            display: inline-block;
        }
        .download-btn {
            background-color: #d35400;
            color: white;
            box-shadow: 0 4px 12px rgba(211, 84, 0, 0.3);
        }
        .download-btn:hover {
            background-color: #c0392b;
            transform: translateY(-3px);
        }
        .login-btn {
            background-color: #f1c40f;
            color: #333;
            box-shadow: 0 4px 12px rgba(241, 196, 15, 0.3);
        }
        .login-btn:hover {
            background-color: #f39c12;
            transform: translateY(-3px);
        }
        .section {
            margin-bottom: 60px;
        }
        .section h2 {
            font-size: 2rem;
            color: #d35400;
            margin-bottom: 25px;
            padding-bottom: 10px;
            border-bottom: 3px solid #f1c40f;
            display: inline-block;
            font-family: 'Georgia', serif;
        }
        .section h3 {
            font-size: 1.5rem;
            color: #e67e22;
            margin: 30px 0 15px;
        }
        .highlight {
            font-weight: bold;
            color: #d35400;
            display: inline-block;
            padding: 0 3px;
        }
        .image-container {
            margin: 30px 0;
            text-align: center;
            position: relative;
        }
        .game-image {
            max-width: 100%;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            border: 5px solid white;
        }
        .watermark {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 3rem;
            font-weight: bold;
            color: rgba(255, 255, 255, 0.2);
            text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
            pointer-events: none;
            rotate: -15deg;
            font-family: 'Arial Black', sans-serif;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }
        .stat-card {
            background-color: white;
            padding: 25px;
            border-radius: 10px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
            text-align: center;
            border-top: 5px solid #e67e22;
        }
        .stat-card h4 {
            font-size: 1.2rem;
            color: #e67e22;
            margin-bottom: 10px;
        }
        .stat-card p {
            font-size: 2rem;
            font-weight: bold;
            color: #d35400;
        }
        .review-container {
            background-color: white;
            padding: 25px;
            border-radius: 10px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
            margin-bottom: 20px;
            border-left: 5px solid #f1c40f;
        }
        .review-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
        }
        .reviewer {
            font-weight: bold;
            color: #333;
        }
        .rating {
            color: #f1c40f;
            font-weight: bold;
        }
        .steps-list {
            margin: 20px 0;
            padding-left: 20px;
        }
        .steps-list li {
            margin-bottom: 15px;
        }
        .tips-box {
            background-color: #fef5e7;
            border-left: 5px solid #d35400;
            padding: 20px;
            margin: 25px 0;
            border-radius: 5px;
        }
        .tag-container {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin: 30px 0;
        }
        .tag {
            background-color: #f8e1b7;
            padding: 8px 15px;
            border-radius: 20px;
            text-decoration: none;
            color: #d35400;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }
        .tag:hover {
            background-color: #f3d19E;
            color: #c0392b;
        }
        .game-types {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin: 30px 0;
        }
        .game-type-link {
            text-decoration: none;
            color: #d35400;
            font-weight: 500;
            padding: 5px 10px;
            border: 2px solid #d35400;
            border-radius: 20px;
            transition: all 0.3s ease;
        }
        .game-type-link:hover {
            background-color: #d35400;
            color: white;
        }
        footer {
            background-color: #2d3436;
            color: white;
            padding: 40px 20px;
            margin-top: 50px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        .footer-section {
            margin-bottom: 30px;
        }
        .footer-section h4 {
            font-size: 1.3rem;
            margin-bottom: 20px;
            color: #f1c40f;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
            margin-top: 30px;
            font-size: 0.9rem;
            color: #e9ecef;
        }
        .toc {
            background-color: white;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
            margin-bottom: 40px;
        }
        .toc h2 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: #d35400;
        }
        .toc ul {
            list-style-type: none;
        }
        .toc li {
            margin-bottom: 8px;
        }
        .toc a {
            color: #2d3436;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .toc a:hover {
            color: #d35400;
            text-decoration: underline;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 70px;
                left: 0;
                right: 0;
                background-color: #d35400;
                padding: 20px;
                gap: 15px;
            }
            .nav-links.active {
                display: flex;
            }
            .mobile-menu-btn {
                display: block;
            }
            .intro-section h1 {
                font-size: 2.2rem;
            }
            .section h2 {
                font-size: 1.7rem;
            }
            .stats-grid {
                grid-template-columns: 1fr;
            }
            .btn {
                width: 80%;
                text-align: center;
            }
            .watermark {
                font-size: 2rem;
            }
        }
