* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Noto Sans', 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
        }
        body {
            background-color: #fffbf5;
            color: #333333;
            line-height: 1.8;
            padding-bottom: 60px;
        }
        header {
            background-color: #8b4513;
            color: #ffffff;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.2);
        }
        .logo {
            font-size: 2rem;
            font-weight: 800;
            text-align: center;
            margin-bottom: 10px;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
            letter-spacing: 0.7px;
            color: #ffeb3b;
        }
        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        .mobile-menu-toggle {
            display: none;
            background: transparent;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
            position: absolute;
            right: 15px;
            top: 20px;
        }
        nav ul {
            list-style: none;
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 18px;
        }
        nav a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            padding: 8px 15px;
            border-radius: 5px;
            transition: all 0.3s ease;
        }
        nav a:hover, nav a.active {
            background-color: rgba(255,255,255,0.2);
            transform: translateY(-2px);
        }
        main {
            max-width: 1200px;
            margin: 0 auto;
            padding: 30px 15px;
        }
        h1 {
            color: #8b4513;
            text-align: center;
            margin-bottom: 40px;
            font-size: 2.5rem;
            padding-bottom: 15px;
            border-bottom: 3px solid #cd5c5c;
        }
        h2 {
            color: #8b4513;
            margin: 50px 0 25px;
            font-size: 1.9rem;
            padding-left: 15px;
            border-left: 4px solid #cd5c5c;
        }
        h3 {
            color: #8b4513;
            margin: 35px 0 20px;
            font-size: 1.5rem;
            position: relative;
            padding-bottom: 8px;
        }
        h3:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 2px;
            background-color: #cd5c5c;
        }
        p {
            margin-bottom: 25px;
            font-size: 1.1rem;
            text-align: justify;
            line-height: 1.8;
        }
        strong {
            color: #8b4513;
            font-weight: 700;
        }
        .btn-group {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin: 50px 0;
            flex-wrap: wrap;
        }
        .btn {
            padding: 15px 30px;
            text-decoration: none;
            border-radius: 8px;
            font-weight: 700;
            font-size: 1.1rem;
            color: white;
            box-shadow: 0 4px 12px rgba(0,0,0,0.18);
            transition: all 0.3s ease;
            text-align: center;
            min-width: 200px;
            display: inline-block;
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(0,0,0,0.25);
        }
        .btn-download {
            background-color: #2e7d32;
        }
        .btn-login {
            background-color: #ff9800;
        }
        .img-container {
            text-align: center;
            margin: 40px 0;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
            transition: transform 0.3s ease;
        }
        img:hover {
            transform: scale(1.02);
        }
        .stats-card {
            background: white;
            border-radius: 10px;
            padding: 25px;
            margin: 40px 0;
            box-shadow: 0 6px 18px rgba(0,0,0,0.09);
            border-top: 5px solid #8b4513;
        }
        .stat-item {
            display: flex;
            justify-content: space-between;
            padding: 15px 0;
            border-bottom: 1px solid #f0f0f0;
        }
        .stat-item:last-child {
            border-bottom: none;
        }
        .stat-label {
            font-weight: 600;
            color: #333333;
        }
        .stat-value {
            font-weight: 700;
            color: #8b4513;
        }
        .review-card {
            background: white;
            border-radius: 10px;
            padding: 25px;
            margin-bottom: 25px;
            box-shadow: 0 6px 18px rgba(0,0,0,0.09);
            position: relative;
            overflow: hidden;
        }
        .review-card:before {
            content: '"';
            position: absolute;
            top: 10px;
            right: 15px;
            font-size: 5rem;
            color: rgba(139, 69, 19, 0.1);
            font-family: Georgia, serif;
        }
        .reviewer {
            font-weight: 700;
            color: #8b4513;
            margin-bottom: 8px;
            font-size: 1.1rem;
        }
        .rating {
            color: #ffc107;
            margin-bottom: 12px;
            font-size: 1.2rem;
        }
        .content-list {
            list-style: none;
            margin: 25px 0;
        }
        .content-list li {
            background: white;
            padding: 18px 20px;
            margin-bottom: 15px;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.07);
            font-size: 1.05rem;
            position: relative;
            padding-left: 50px;
        }
        .content-list li:before {
            content: '•';
            position: absolute;
            left: 20px;
            color: #8b4513;
            font-size: 1.8rem;
            line-height: 1;
        }
        .tip-box {
            background-color: #f8f5f0;
            border-left: 4px solid #cd5c5c;
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
        }
        .tip-title {
            font-weight: 700;
            color: #cd5c5c;
            margin-bottom: 10px;
            font-size: 1.2rem;
        }
        footer {
            background-color: #333333;
            color: white;
            padding: 50px 15px 30px;
            margin-top: 80px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        .footer-section {
            margin-bottom: 40px;
        }
        .footer-section h3 {
            color: #ffeb3b;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #8b4513;
            display: inline-block;
        }
        .game-types a, .tags a {
            display: inline-block;
            color: white;
            text-decoration: none;
            margin: 0 10px 12px 0;
            padding: 6px 14px;
            border-radius: 20px;
            background-color: rgba(255,255,255,0.1);
            transition: all 0.3s ease;
            font-size: 0.95rem;
        }
        .game-types a:hover, .tags a:hover {
            background-color: #8b4513;
            transform: translateY(-2px);
        }
        .recommendation {
            margin: 30px 0;
            padding: 20px;
            background-color: rgba(255,255,255,0.08);
            border-radius: 8px;
            font-size: 1.05rem;
            line-height: 1.8;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            margin-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 0.95rem;
            color: #bbbbbb;
        }
        @media (max-width: 768px) {
            .mobile-menu-toggle {
                display: block;
            }
            nav ul {
                display: none;
                flex-direction: column;
                align-items: center;
                margin-top: 20px;
                gap: 12px;
            }
            nav ul.show {
                display: flex;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            h3 {
                font-size: 1.3rem;
            }
            p {
                font-size: 1rem;
                text-align: left;
            }
            .btn {
                width: 100%;
                margin-bottom: 15px;
            }
            .content-list li {
                padding-left: 35px;
            }
            .content-list li:before {
                left: 12px;
            }
        }
        @media (prefers-reduced-motion) {
            * {
                transition: none !important;
            }
        }
