* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        body {
            background-color: #f8f5e6;
            color: #333;
            line-height: 1.8;
            padding-bottom: 50px;
        }
        header {
            background-color: #8b4513;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 100;
        }
        .logo {
            color: #fff;
            font-size: 24px;
            font-weight: bold;
            text-align: center;
            margin-bottom: 15px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        nav ul {
            display: flex;
            list-style: none;
            justify-content: center;
            flex-wrap: wrap;
        }
        nav ul li {
            margin: 0 15px;
        }
        nav ul li a {
            color: #fff;
            text-decoration: none;
            font-weight: 500;
            padding: 5px 10px;
            border-radius: 4px;
            transition: background-color 0.3s;
        }
        nav ul li a:hover {
            background-color: #a0522d;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
            position: absolute;
            right: 20px;
            top: 20px;
        }
        main {
            max-width: 1200px;
            margin: 0 auto;
            padding: 30px 20px;
        }
        h1, h2, h3 {
            color: #8b4513;
            margin: 25px 0 15px;
            line-height: 1.3;
        }
        h1 {
            font-size: 32px;
            text-align: center;
            margin-bottom: 30px;
            color: #8b4513;
            border-bottom: 2px solid #cd853f;
            padding-bottom: 10px;
        }
        h2 {
            font-size: 26px;
            border-left: 4px solid #cd853f;
            padding-left: 15px;
        }
        h3 {
            font-size: 22px;
            color: #a0522d;
        }
        p {
            margin-bottom: 20px;
            font-size: 16px;
        }
        .highlight {
            font-weight: bold;
            color: #8b4513;
        }
        .btn-container {
            text-align: center;
            margin: 40px 0;
        }
        .btn {
            display: inline-block;
            padding: 12px 25px;
            margin: 0 10px 15px;
            background-color: #cd853f;
            color: white;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            transition: background-color 0.3s, transform 0.2s;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }
        .btn:hover {
            background-color: #8b4513;
            transform: translateY(-2px);
        }
        .btn-download {
            background-color: #2ecc71;
        }
        .btn-download:hover {
            background-color: #27ae60;
        }
        .btn-login {
            background-color: #3498db;
        }
        .btn-login:hover {
            background-color: #2980b9;
        }
        .image-container {
            text-align: center;
            margin: 30px 0;
        }
        .game-image {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        .stats-box {
            background-color: #fff;
            border-radius: 10px;
            padding: 20px;
            margin: 30px 0;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
        }
        .stat-item {
            text-align: center;
            padding: 15px;
            background-color: #fdf6e3;
            border-radius: 8px;
        }
        .stat-number {
            font-size: 28px;
            font-weight: bold;
            color: #8b4513;
            margin-bottom: 5px;
        }
        .review-container {
            background-color: #fff;
            border-radius: 10px;
            padding: 25px;
            margin: 30px 0;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
        }
        .review {
            border-bottom: 1px solid #eee;
            padding: 20px 0;
        }
        .review:last-child {
            border-bottom: none;
        }
        .review-rating {
            color: #f1c40f;
            margin-bottom: 10px;
        }
        .reviewer {
            font-weight: bold;
            color: #8b4513;
        }
        .tips-container {
            background-color: #fff8e1;
            border-radius: 10px;
            padding: 25px;
            margin: 30px 0;
            border-left: 5px solid #ffc107;
        }
        .tip-item {
            margin-bottom: 20px;
            padding-left: 10px;
        }
        .game-type-nav {
            margin: 40px 0 20px;
        }
        .game-type-nav h3 {
            margin-bottom: 15px;
        }
        .game-type-nav a {
            display: inline-block;
            margin: 0 10px 10px 0;
            padding: 8px 15px;
            background-color: #e8e1d0;
            color: #8b4513;
            text-decoration: none;
            border-radius: 20px;
            transition: background-color 0.3s;
        }
        .game-type-nav a:hover {
            background-color: #cd853f;
            color: white;
        }
        .tags {
            margin: 40px 0;
        }
        .tags h3 {
            margin-bottom: 15px;
        }
        .tag {
            display: inline-block;
            margin: 0 8px 10px 0;
            padding: 6px 12px;
            background-color: #f0e6d2;
            color: #8b4513;
            text-decoration: none;
            border-radius: 15px;
            font-size: 14px;
            transition: all 0.3s;
        }
        .tag:hover {
            background-color: #8b4513;
            color: white;
        }
        footer {
            background-color: #3e2723;
            color: white;
            padding: 40px 20px;
            margin-top: 50px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        .footer-section {
            margin-bottom: 30px;
        }
        .footer-section h3 {
            color: #ffd700;
            margin-bottom: 15px;
            font-size: 18px;
        }
        .footer-section p {
            color: #e0e0e0;
            font-size: 14px;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #5d4037;
            font-size: 14px;
            color: #ccc;
        }
        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }
            nav ul {
                display: none;
                flex-direction: column;
                align-items: center;
                margin-top: 20px;
            }
            nav ul.show {
                display: flex;
            }
            nav ul li {
                margin: 10px 0;
            }
            h1 {
                font-size: 28px;
            }
            h2 {
                font-size: 24px;
            }
            h3 {
                font-size: 20px;
            }
            .stats-grid {
                grid-template-columns: 1fr;
            }
            .btn {
                display: block;
                width: 80%;
                margin: 10px auto;
            }
        }
