* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial Unicode MS', 'Segoe UI', sans-serif;
        }
        body {
            background-color: #f5f1e6;
            color: #2d2413;
            line-height: 1.8;
            padding-bottom: 50px;
        }
        header {
            background-color: #6b4226;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 3px 12px 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 {
            color: #e6b89c;
            font-size: 1.8rem;
            font-weight: bold;
            text-decoration: none;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            font-family: 'Georgia', serif;
            letter-spacing: 0.5px;
        }
        .nav-links {
            display: flex;
            gap: 28px;
        }
        .nav-links a {
            color: #f5f1e6;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            padding: 6px 12px;
            border-radius: 5px;
            font-size: 1.05rem;
        }
        .nav-links a:hover {
            background-color: rgba(255,255,255,0.15);
            transform: translateY(-2px);
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: #e6b89c;
            font-size: 1.9rem;
            cursor: pointer;
            padding: 5px 10px;
        }
        main {
            max-width: 1200px;
            margin: 0 auto;
            padding: 35px 20px;
        }
        h1 {
            color: #6b4226;
            font-size: 3rem;
            margin-bottom: 30px;
            text-align: center;
            padding-bottom: 20px;
            border-bottom: 5px solid #e6b89c;
            font-family: 'Georgia', serif;
        }
        h2 {
            color: #6b4226;
            font-size: 2.1rem;
            margin: 50px 0 25px;
            padding-left: 15px;
            border-left: 6px solid #e6b89c;
            font-family: 'Georgia', serif;
        }
        h3 {
            color: #8b5a2b;
            font-size: 1.6rem;
            margin: 35px 0 18px;
            font-family: 'Georgia', serif;
        }
        p {
            margin-bottom: 25px;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            font-weight: bold;
            color: #6b4226;
            text-decoration: none;
        }
        .emoji {
            margin: 0 5px;
            font-size: 1.2em;
        }
        .btn-container {
            display: flex;
            gap: 30px;
            margin: 50px 0;
            justify-content: center;
            flex-wrap: wrap;
        }
        .btn {
            padding: 16px 35px;
            border-radius: 10px;
            text-decoration: none;
            font-weight: bold;
            font-size: 1.2rem;
            transition: all 0.3s ease;
            text-align: center;
            min-width: 200px;
            box-shadow: 0 5px 0 rgba(0,0,0,0.18);
            border: none;
            cursor: pointer;
        }
        .download-btn {
            background-color: #4a7d5f;
            color: white;
        }
        .login-btn {
            background-color: #3d6b99;
            color: white;
        }
        .btn:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 0 rgba(0,0,0,0.25);
        }
        .image-container {
            margin: 40px 0;
            text-align: center;
        }
        .game-image {
            max-width: 100%;
            border-radius: 15px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.25);
            margin-bottom: 15px;
            border: 6px solid white;
            transition: transform 0.3s ease;
        }
        .game-image:hover {
            transform: scale(1.02);
        }
        .image-caption {
            color: #5c4033;
            font-size: 1rem;
            font-style: italic;
            max-width: 800px;
            margin: 0 auto;
        }
        .stats-box {
            background-color: white;
            border-radius: 15px;
            padding: 30px;
            margin: 40px 0;
            box-shadow: 0 6px 20px rgba(0,0,0,0.15);
            border-top: 6px solid #e6b89c;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 30px;
            margin-top: 25px;
        }
        .stat-item {
            text-align: center;
            padding: 25px 20px;
            background-color: #f9f5eb;
            border-radius: 12px;
            transition: transform 0.3s ease;
        }
        .stat-item:hover {
            transform: scale(1.05);
        }
        .stat-number {
            font-size: 2.3rem;
            font-weight: bold;
            color: #6b4226;
            margin-bottom: 8px;
        }
        .stat-label {
            color: #614937;
            font-size: 1rem;
        }
        .tips-list, .feature-list {
            margin: 30px 0 30px 50px;
        }
        .tips-list li, .feature-list li {
            margin-bottom: 22px;
            position: relative;
            padding-left: 15px;
            font-size: 1.1rem;
        }
        .tag-container {
            margin: 50px 0;
            padding: 25px;
            background-color: white;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.12);
        }
        .tag {
            display: inline-block;
            background-color: #f2e6d8;
            color: #6b4226;
            padding: 10px 18px;
            border-radius: 30px;
            margin: 0 12px 15px 0;
            text-decoration: none;
            font-size: 1rem;
            transition: all 0.3s ease;
            border: 1px solid #e6d4c0;
        }
        .tag:hover {
            background-color: #e6d4c0;
            transform: translateY(-3px);
        }
        .game-type-nav {
            margin: 40px 0;
            padding: 20px;
            background-color: #f9f5eb;
            border-radius: 10px;
        }
        .game-type {
            color: #6b4226;
            text-decoration: none;
            margin-right: 25px;
            font-weight: 500;
            padding: 6px 12px;
            border-radius: 5px;
            transition: all 0.3s ease;
            font-size: 1.05rem;
        }
        .game-type:hover {
            background-color: rgba(107, 66, 38, 0.15);
            transform: translateY(-2px);
        }
        footer {
            background-color: #2d2413;
            color: #f5f1e6;
            padding: 60px 20px 30px;
            margin-top: 70px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        .footer-section {
            margin-bottom: 40px;
        }
        .footer-section h4 {
            font-size: 1.4rem;
            margin-bottom: 25px;
            color: #e6b89c;
            padding-bottom: 10px;
            border-bottom: 2px solid rgba(230, 184, 156, 0.3);
            display: inline-block;
            font-family: 'Georgia', serif;
        }
        .footer-links {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin-top: 20px;
        }
        .footer-links a {
            color: #d9d2c5;
            text-decoration: none;
            transition: color 0.3s ease;
            font-size: 1.05rem;
        }
        .footer-links a:hover {
            color: #e6b89c;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            margin-top: 40px;
            border-top: 1px solid #524431;
            font-size: 1rem;
            color: #b0a898;
        }
        .quote-box {
            background-color: #f9f5eb;
            border-left: 5px solid #e6b89c;
            padding: 25px 30px;
            margin: 35px 0;
            border-radius: 0 10px 10px 0;
            font-style: italic;
            position: relative;
        }
        .quote-box:before {
            content: """;
            font-size: 5rem;
            color: rgba(230, 184, 156, 0.2);
            position: absolute;
            top: -10px;
            left: 10px;
            font-family: Georgia, serif;
        }
        .quote-author {
            display: block;
            text-align: right;
            margin-top: 15px;
            font-weight: bold;
            font-style: normal;
            color: #6b4226;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 80px;
                left: 0;
                right: 0;
                background-color: #6b4226;
                padding: 30px;
                gap: 20px;
                border-top: 1px solid rgba(255,255,255,0.15);
            }
            .nav-links.active {
                display: flex;
            }
            .mobile-menu-btn {
                display: block;
            }
            h1 {
                font-size: 2.4rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.5rem;
            }
            .stats-grid {
                grid-template-columns: 1fr 1fr;
            }
            .btn {
                padding: 14px 30px;
                font-size: 1.1rem;
            }
            .tips-list, .feature-list {
                margin-left: 30px;
            }
        }
        @media (max-width: 480px) {
            .logo {
                font-size: 1.5rem;
            }
            .stats-grid {
                grid-template-columns: 1fr;
            }
            .btn-container {
                flex-direction: column;
                align-items: center;
                gap: 20px;
            }
            .btn {
                width: 90%;
            }
            .tips-list, .feature-list {
                margin-left: 20px;
            }
            .tag {
                margin: 0 8px 12px 0;
                padding: 8px 15px;
                font-size: 0.95rem;
            }
            .game-type {
                display: inline-block;
                margin-bottom: 10px;
            }
        }
