* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial Unicode MS', 'Helvetica', sans-serif;
        }
        body {
            background-color: #f9f4e3;
            color: #3a2e1f;
            line-height: 1.8;
            padding-bottom: 50px;
        }
        header {
            background-color: #9b5e23;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            color: #ffd700;
            font-size: 2rem;
            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: 30px;
        }
        .nav-links a {
            color: white;
            text-decoration: none;
            font-size: 1.1rem;
            transition: color 0.3s;
            font-weight: 500;
        }
        .nav-links a:hover {
            color: #ffd700;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
        }
        main {
            max-width: 1200px;
            margin: 40px auto;
            padding: 0 20px;
        }
        h1 {
            color: #8b4513;
            font-size: 2.5rem;
            margin-bottom: 30px;
            text-align: center;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
            font-family: 'Georgia', serif;
            line-height: 1.3;
        }
        h2 {
            color: #8b4513;
            font-size: 2rem;
            margin: 50px 0 25px;
            border-bottom: 2px solid #d2b48c;
            padding-bottom: 10px;
            font-family: 'Georgia', serif;
        }
        h3 {
            color: #8b4513;
            font-size: 1.5rem;
            margin: 35px 0 15px;
            font-family: 'Georgia', serif;
        }
        p {
            margin-bottom: 22px;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            font-weight: bold;
            color: #8b4513;
        }
        .btn-container {
            margin: 40px 0;
            display: flex;
            gap: 25px;
            flex-wrap: wrap;
            justify-content: center;
        }
        .btn {
            padding: 15px 30px;
            text-decoration: none;
            border-radius: 8px;
            font-weight: bold;
            transition: transform 0.3s, box-shadow 0.3s;
            text-align: center;
            font-size: 1.1rem;
            min-width: 200px;
        }
        .download-btn {
            background-color: #2e8b57;
            color: white;
            box-shadow: 0 4px 0 #236b42;
        }
        .login-btn {
            background-color: #1e90ff;
            color: white;
            box-shadow: 0 4px 0 #1669b3;
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 15px rgba(0,0,0,0.2);
        }
        .btn:active {
            transform: translateY(1px);
            box-shadow: 0 2px 5px rgba(0,0,0,0.2);
        }
        .image-container {
            margin: 40px 0;
            text-align: center;
        }
        .game-image {
            max-width: 100%;
            border-radius: 10px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
            margin-bottom: 15px;
            border: 5px solid white;
        }
        .image-caption {
            color: #666;
            font-style: italic;
            font-size: 0.95rem;
            max-width: 80%;
            margin: 0 auto;
        }
        .stats-box {
            background-color: white;
            border-radius: 10px;
            padding: 30px;
            margin: 35px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            border-left: 5px solid #d2b48c;
        }
        .stat-item {
            display: flex;
            justify-content: space-between;
            margin: 18px 0;
            padding-bottom: 12px;
            border-bottom: 1px dashed #ddd;
        }
        .stat-item:last-child {
            border-bottom: none;
        }
        .review {
            background-color: white;
            border-left: 5px solid #d2b48c;
            padding: 25px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
            box-shadow: 0 3px 10px rgba(0,0,0,0.08);
        }
        .reviewer {
            font-weight: bold;
            color: #8b4513;
            margin-top: 15px;
            font-style: italic;
        }
        .tag-container {
            margin: 35px 0;
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }
        .tag {
            background-color: #d2b48c;
            color: #333;
            padding: 10px 20px;
            border-radius: 25px;
            text-decoration: none;
            font-size: 0.95rem;
            transition: all 0.3s;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
        .tag:hover {
            background-color: #8b4513;
            color: white;
            transform: translateY(-2px);
        }
        .game-types {
            margin: 45px 0;
        }
        .type-link {
            color: #1e90ff;
            text-decoration: none;
            margin-right: 20px;
            font-size: 1.1rem;
            transition: all 0.3s;
        }
        .type-link:hover {
            text-decoration: underline;
            color: #0a5cad;
        }
        footer {
            background-color: #3a2e1f;
            color: white;
            padding: 50px 20px;
            margin-top: 80px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        .footer-section {
            margin-bottom: 40px;
        }
        .footer-section h3 {
            color: #ffd700;
            margin-bottom: 25px;
            border-bottom: 1px solid #5c4a35;
            padding-bottom: 10px;
            display: inline-block;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #5c4a35;
            margin-top: 40px;
            font-size: 0.95rem;
            color: #d0c8b8;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 75px;
                left: 0;
                right: 0;
                background-color: #9b5e23;
                padding: 25px;
                gap: 20px;
                box-shadow: 0 10px 10px rgba(0,0,0,0.2);
            }
            .nav-links.active {
                display: flex;
            }
            .mobile-menu-btn {
                display: block;
            }
            h1 {
                font-size: 2.2rem;
                line-height: 1.4;
                margin-bottom: 25px;
            }
            h2 {
                font-size: 1.8rem;
                margin: 40px 0 20px;
            }
            h3 {
                font-size: 1.4rem;
                margin: 30px 0 15px;
            }
            p {
                font-size: 1.05rem;
                margin-bottom: 20px;
            }
            .btn-container {
                flex-direction: column;
                gap: 15px;
            }
            .btn {
                width: 100%;
                padding: 15px;
                font-size: 1.05rem;
            }
            .stat-item {
                flex-direction: column;
                margin: 25px 0;
            }
            .stat-item span:last-child {
                margin-top: 8px;
                font-weight: bold;
            }
            .image-caption {
                max-width: 100%;
                font-size: 0.9rem;
            }
        }
