* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial Unicode MS', 'Tahoma', sans-serif;
        }
        body {
            background-color: #f5f1e8;
            color: #3a2e1f;
            line-height: 1.8;
            font-size: 16px;
            padding-bottom: 40px;
        }
        header {
            background-color: #6d4c41;
            padding: 18px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 3px 12px rgba(0,0,0,0.2);
            transition: all 0.3s ease;
        }
        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            color: #ffd600;
            font-size: 1.9rem;
            font-weight: bold;
            text-decoration: none;
            letter-spacing: 0.5px;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
            font-family: 'Georgia', serif;
        }
        nav ul {
            display: flex;
            list-style: none;
        }
        nav ul li {
            margin-left: 28px;
        }
        nav ul li a {
            color: #ffffff;
            text-decoration: none;
            font-size: 1.05rem;
            transition: all 0.3s ease;
            padding: 6px 12px;
            border-radius: 5px;
        }
        nav ul li a:hover {
            background-color: rgba(255,255,255,0.15);
            color: #ffd600;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.6rem;
            cursor: pointer;
            padding: 5px 10px;
        }
        main {
            max-width: 1200px;
            margin: 35px auto;
            padding: 0 20px;
        }
        h1 {
            color: #6d4c41;
            font-size: 2.6rem;
            margin: 35px 0 30px;
            text-align: center;
            padding-bottom: 18px;
            border-bottom: 4px solid #a1887f;
            font-family: 'Georgia', serif;
        }
        h2 {
            color: #6d4c41;
            font-size: 2rem;
            margin: 45px 0 25px;
            padding-left: 15px;
            border-left: 5px solid #a1887f;
            font-family: 'Georgia', serif;
        }
        h3 {
            color: #6d4c41;
            font-size: 1.5rem;
            margin: 35px 0 18px;
            font-family: 'Georgia', serif;
        }
        p {
            margin-bottom: 22px;
            text-align: justify;
        }
        .highlight {
            font-weight: bold;
            color: #6d4c41;
        }
        .btn-container {
            display: flex;
            flex-wrap: wrap;
            gap: 25px;
            margin: 45px 0;
            justify-content: center;
        }
        .btn {
            padding: 14px 28px;
            font-size: 1.15rem;
            font-weight: bold;
            text-decoration: none;
            border-radius: 7px;
            transition: all 0.3s ease;
            text-align: center;
            min-width: 220px;
            display: inline-block;
            box-shadow: 0 5px 10px rgba(0,0,0,0.15);
        }
        .download-btn {
            background-color: #2e7d32;
            color: white;
        }
        .login-btn {
            background-color: #1565c0;
            color: white;
        }
        .btn:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 16px rgba(0,0,0,0.2);
        }
        .image-container {
            margin: 35px auto;
            text-align: center;
            max-width: 900px;
        }
        .game-image {
            max-width: 100%;
            height: auto;
            border-radius: 9px;
            box-shadow: 0 6px 18px rgba(0,0,0,0.25);
            border: 4px solid white;
            position: relative;
        }
        .image-caption {
            margin-top: 12px;
            font-style: italic;
            color: #5d4037;
            font-size: 1rem;
        }
        .watermark {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 3rem;
            font-weight: bold;
            color: rgba(255, 255, 255, 0.2);
            z-index: 10;
            pointer-events: none;
            rotate: -30deg;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin: 45px 0;
        }
        .stat-card {
            background-color: white;
            padding: 30px;
            border-radius: 12px;
            box-shadow: 0 6px 18px rgba(0,0,0,0.1);
            text-align: center;
            border-top: 6px solid #a1887f;
        }
        .stat-number {
            font-size: 2.8rem;
            font-weight: bold;
            color: #6d4c41;
            margin-bottom: 12px;
        }
        .stat-label {
            font-size: 1.15rem;
            color: #5d4037;
        }
        .review-card {
            background-color: white;
            padding: 30px;
            border-radius: 12px;
            box-shadow: 0 6px 18px rgba(0,0,0,0.1);
            margin: 30px 0;
            border-left: 6px solid #a1887f;
        }
        .review-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 18px;
            padding-bottom: 12px;
            border-bottom: 1px solid #f1e9e0;
        }
        .reviewer {
            font-weight: bold;
            color: #6d4c41;
        }
        .rating {
            color: #ffd600;
            font-size: 1.3rem;
        }
        .tag-container {
            margin: 45px 0;
        }
        .tag {
            display: inline-block;
            background-color: #e9e0d1;
            color: #6d4c41;
            padding: 9px 18px;
            border-radius: 25px;
            margin: 0 12px 12px 0;
            text-decoration: none;
            font-size: 0.95rem;
            transition: all 0.3s ease;
        }
        .tag:hover {
            background-color: #6d4c41;
            color: white;
        }
        .game-type-nav {
            margin: 35px 0;
            padding: 25px;
            background-color: white;
            border-radius: 10px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
        }
        .game-type {
            color: #6d4c41;
            text-decoration: none;
            margin-right: 22px;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.2s ease;
        }
        .game-type:hover {
            color: #a1887f;
            text-decoration: underline;
        }
        .feature-list {
            margin: 25px 0 35px 35px;
        }
        .feature-list li {
            margin-bottom: 18px;
        }
        footer {
            background-color: #3e2723;
            color: white;
            padding: 50px 0 30px;
            margin-top: 70px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .footer-section {
            margin-bottom: 35px;
        }
        .footer-section h3 {
            color: #ffd600;
            margin-bottom: 25px;
            font-size: 1.4rem;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 12px;
        }
        .footer-links a {
            color: #e0e0e0;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .footer-links a:hover {
            color: #ffd600;
        }
        .recommendation {
            margin: 35px 0;
            padding: 25px;
            background-color: rgba(255,255,255,0.1);
            border-radius: 10px;
            font-size: 1.05rem;
        }
        .copyright {
            text-align: center;
            padding-top: 25px;
            margin-top: 35px;
            border-top: 1px solid #5d4037;
            font-size: 0.95rem;
            color: #bdbdbd;
        }
        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }
            nav ul {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 80px;
                left: 0;
                right: 0;
                background-color: #6d4c41;
                padding: 25px;
                box-shadow: 0 12px 12px rgba(0,0,0,0.25);
            }
            nav ul.show {
                display: flex;
            }
            nav ul li {
                margin: 15px 0;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            h3 {
                font-size: 1.4rem;
            }
            .btn {
                width: 100%;
            }
            .stats-grid {
                grid-template-columns: 1fr;
            }
            .feature-list {
                margin-left: 25px;
            }
        }
