* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial Unicode MS', 'Segoe UI', sans-serif;
        }
        body {
            background-color: #f5f1e6;
            color: #2c2c2c;
            line-height: 1.8;
            padding-bottom: 50px;
        }
        header {
            background: linear-gradient(135deg, #8b5a2b 0%, #5d4037 100%);
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 4px 12px rgba(0,0,0,0.2);
        }
        .logo {
            color: #ffd700;
            font-size: 32px;
            font-weight: bold;
            text-align: center;
            margin: 10px 0 20px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
            letter-spacing: 2px;
            font-family: 'Georgia', serif;
        }
        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        nav ul {
            list-style: none;
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 15px;
        }
        nav a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            padding: 8px 15px;
            border-radius: 25px;
            transition: all 0.3s ease;
            font-size: 15px;
        }
        nav a:hover {
            background-color: rgba(255,255,255,0.2);
            transform: translateY(-2px);
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 28px;
            cursor: pointer;
            position: absolute;
            right: 20px;
            top: 20px;
            z-index: 101;
        }
        main {
            max-width: 1200px;
            margin: 0 auto;
            padding: 30px 20px;
        }
        h1 {
            color: #8b4513;
            text-align: center;
            margin-bottom: 30px;
            font-size: 34px;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
            padding: 0 10px;
            font-family: 'Georgia', serif;
        }
        h2 {
            color: #2e7d32;
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 3px solid #8d6e63;
            font-size: 26px;
            position: relative;
            padding-left: 10px;
        }
        h2::before {
            content: "🏺";
            position: absolute;
            left: -15px;
        }
        h3 {
            color: #3949ab;
            margin: 30px 0 15px;
            font-size: 22px;
            padding-left: 10px;
            border-left: 4px solid #ffb74d;
        }
        p {
            margin-bottom: 20px;
            font-size: 17px;
            line-height: 1.8;
            text-align: justify;
        }
        .highlight {
            font-weight: bold;
            color: #8b4513;
            text-decoration: underline dotted;
            text-underline-offset: 4px;
        }
        .btn-container {
            text-align: center;
            margin: 50px 0;
        }
        .btn {
            display: inline-block;
            padding: 15px 30px;
            margin: 0 10px 15px;
            background-color: #4fc3f7;
            color: white;
            text-decoration: none;
            font-weight: bold;
            border-radius: 50px;
            font-size: 18px;
            transition: all 0.3s;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
            border: none;
            cursor: pointer;
            font-family: inherit;
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 16px rgba(0,0,0,0.2);
        }
        .download-btn {
            background: linear-gradient(135deg, #00c853 0%, #007e33 100%);
        }
        .login-btn {
            background: linear-gradient(135deg, #3f51b5 0%, #2c3e50 100%);
        }
        .image-container {
            text-align: center;
            margin: 40px 0;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 8px 24px rgba(0,0,0,0.15);
            transition: transform 0.3s ease;
        }
        img:hover {
            transform: scale(1.02);
        }
        .stats-box {
            background-color: white;
            border-radius: 12px;
            padding: 30px;
            margin: 30px 0;
            box-shadow: 0 8px 24px rgba(0,0,0,0.08);
            border-left: 6px solid #ff9800;
        }
        .stat-item {
            display: flex;
            justify-content: space-between;
            margin-bottom: 18px;
            padding-bottom: 18px;
            border-bottom: 1px dashed #eee;
            font-size: 17px;
        }
        .stat-item:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }
        .stat-item span:first-child {
            font-weight: 600;
            color: #2e7d32;
        }
        .stat-item span:last-child {
            color: #8b4513;
            font-weight: bold;
        }
        .tag-container {
            margin: 50px 0;
            background-color: white;
            padding: 25px;
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
        }
        .tag {
            display: inline-block;
            background-color: #efebe9;
            color: #2e7d32;
            padding: 10px 20px;
            margin: 0 10px 12px 0;
            border-radius: 25px;
            text-decoration: none;
            font-size: 15px;
            transition: all 0.3s;
            border: 1px solid #d7ccc8;
        }
        .tag:hover {
            background-color: #d7ccc8;
            color: #1b5e20;
            transform: translateY(-2px);
        }
        .game-type {
            margin: 15px 0;
        }
        .game-type a {
            color: #3949ab;
            text-decoration: none;
            font-weight: 600;
            font-size: 17px;
            transition: color 0.3s;
        }
        .game-type a:hover {
            color: #8b4513;
            text-decoration: underline;
        }
        footer {
            background-color: #2e3131;
            color: white;
            padding: 50px 20px 30px;
            margin-top: 80px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        .footer-section {
            margin-bottom: 40px;
        }
        .footer-section h3 {
            color: #ffd700;
            border-bottom: 2px solid #8d6e63;
            padding-bottom: 12px;
            margin-bottom: 25px;
            font-size: 20px;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            margin-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 15px;
            color: #e0e0e0;
        }
        .recommendation {
            background-color: rgba(255,255,255,0.1);
            padding: 25px;
            border-radius: 10px;
            margin: 40px 0;
            font-size: 17px;
            line-height: 1.8;
        }
        .review-box {
            background-color: white;
            border-radius: 10px;
            padding: 20px;
            margin-bottom: 25px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
        }
        .reviewer {
            font-weight: bold;
            color: #2e7d32;
            margin-bottom: 5px;
            display: block;
        }
        .rating {
            color: #ffb74d;
            margin-bottom: 10px;
            display: block;
        }
        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }
            nav ul {
                display: none;
                flex-direction: column;
                text-align: center;
                margin-top: 60px;
                background-color: #5d4037;
                padding: 20px;
                border-radius: 10px;
            }
            nav ul.active {
                display: flex;
            }
            h1 {
                font-size: 28px;
                margin-bottom: 25px;
            }
            h2 {
                font-size: 24px;
                margin: 30px 0 15px;
            }
            h3 {
                font-size: 20px;
                margin: 25px 0 12px;
            }
            p {
                font-size: 16px;
            }
            .btn {
                display: block;
                margin: 10px auto;
                width: 90%;
                padding: 14px 20px;
                font-size: 17px;
            }
            .stats-box {
                padding: 20px;
            }
            .stat-item {
                flex-direction: column;
                margin-bottom: 15px;
                padding-bottom: 15px;
            }
            .stat-item span:last-child {
                margin-top: 5px;
            }
            .image-container {
                margin: 30px 0;
            }
        }
