* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial Unicode MS', 'Helvetica', sans-serif;
        }
        body {
            background-color: #fff9f0;
            color: #333;
            line-height: 1.8;
            padding-bottom: 50px;
        }
        header {
            background-color: #b35900;
            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 {
            font-size: 1.6rem;
            font-weight: bold;
            color: #ffd700;
            text-decoration: none;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            white-space: nowrap;
        }
        .nav-links {
            display: flex;
            gap: 25px;
        }
        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            padding: 5px 0;
            border-bottom: 2px solid transparent;
        }
        .nav-links a:hover {
            color: #ffd700;
            border-bottom: 2px solid #ffd700;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 5px;
        }
        main {
            max-width: 1200px;
            margin: 0 auto;
            padding: 30px 20px;
        }
        h1 {
            color: #b35900;
            font-size: 2.4rem;
            margin-bottom: 25px;
            text-align: center;
            padding: 15px 20px;
            background-color: #fff0e0;
            border-radius: 8px;
            border: 1px solid #ffd6b3;
        }
        h2 {
            color: #cc6600;
            font-size: 1.8rem;
            margin: 35px 0 15px;
            border-left: 5px solid #cc6600;
            padding-left: 15px;
            padding-bottom: 5px;
            border-bottom: 1px solid #ffe0cc;
        }
        h3 {
            color: #e67300;
            font-size: 1.4rem;
            margin: 25px 0 12px;
            padding-left: 10px;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.05rem;
            text-align: justify;
        }
        .highlight {
            font-weight: bold;
            color: #b35900;
            text-decoration: none;
        }
        .btn-container {
            display: flex;
            gap: 20px;
            margin: 35px 0;
            flex-wrap: wrap;
            justify-content: center;
        }
        .btn {
            padding: 14px 28px;
            text-decoration: none;
            border-radius: 6px;
            font-weight: bold;
            transition: all 0.3s ease;
            text-align: center;
            min-width: 180px;
            font-size: 1.1rem;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }
        .download-btn {
            background-color: #2ecc71;
            color: white;
        }
        .login-btn {
            background-color: #3498db;
            color: white;
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(0,0,0,0.15);
        }
        .btn:active {
            transform: translateY(1px);
        }
        .image-container {
            margin: 35px 0;
            text-align: center;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 6px 15px rgba(0,0,0,0.15);
            border: 1px solid #ffe0cc;
        }
        .stats-box {
            background-color: #fff;
            border-radius: 8px;
            padding: 25px;
            margin: 30px 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
            border-left: 5px solid #e67300;
        }
        .stats-box p {
            margin: 12px 0;
            padding-left: 5px;
        }
        .review {
            background-color: #fff8e6;
            border-radius: 8px;
            padding: 20px;
            margin: 20px 0;
            border-bottom: 3px solid #ffcc66;
            position: relative;
        }
        .review:before {
            content: '"';
            font-size: 4rem;
            color: #ffebcc;
            position: absolute;
            top: 10px;
            left: 10px;
            font-family: Georgia, serif;
        }
        .review p:first-of-type {
            padding-left: 40px;
            margin-top: 10px;
        }
        .reviewer {
            font-style: italic;
            color: #666;
            margin-top: 10px;
            display: block;
            text-align: right;
        }
        .tag-container {
            margin: 40px 0;
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }
        .tag {
            background-color: #ff9933;
            color: white;
            padding: 8px 16px;
            border-radius: 20px;
            text-decoration: none;
            font-size: 0.95rem;
            transition: all 0.3s ease;
        }
        .tag:hover {
            background-color: #e67300;
            transform: translateY(-2px);
        }
        .game-types {
            margin: 35px 0;
            padding: 15px;
            background-color: #fff;
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
        }
        .game-types h3 {
            margin-top: 0;
        }
        .game-types a {
            color: #2980b9;
            text-decoration: none;
            margin-right: 18px;
            font-weight: 500;
            transition: color 0.2s ease;
        }
        .game-types a:hover {
            color: #1e6091;
            text-decoration: underline;
        }
        footer {
            background-color: #2c3e50;
            color: #ecf0f1;
            padding: 50px 20px 30px;
            margin-top: 60px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        .footer-section {
            margin-bottom: 35px;
            padding-bottom: 15px;
            border-bottom: 1px solid #34495e;
        }
        .footer-section:last-child {
            border-bottom: none;
        }
        .footer-section h3 {
            color: #f1c40f;
            margin-bottom: 20px;
            padding-left: 0;
        }
        .footer-section p {
            text-align: left;
            margin-bottom: 15px;
        }
        .copyright {
            text-align: center;
            padding-top: 25px;
            border-top: 1px solid #34495e;
            margin-top: 20px;
            font-size: 0.9rem;
            color: #bdc3c7;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 70px;
                left: 0;
                right: 0;
                background-color: #b35900;
                padding: 20px;
                gap: 15px;
                border-top: 1px solid #cc6600;
            }
            .nav-links.active {
                display: flex;
            }
            .mobile-menu-btn {
                display: block;
            }
            h1 {
                font-size: 2rem;
                padding: 12px 15px;
            }
            h2 {
                font-size: 1.6rem;
                margin: 30px 0 12px;
            }
            h3 {
                font-size: 1.3rem;
            }
            .btn-container {
                flex-direction: column;
                align-items: center;
            }
            .btn {
                width: 100%;
                max-width: 300px;
            }
            .review:before {
                font-size: 3rem;
            }
            .review p:first-of-type {
                padding-left: 30px;
            }
        }
        @media (max-width: 480px) {
            .logo {
                font-size: 1.4rem;
            }
            h1 {
                font-size: 1.8rem;
            }
            .stats-box {
                padding: 15px;
            }
            .footer-section {
                padding: 0 10px;
            }
        }
