* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
        }
        body {
            background-color: #fff9ea;
            color: #332c1e;
            line-height: 1.8;
            padding-bottom: 60px;
            font-size: 16px;
        }
        header {
            background: linear-gradient(135deg, #8b5a2b, #cd853f);
            color: #fff;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 3px 10px rgba(0,0,0,0.2);
        }
        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: #ffecb3;
            text-decoration: none;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
            letter-spacing: 0.5px;
        }
        nav ul {
            display: flex;
            list-style: none;
        }
        nav ul li {
            margin-left: 25px;
        }
        nav ul li a {
            color: #fff;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
            padding: 5px 0;
            position: relative;
        }
        nav ul li a:hover {
            color: #ffecb3;
        }
        nav ul li a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: #ffecb3;
            transition: width 0.3s;
        }
        nav ul li a:hover:after {
            width: 100%;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
            z-index: 101;
        }
        main {
            max-width: 1200px;
            margin: 30px auto;
            padding: 0 20px;
        }
        h1 {
            color: #8b4513;
            font-size: 2.5rem;
            margin-bottom: 25px;
            text-align: center;
            padding-bottom: 15px;
            border-bottom: 4px solid #ffd700;
        }
        h2 {
            color: #8b4513;
            font-size: 2rem;
            margin: 40px 0 20px;
            padding-left: 12px;
            border-left: 5px solid #ffd700;
        }
        h3 {
            color: #a0522d;
            font-size: 1.5rem;
            margin: 30px 0 15px;
            position: relative;
            padding-bottom: 8px;
        }
        h3:after {
            content: '';
            position: absolute;
            width: 60px;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: #ffd700;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.05rem;
            line-height: 1.8;
        }
        .highlight {
            font-weight: bold;
            color: #8b4513;
        }
        .btn-container {
            display: flex;
            gap: 20px;
            margin: 40px 0;
            flex-wrap: wrap;
            justify-content: center;
        }
        .btn {
            padding: 14px 30px;
            text-decoration: none;
            border-radius: 8px;
            font-weight: bold;
            font-size: 1.1rem;
            transition: all 0.3s;
            display: inline-block;
            text-align: center;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
            min-width: 200px;
        }
        .download-btn {
            background-color: #8b4513;
            color: white;
        }
        .login-btn {
            background-color: #ffd700;
            color: #8b4513;
        }
        .btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 18px rgba(0,0,0,0.2);
        }
        .image-container {
            margin: 40px 0;
            text-align: center;
        }
        .game-image {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
            transition: transform 0.3s;
        }
        .game-image:hover {
            transform: scale(1.02);
        }
        .stats-box {
            background-color: white;
            border-radius: 12px;
            padding: 30px;
            margin: 30px 0;
            box-shadow: 0 6px 15px rgba(0,0,0,0.1);
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 25px;
            margin-top: 20px;
        }
        .stat-item {
            text-align: center;
            padding: 20px;
            background-color: #fff8e1;
            border-radius: 10px;
            transition: transform 0.3s;
        }
        .stat-item:hover {
            transform: translateY(-5px);
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: bold;
            color: #8b4513;
        }
        .stat-label {
            color: #5d4037;
            margin-top: 8px;
            font-size: 1rem;
        }
        .review-container {
            margin: 40px 0;
        }
        .review-card {
            background-color: white;
            border-radius: 12px;
            padding: 25px;
            margin-bottom: 25px;
            box-shadow: 0 6px 15px rgba(0,0,0,0.07);
            transition: transform 0.3s;
        }
        .review-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.12);
        }
        .reviewer {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }
        .reviewer-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            margin-right: 20px;
            background-color: #ffe0b2;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: #8b4513;
        }
        .reviewer-info h4 {
            font-size: 1.2rem;
            margin-bottom: 5px;
            color: #8b4513;
        }
        .rating {
            color: #ffb74d;
            margin-bottom: 12px;
            font-size: 1.1rem;
        }
        .tips-container {
            background-color: #fff3e0;
            border-left: 6px solid #8b4513;
            padding: 25px;
            margin: 30px 0;
            border-radius: 0 8px 8px 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.06);
        }
        .tag-container {
            margin: 40px 0;
        }
        .tag {
            display: inline-block;
            background-color: #fff0e0;
            color: #8b4513;
            padding: 10px 20px;
            border-radius: 25px;
            margin: 0 10px 12px 0;
            text-decoration: none;
            font-size: 1rem;
            transition: all 0.3s;
            font-weight: 600;
        }
        .tag:hover {
            background-color: #8b4513;
            color: white;
            transform: translateY(-3px);
        }
        .game-type-nav {
            margin: 30px 0;
        }
        .game-type {
            display: inline-block;
            margin-right: 20px;
            text-decoration: none;
            color: #a0522d;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s;
            position: relative;
            padding: 5px 0;
        }
        .game-type:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: #a0522d;
            transition: width 0.3s;
        }
        .game-type:hover {
            color: #8b4513;
        }
        .game-type:hover:after {
            width: 100%;
        }
        footer {
            background-color: #3e2723;
            color: #fff;
            padding: 50px 0 30px;
            margin-top: 60px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .footer-section {
            margin-bottom: 40px;
        }
        .footer-section h3 {
            color: #ffd700;
            margin-bottom: 20px;
            font-size: 1.4rem;
            padding-bottom: 10px;
            border-bottom: 2px solid #ffd700;
            display: inline-block;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 12px;
        }
        .footer-links a {
            color: #e0e0e0;
            text-decoration: none;
            transition: color 0.3s;
            font-size: 1rem;
        }
        .footer-links a:hover {
            color: white;
            padding-left: 6px;
        }
        .recommendation {
            background-color: #fff8e1;
            padding: 25px;
            border-radius: 10px;
            margin-bottom: 40px;
            text-align: center;
            border: 1px solid #ffe0b2;
        }
        .recommendation p {
            font-size: 1.1rem;
            color: #3e2723;
            font-weight: 600;
        }
        ul {
            margin-left: 30px;
            margin-bottom: 20px;
        }
        ul li {
            margin-bottom: 10px;
            font-size: 1.05rem;
        }
        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }
            nav ul {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 70px;
                left: 0;
                right: 0;
                background-color: #8b4513;
                padding: 25px;
                box-shadow: 0 8px 15px rgba(0,0,0,0.2);
            }
            nav ul.show {
                display: flex;
            }
            nav ul li {
                margin: 15px 0;
                padding: 6px 0;
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            h3 {
                font-size: 1.4rem;
            }
            .btn-container {
                flex-direction: column;
                align-items: center;
            }
            .btn {
                width: 100%;
                max-width: 300px;
            }
            .stats-grid {
                grid-template-columns: 1fr;
            }
            .tag {
                padding: 8px 16px;
                font-size: 0.9rem;
            }
        }
        .features-table {
            width: 100%;
            border-collapse: collapse;
            margin: 30px 0;
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        }
        .features-table th, .features-table td {
            padding: 15px;
            text-align: left;
            border-bottom: 1px solid #f5f5f5;
        }
        .features-table th {
            background-color: #8b4513;
            color: white;
            font-weight: 600;
        }
        .features-table tr:hover {
            background-color: #fff8e1;
        }
        section {
            margin-bottom: 50px;
            padding: 20px;
            background-color: white;
            border-radius: 10px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
        }
        .strategy-list {
            background-color: #fff8e1;
            border-radius: 8px;
            padding: 20px 20px 20px 40px;
            margin: 20px 0;
        }
        .strategy-list li {
            margin-bottom: 15px;
            position: relative;
            padding-left: 10px;
        }
        .strategy-list li:before {
            content: '✓';
            color: #8b4513;
            font-weight: bold;
            position: absolute;
            left: -20px;
        }
