* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        body {
            background-color: #fff9e6;
            color: #333;
            line-height: 1.8;
            padding-bottom: 50px;
        }
        header {
            background: linear-gradient(135deg, #ff6b35 0%, #e65c20 100%);
            padding: 15px 0;
            box-shadow: 0 2px 15px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: white;
            text-align: center;
            margin-bottom: 15px;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
            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: 20px;
        }
        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            padding: 8px 15px;
            border-radius: 5px;
            transition: all 0.3s;
        }
        .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;
            top: 20px;
            right: 20px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        h1, h2, h3, h4 {
            color: #c44515;
            margin: 30px 0 20px;
            line-height: 1.3;
            font-family: 'Georgia', serif;
        }
        h1 {
            font-size: 2.8rem;
            text-align: center;
            margin: 40px 0 30px;
            color: #b03c10;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
            padding-bottom: 15px;
            border-bottom: 3px solid #ff6b35;
            display: inline-block;
            width: 100%;
        }
        h2 {
            font-size: 2.2rem;
            border-bottom: 2px solid #ff6b35;
            padding-bottom: 10px;
            margin-top: 50px;
        }
        h3 {
            font-size: 1.7rem;
            margin-top: 30px;
            color: #d1501a;
            padding-left: 10px;
            border-left: 4px solid #ff6b35;
        }
        h4 {
            font-size: 1.4rem;
            margin-top: 25px;
            color: #d1501a;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            font-weight: bold;
            color: #b03c10;
            text-decoration: underline dotted #ff6b35;
        }
        .btn-container {
            text-align: center;
            margin: 40px 0;
        }
        .btn {
            display: inline-block;
            padding: 15px 30px;
            margin: 0 10px 15px;
            background: linear-gradient(135deg, #ff6b35 0%, #e65c20 100%);
            color: white;
            text-decoration: none;
            font-weight: bold;
            border-radius: 50px;
            font-size: 1.2rem;
            transition: all 0.3s;
            box-shadow: 0 4px 8px rgba(0,0,0,0.15);
            border: none;
            cursor: pointer;
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(0,0,0,0.2);
            background: linear-gradient(135deg, #e65c20 0%, #d1501a 100%);
        }
        .image-container {
            text-align: center;
            margin: 30px 0;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
            border: 5px solid white;
        }
        .stats-box {
            background-color: white;
            border-radius: 10px;
            padding: 25px;
            margin: 30px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            border-left: 5px solid #ff6b35;
        }
        .stat-item {
            display: flex;
            justify-content: space-between;
            margin-bottom: 15px;
            padding-bottom: 15px;
            border-bottom: 1px dashed #ffe0cc;
        }
        .stat-item:last-child {
            border-bottom: none;
        }
        .review {
            background-color: white;
            border-radius: 10px;
            padding: 20px;
            margin-bottom: 20px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            border-top: 3px solid #ff6b35;
        }
        .reviewer {
            font-weight: bold;
            color: #555;
            margin-bottom: 5px;
            font-size: 1.1rem;
        }
        .rating {
            color: #ffc107;
            margin-bottom: 10px;
            font-size: 1.2rem;
        }
        .game-tips {
            background-color: #fff4e0;
            border-radius: 10px;
            padding: 25px;
            margin: 30px 0;
            border: 1px solid #ffe0cc;
        }
        .tip-item {
            margin-bottom: 20px;
            padding-left: 20px;
            position: relative;
        }
        .tip-item:before {
            content: "✓";
            color: #ff6b35;
            font-size: 1.5rem;
            position: absolute;
            left: 0;
            top: -5px;
        }
        footer {
            background-color: #333;
            color: white;
            padding: 40px 20px;
            margin-top: 60px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        .game-types {
            margin-bottom: 30px;
        }
        .game-types h4, .tags h4 {
            font-size: 1.3rem;
            margin-bottom: 15px;
            color: #ff9566;
            font-family: 'Georgia', serif;
        }
        .game-types a, .tags a {
            color: #f0f0f0;
            text-decoration: none;
            display: inline-block;
            margin: 0 10px 10px 0;
            padding: 6px 12px;
            background-color: #444;
            border-radius: 5px;
            transition: all 0.3s;
        }
        .game-types a:hover, .tags a:hover {
            background-color: #ff6b35;
            transform: translateY(-2px);
        }
        .recommendation {
            margin: 30px 0;
            padding: 20px;
            background-color: #444;
            border-radius: 10px;
            text-align: center;
            border: 1px solid #555;
        }
        .copyright {
            text-align: center;
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid #555;
            font-size: 0.9rem;
            color: #aaa;
        }
        ul {
            margin-left: 30px;
            margin-bottom: 20px;
        }
        li {
            margin-bottom: 10px;
        }
        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }
            .nav-links {
                display: none;
                flex-direction: column;
                align-items: center;
                margin-top: 20px;
            }
            .nav-links.active {
                display: flex;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.5rem;
            }
            .btn {
                display: block;
                margin: 10px auto;
                width: 90%;
            }
            p {
                text-align: left;
                font-size: 1rem;
            }
            .stat-item {
                flex-direction: column;
            }
            .stat-item span:last-child {
                margin-top: 5px;
                font-weight: bold;
            }
        }
