* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        body {
            background-color: #f0f4f8;
            color: #2d3436;
            line-height: 1.8;
            padding-bottom: 50px;
        }
        .mobile-nav-btn {
            display: block;
            background-color: #e74c3c;
            color: white;
            padding: 15px;
            text-align: center;
            font-size: 18px;
            cursor: pointer;
            position: sticky;
            top: 0;
            z-index: 100;
            border-bottom: 2px solid #c0392b;
        }
        .nav-container {
            display: none;
            background-color: #2c3e50;
            padding: 15px 0;
        }
        .nav-container.active {
            display: block;
        }
        .nav-links {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 12px;
            align-items: center;
        }
        .nav-links li a {
            color: white;
            text-decoration: none;
            font-size: 17px;
            padding: 10px 18px;
            border-radius: 6px;
            transition: all 0.3s ease;
        }
        .nav-links li a:hover {
            background-color: #e74c3c;
            transform: scale(1.05);
        }
        .logo {
            font-size: 34px;
            font-weight: bold;
            color: #e74c3c;
            text-align: center;
            margin: 25px 0;
            text-shadow: 3px 3px 5px rgba(0,0,0,0.2);
            letter-spacing: 1.5px;
            font-family: 'Georgia', serif;
        }
        @media (min-width: 768px) {
            .mobile-nav-btn {
                display: none;
            }
            .nav-container {
                display: block;
                position: sticky;
                top: 0;
                z-index: 100;
                box-shadow: 0 4px 6px rgba(0,0,0,0.1);
            }
            .nav-links {
                flex-direction: row;
                justify-content: center;
                gap: 30px;
                padding: 10px 0;
            }
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        h1 {
            color: #c0392b;
            text-align: center;
            margin: 40px 0 30px;
            font-size: 38px;
            border-bottom: 4px solid #e74c3c;
            padding-bottom: 15px;
            font-family: 'Georgia', serif;
        }
        h2 {
            color: #c0392b;
            margin: 50px 0 25px;
            font-size: 30px;
            border-left: 6px solid #e74c3c;
            padding-left: 18px;
            font-family: 'Georgia', serif;
        }
        h3 {
            color: #2c3e50;
            margin: 35px 0 18px;
            font-size: 24px;
            font-family: 'Georgia', serif;
        }
        p {
            margin-bottom: 22px;
            font-size: 17px;
            text-align: justify;
            line-height: 1.8;
        }
        .btn {
            display: inline-block;
            padding: 14px 28px;
            background-color: #e74c3c;
            color: white;
            text-decoration: none;
            border-radius: 8px;
            font-weight: bold;
            margin: 12px 8px;
            transition: all 0.3s ease;
            font-size: 16px;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }
        .btn:hover {
            background-color: #c0392b;
            transform: translateY(-3px);
            box-shadow: 0 6px 8px rgba(0,0,0,0.15);
        }
        .btn-container {
            text-align: center;
            margin: 50px 0;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            margin: 30px 0;
            display: block;
            margin-left: auto;
            margin-right: auto;
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
            border: 3px solid white;
        }
        .stats-box {
            background-color: white;
            padding: 30px;
            border-radius: 12px;
            box-shadow: 0 6px 15px rgba(0,0,0,0.1);
            margin: 40px 0;
        }
        .stats-box h3 {
            text-align: center;
            margin-bottom: 30px;
            color: #e74c3c;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 25px;
        }
        .stat-item {
            text-align: center;
            padding: 20px;
            background-color: #f0f4f8;
            border-radius: 10px;
            transition: transform 0.3s ease;
        }
        .stat-item:hover {
            transform: scale(1.03);
        }
        .stat-number {
            font-size: 32px;
            font-weight: bold;
            color: #e74c3c;
            margin-bottom: 8px;
        }
        .stat-label {
            font-size: 16px;
            color: #2d3436;
        }
        .review-box {
            background-color: white;
            padding: 25px;
            border-radius: 10px;
            margin: 30px 0;
            border-left: 5px solid #e74c3c;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
            transition: transform 0.3s ease;
        }
        .review-box:hover {
            transform: translateX(5px);
        }
        .reviewer {
            font-style: italic;
            color: #666;
            margin-top: 15px;
            font-size: 16px;
        }
        .guide-step {
            background-color: white;
            padding: 20px;
            border-radius: 10px;
            margin: 20px 0;
            box-shadow: 0 3px 10px rgba(0,0,0,0.06);
            border-left: 4px solid #e74c3c;
        }
        .guide-step h4 {
            color: #c0392b;
            margin-bottom: 10px;
            font-size: 19px;
        }
        .tag-container {
            margin: 50px 0;
            text-align: center;
        }
        .tag {
            display: inline-block;
            padding: 10px 20px;
            background-color: #2c3e50;
            color: white;
            text-decoration: none;
            border-radius: 25px;
            margin: 8px;
            font-size: 15px;
            transition: all 0.3s ease;
        }
        .tag:hover {
            background-color: #e74c3c;
            transform: scale(1.05);
        }
        .game-type-nav {
            margin: 40px 0;
            text-align: center;
        }
        .game-type-link {
            display: inline-block;
            padding: 12px 22px;
            background-color: #c0392b;
            color: white;
            text-decoration: none;
            border-radius: 6px;
            margin: 8px;
            transition: all 0.3s ease;
            font-size: 16px;
        }
        .game-type-link:hover {
            background-color: #e74c3c;
            transform: translateY(-2px);
        }
        footer {
            background-color: #2c3e50;
            color: white;
            padding: 40px 0;
            margin-top: 60px;
        }
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            text-align: center;
        }
        .footer-links {
            margin: 25px 0;
        }
        .footer-links a {
            color: #f0f4f8;
            margin: 0 15px;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .footer-links a:hover {
            color: #e74c3c;
        }
        .footer-copyright {
            margin-top: 30px;
            font-size: 15px;
            color: #ccc;
            border-top: 1px solid #475569;
            padding-top: 20px;
        }
        .highlight {
            background-color: #ffebee;
            padding: 3px 8px;
            border-radius: 4px;
            font-weight: bold;
            color: #e74c3c;
        }
        .emoji-box {
            font-size: 28px;
            text-align: center;
            margin: 20px 0;
            line-height: 1.2;
        }
        ul {
            margin-left: 30px;
            margin-bottom: 22px;
        }
        li {
            margin-bottom: 10px;
            font-size: 17px;
        }
