* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Noto Sans', 'Arial Unicode MS', sans-serif;
        }
        body {
            background-color: #fffbf0;
            color: #2d2413;
            line-height: 1.8;
            padding-bottom: 60px;
        }
        header {
            background-color: #6d4c41;
            color: #ffeb3b;
            padding: 18px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 3px 15px 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.9rem;
            font-weight: 800;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.4);
            letter-spacing: 0.7px;
            color: #ffeb3b;
            text-decoration: none;
        }
        .nav-links {
            display: flex;
            gap: 28px;
        }
        .nav-links a {
            color: #ffffff;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.05rem;
            transition: all 0.3s ease;
            padding: 6px 12px;
            border-radius: 5px;
            position: relative;
        }
        .nav-links a:hover {
            color: #ffeb3b;
            background-color: rgba(255,255,255,0.15);
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 2rem;
            cursor: pointer;
            padding: 5px 12px;
            z-index: 1001;
        }
        main {
            max-width: 1200px;
            margin: 35px auto;
            padding: 0 20px;
        }
        h1 {
            color: #6d4c41;
            font-size: 2.7rem;
            margin: 25px 0 35px;
            text-align: center;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.15);
            border-bottom: 4px solid #a1887f;
            padding-bottom: 18px;
        }
        h2 {
            color: #6d4c41;
            font-size: 2rem;
            margin: 50px 0 25px;
            border-left: 6px solid #a1887f;
            padding-left: 18px;
        }
        h3 {
            color: #6d4c41;
            font-size: 1.55rem;
            margin: 35px 0 20px;
            padding-bottom: 8px;
            border-bottom: 2px dotted #a1887f;
        }
        h4 {
            color: #6d4c41;
            font-size: 1.3rem;
            margin: 25px 0 15px;
        }
        p {
            margin-bottom: 22px;
            font-size: 1.08rem;
            text-align: justify;
            line-height: 1.8;
        }
        .highlight {
            font-weight: 700;
            color: #6d4c41;
            font-size: 1.12rem;
        }
        .image-container {
            margin: 40px auto;
            text-align: center;
            max-width: 100%;
        }
        .game-image {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.2);
            border: 2px solid #a1887f;
            position: relative;
        }
        .image-watermark {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: rgba(255,255,255,0.3);
            font-size: 5rem;
            font-weight: bold;
            z-index: 10;
            pointer-events: none;
            rotate: -30deg;
        }
        .btn-container {
            text-align: center;
            margin: 50px 0;
            padding: 20px;
            background-color: rgba(161, 136, 127, 0.1);
            border-radius: 10px;
        }
        .btn {
            display: inline-block;
            padding: 16px 32px;
            margin: 0 12px 18px;
            color: white;
            text-decoration: none;
            border-radius: 8px;
            font-weight: 700;
            font-size: 1.15rem;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            border: none;
            cursor: pointer;
        }
        .btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.25);
        }
        .download-btn {
            background-color: #388e3c;
        }
        .download-btn:hover {
            background-color: #2e7d32;
        }
        .login-btn {
            background-color: #1976d2;
        }
        .login-btn:hover {
            background-color: #1565c0;
        }
        .stats-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            margin: 50px 0;
            gap: 25px;
        }
        .stat-box {
            background-color: white;
            padding: 25px;
            border-radius: 10px;
            text-align: center;
            width: 240px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.15);
            border-top: 5px solid #6d4c41;
            transition: transform 0.3s ease;
        }
        .stat-box:hover {
            transform: translateY(-8px);
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: #6d4c41;
            margin-bottom: 10px;
        }
        .stat-text {
            font-size: 1rem;
            color: #4e342e;
        }
        .review-container {
            background-color: white;
            padding: 25px;
            border-radius: 10px;
            margin: 25px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.15);
            border-left: 5px solid #a1887f;
        }
        .reviewer {
            font-weight: 700;
            color: #6d4c41;
            margin-bottom: 8px;
            font-size: 1.1rem;
        }
        .review-location {
            font-size: 0.95rem;
            color: #616161;
            margin-bottom: 12px;
            font-style: italic;
        }
        .rating {
            color: #ffc107;
            margin-bottom: 15px;
            font-size: 1.2rem;
        }
        .tag-container {
            margin: 35px 0;
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }
        .tag {
            background-color: #efebe9;
            color: #4e342e;
            padding: 8px 18px;
            border-radius: 25px;
            text-decoration: none;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            font-weight: 500;
        }
        .tag:hover {
            background-color: #6d4c41;
            color: white;
            transform: translateY(-3px);
        }
        .game-type-nav {
            margin: 30px 0;
            padding: 20px;
            background-color: rgba(161, 136, 127, 0.1);
            border-radius: 10px;
        }
        .game-type-nav a {
            color: #6d4c41;
            text-decoration: none;
            margin-right: 22px;
            font-weight: 600;
            padding: 6px 0;
            position: relative;
            font-size: 1.05rem;
        }
        .game-type-nav a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 3px;
            bottom: 0;
            left: 0;
            background-color: #6d4c41;
            transition: width 0.3s ease;
        }
        .game-type-nav a:hover:after {
            width: 100%;
        }
        footer {
            background-color: #2d2413;
            color: #f5f5f5;
            padding: 50px 0 25px;
            margin-top: 80px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .footer-section {
            margin-bottom: 40px;
        }
        .footer-section h3 {
            color: #ffeb3b;
            margin-bottom: 20px;
            font-size: 1.4rem;
            padding-bottom: 12px;
            border-bottom: 1px solid rgba(255,235,59,0.3);
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.1);
            margin-top: 40px;
            font-size: 0.95rem;
            color: #bdbdbd;
        }
        .feature-list {
            margin: 25px 0 35px 30px;
        }
        .feature-list li {
            margin-bottom: 18px;
            font-size: 1.05rem;
            position: relative;
            padding-left: 15px;
        }
        .feature-list li:before {
            content: '•';
            color: #6d4c41;
            font-weight: bold;
            position: absolute;
            left: -15px;
            font-size: 1.5rem;
        }
        .trivia-box {
            background-color: rgba(255, 235, 59, 0.1);
            border-radius: 10px;
            padding: 25px;
            margin: 35px 0;
            border-left: 5px solid #ffeb3b;
        }
        .trivia-title {
            font-weight: 700;
            color: #6d4c41;
            margin-bottom: 15px;
            font-size: 1.2rem;
            display: flex;
            align-items: center;
        }
        .trivia-title:before {
            content: '💡';
            margin-right: 10px;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 80px;
                left: 0;
                right: 0;
                background-color: #6d4c41;
                padding: 25px;
                gap: 20px;
                box-shadow: 0 8px 15px rgba(0,0,0,0.25);
            }
            .nav-links.active {
                display: flex;
            }
            .mobile-menu-btn {
                display: block;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.7rem;
                margin: 35px 0 20px;
            }
            h3 {
                font-size: 1.4rem;
            }
            .btn {
                display: block;
                margin: 12px auto;
                width: 90%;
                padding: 15px 20px;
            }
            .stat-box {
                width: 100%;
                max-width: 320px;
            }
            .game-type-nav a {
                display: inline-block;
                margin-bottom: 10px;
            }
            .image-watermark {
                font-size: 3rem;
            }
        }
