* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        body {
            background-color: #f8f9fa;
            color: #333;
            line-height: 1.8;
            padding-bottom: 60px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        header {
            background-color: #2c3e50;
            padding: 18px 0;
            color: #fff;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: #f1c40f;
            text-decoration: none;
            text-shadow: 0 1px 3px rgba(0,0,0,0.3);
            letter-spacing: 0.5px;
        }
        .nav-links {
            display: flex;
            gap: 20px;
        }
        .nav-links a {
            color: #ecf0f1;
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s;
            padding: 5px 0;
        }
        .nav-links a:hover {
            color: #f1c40f;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.6rem;
            cursor: pointer;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 75px;
                left: 0;
                right: 0;
                background-color: #2c3e50;
                padding: 20px 15px;
                gap: 15px;
                z-index: 100;
                box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            }
            .nav-links.active {
                display: flex;
            }
            .mobile-menu-btn {
                display: block;
            }
        }
        h1 {
            color: #2c3e50;
            margin: 30px 0 20px;
            font-size: 2.4rem;
            text-align: center;
            line-height: 1.3;
            padding: 0 10px;
        }
        h2 {
            color: #34495e;
            margin: 40px 0 20px;
            font-size: 2rem;
            border-bottom: 3px solid #f1c40f;
            padding-bottom: 10px;
            line-height: 1.4;
        }
        h3 {
            color: #2980b9;
            margin: 30px 0 15px;
            font-size: 1.5rem;
            line-height: 1.4;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            color: #555;
        }
        .highlight {
            font-weight: 700;
            color: #e67e22;
            text-decoration: none;
        }
        .btn {
            display: inline-block;
            padding: 12px 24px;
            background-color: #e67e22;
            color: white;
            text-decoration: none;
            border-radius: 6px;
            font-weight: 700;
            margin: 10px 10px 20px 0;
            transition: all 0.3s;
            box-shadow: 0 3px 5px rgba(230, 126, 34, 0.2);
        }
        .btn:hover {
            background-color: #d35400;
            transform: translateY(-2px);
            box-shadow: 0 5px 7px rgba(230, 126, 34, 0.3);
        }
        .image-container {
            margin: 30px 0;
            text-align: center;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 5px 10px rgba(0,0,0,0.1);
            transition: transform 0.3s;
        }
        img:hover {
            transform: scale(1.02);
        }
        .stats-box {
            background-color: #fff;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
            margin: 30px 0;
            border-left: 4px solid #3498db;
        }
        .review {
            background-color: #fff;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
            margin: 20px 0;
            border-right: 4px solid #2ecc71;
            position: relative;
        }
        .review::before {
            content: '"';
            font-size: 4rem;
            color: #f1f1f1;
            position: absolute;
            top: -10px;
            right: 15px;
            opacity: 0.3;
        }
        .strategy-tip {
            background-color: #fef9e7;
            padding: 18px;
            border-radius: 8px;
            margin: 18px 0;
            border: 1px solid #fdebd0;
            position: relative;
        }
        .strategy-tip::before {
            content: '🎯';
            font-size: 1.4rem;
            position: absolute;
            top: 12px;
            left: 12px;
        }
        .strategy-tip p {
            padding-left: 35px;
        }
        footer {
            background-color: #2c3e50;
            color: #ecf0f1;
            padding: 40px 0 20px;
            margin-top: 50px;
        }
        .footer-section {
            margin-bottom: 30px;
        }
        .footer-section h4 {
            font-size: 1.3rem;
            margin-bottom: 15px;
            color: #f1c40f;
        }
        .game-types, .tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        .game-types a, .tags a {
            color: #ecf0f1;
            text-decoration: none;
            padding: 6px 12px;
            background-color: #34495e;
            border-radius: 4px;
            transition: all 0.3s;
            font-size: 0.95rem;
        }
        .game-types a:hover, .tags a:hover {
            background-color: #7f8c8d;
            transform: translateY(-2px);
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #34495e;
            margin-top: 20px;
            font-size: 0.95rem;
            color: #bdc3c7;
        }
        .recommendation {
            margin: 30px 0;
            padding: 20px;
            background-color: #f5f5f5;
            border-radius: 8px;
            text-align: center;
        }
        script[type="application/ld+json"] {
            display: none;
        }
