* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        body {
            background-color: #fff8e6;
            color: #5d4037;
            line-height: 1.8;
            padding-bottom: 50px;
        }
        header {
            background-color: #8B4513;
            color: #fff;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        .logo {
            font-size: 2rem;
            font-weight: bold;
            text-align: center;
            margin-bottom: 10px;
            color: #ffcc80;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            font-family: 'Georgia', serif;
        }
        nav {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .nav-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 25px;
        }
        .nav-links a {
            color: #fff;
            text-decoration: none;
            font-weight: 600;
            padding: 8px 12px;
            border-radius: 4px;
            transition: all 0.3s ease;
            font-size: 1.05rem;
        }
        .nav-links 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: 1.8rem;
            cursor: pointer;
            position: absolute;
            right: 20px;
            top: 20px;
            z-index: 101;
        }
        main {
            max-width: 1200px;
            margin: 30px auto;
            padding: 0 20px;
        }
        h1 {
            color: #8B4513;
            text-align: center;
            margin: 30px 0 40px;
            font-size: 2.8rem;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
            font-family: 'Georgia', serif;
            line-height: 1.3;
        }
        h2 {
            color: #8B4513;
            margin: 50px 0 25px;
            border-bottom: 3px solid #d7ccc8;
            padding-bottom: 12px;
            font-size: 2.2rem;
            font-family: 'Georgia', serif;
        }
        h3 {
            color: #8B4513;
            margin: 35px 0 18px;
            font-size: 1.6rem;
            font-family: 'Georgia', serif;
        }
        p {
            margin-bottom: 22px;
            font-size: 1.1rem;
            line-height: 1.8;
        }
        .highlight {
            font-weight: bold;
            color: #8B4513;
            text-shadow: 0.5px 0.5px 1px rgba(0,0,0,0.1);
        }
        .image-container {
            text-align: center;
            margin: 40px 0;
        }
        .image-container img {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 6px 12px rgba(0,0,0,0.15);
            transition: transform 0.3s ease;
        }
        .image-container img:hover {
            transform: scale(1.02);
        }
        .button-container {
            text-align: center;
            margin: 50px 0;
        }
        .btn {
            display: inline-block;
            padding: 16px 32px;
            margin: 0 12px;
            background-color: #8B4513;
            color: white;
            text-decoration: none;
            border-radius: 8px;
            font-weight: bold;
            font-size: 1.15rem;
            transition: all 0.3s;
            box-shadow: 0 4px 8px rgba(0,0,0,0.15);
            border: none;
            cursor: pointer;
        }
        .btn:hover {
            background-color: #6d3510;
            transform: translateY(-3px);
            box-shadow: 0 8px 16px rgba(0,0,0,0.2);
        }
        .download-btn {
            background-color: #2e7d32;
        }
        .download-btn:hover {
            background-color: #1b5e20;
        }
        .login-btn {
            background-color: #1565c0;
        }
        .login-btn:hover {
            background-color: #0d47a1;
        }
        .stats-box {
            background-color: white;
            border-radius: 12px;
            padding: 25px;
            margin: 40px 0;
            box-shadow: 0 6px 15px rgba(0,0,0,0.1);
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 25px;
            margin-top: 25px;
        }
        .stat-item {
            text-align: center;
            padding: 20px;
            background-color: #fff3e0;
            border-radius: 10px;
            transition: transform 0.3s ease;
        }
        .stat-item:hover {
            transform: translateY(-5px);
        }
        .stat-number {
            font-size: 2.4rem;
            font-weight: bold;
            color: #8B4513;
            margin-bottom: 8px;
        }
        .stat-label {
            font-size: 1.05rem;
            color: #5d4037;
        }
        .review-container {
            background-color: white;
            border-radius: 12px;
            padding: 25px;
            margin: 25px 0;
            box-shadow: 0 6px 15px rgba(0,0,0,0.1);
            border-left: 5px solid #d7ccc8;
        }
        .review-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 1px solid #f5f5f5;
        }
        .reviewer {
            font-weight: bold;
            font-size: 1.1rem;
            color: #8B4513;
        }
        .rating {
            color: #ffb300;
            font-weight: bold;
            font-size: 1.1rem;
        }
        .tag-container {
            margin: 45px 0;
        }
        .tag {
            display: inline-block;
            background-color: #ffe0b2;
            color: #5d4037;
            padding: 10px 18px;
            border-radius: 30px;
            margin: 8px;
            text-decoration: none;
            font-size: 0.95rem;
            transition: all 0.3s;
            font-weight: 500;
        }
        .tag:hover {
            background-color: #8B4513;
            color: white;
            transform: translateY(-2px);
        }
        .game-types {
            margin: 45px 0;
        }
        .game-type {
            display: inline-block;
            margin: 0 12px 12px 0;
        }
        .game-type a {
            color: #8B4513;
            text-decoration: none;
            font-weight: 600;
            border-bottom: 3px solid #ffcc80;
            padding-bottom: 3px;
            transition: all 0.3s;
        }
        .game-type a:hover {
            color: #6d3510;
            border-bottom-color: #8B4513;
        }
        footer {
            background-color: #3e2723;
            color: #fff;
            padding: 50px 20px;
            margin-top: 60px;
        }
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
        }
        .footer-section {
            margin-bottom: 40px;
        }
        .footer-section h4 {
            margin-bottom: 20px;
            font-size: 1.4rem;
            color: #ffcc80;
            font-family: 'Georgia', serif;
            border-bottom: 2px solid #5d4037;
            padding-bottom: 10px;
            display: inline-block;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #5d4037;
            margin-top: 30px;
            font-size: 0.95rem;
            color: #e0e0e0;
        }
        .feature-list {
            margin: 25px 0 35px 25px;
        }
        .feature-list li {
            margin-bottom: 15px;
            font-size: 1.1rem;
            position: relative;
            padding-left: 25px;
        }
        .feature-list li:before {
            content: "•";
            color: #8B4513;
            font-weight: bold;
            position: absolute;
            left: 0;
        }
        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }
            .nav-links {
                display: none;
                flex-direction: column;
                align-items: center;
                margin-top: 20px;
                background-color: #8B4513;
                padding: 20px 0;
                border-radius: 8px;
            }
            .nav-links.active {
                display: flex;
            }
            h1 {
                font-size: 2.2rem;
                margin: 20px 0 30px;
            }
            h2 {
                font-size: 1.8rem;
                margin: 40px 0 20px;
            }
            h3 {
                font-size: 1.4rem;
                margin: 30px 0 15px;
            }
            .btn {
                display: block;
                margin: 15px auto;
                width: 90%;
                padding: 14px 20px;
            }
            .stats-grid {
                grid-template-columns: 1fr;
            }
            .image-container {
                margin: 30px 0;
            }
            .review-container {
                padding: 20px;
            }
        }
        ::-webkit-scrollbar {
            width: 10px;
        }
        ::-webkit-scrollbar-track {
            background: #fff3e0;
        }
        ::-webkit-scrollbar-thumb {
            background: #8B4513;
            border-radius: 5px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #6d3510;
        }
