* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial Unicode MS', sans-serif;
        }
        body {
            background-color: #fff9f0;
            color: #3a2e21;
            line-height: 1.8;
            padding-bottom: 60px;
        }
        .header {
            background: linear-gradient(135deg, #c0392b, #e74c3c);
            color: white;
            padding: 18px 20px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.3);
        }
        .logo {
            font-size: 28px;
            font-weight: bold;
            color: #f1c40f;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.4);
            letter-spacing: 1px;
            text-align: center;
            margin-bottom: 10px;
        }
        .nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .nav-links {
            display: flex;
            gap: 25px;
        }
        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
            padding: 5px 0;
            border-bottom: 2px solid transparent;
        }
        .nav-links a:hover {
            color: #f1c40f;
            border-bottom: 2px solid #f1c40f;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 28px;
            cursor: pointer;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        h1 {
            color: #c0392b;
            margin: 40px 0 25px;
            font-size: 36px;
            border-bottom: 4px solid #f1c40f;
            padding-bottom: 15px;
            text-align: center;
        }
        h2 {
            color: #c0392b;
            margin: 35px 0 20px;
            font-size: 30px;
            position: relative;
            padding-left: 15px;
        }
        h2::before {
            content: "🔥";
            position: absolute;
            left: -30px;
        }
        h3 {
            color: #e67e22;
            margin: 30px 0 15px;
            font-size: 24px;
        }
        p {
            margin-bottom: 20px;
            font-size: 18px;
            text-align: justify;
            line-height: 1.9;
        }
        .highlight {
            font-weight: bold;
            color: #c0392b;
            text-decoration: underline wavy;
        }
        .btn {
            display: inline-block;
            padding: 15px 30px;
            background-color: #c0392b;
            color: white;
            text-decoration: none;
            border-radius: 8px;
            font-weight: bold;
            margin: 15px 10px;
            transition: all 0.3s;
            box-shadow: 0 3px 8px rgba(0,0,0,0.2);
            font-size: 18px;
        }
        .btn:hover {
            background-color: #a52a1d;
            transform: translateY(-3px);
            box-shadow: 0 5px 12px rgba(0,0,0,0.3);
        }
        .btn-download {
            background-color: #27ae60;
        }
        .btn-download:hover {
            background-color: #219653;
        }
        .image-container {
            margin: 35px 0;
            text-align: center;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.2);
            border: 4px solid white;
        }
        .stats-box {
            background-color: white;
            border-radius: 12px;
            padding: 30px;
            margin: 30px 0;
            box-shadow: 0 6px 18px rgba(0,0,0,0.15);
            border-left: 6px solid #f1c40f;
        }
        .tag {
            display: inline-block;
            background-color: #fef0e0;
            color: #c0392b;
            padding: 8px 15px;
            border-radius: 30px;
            margin: 8px;
            text-decoration: none;
            font-size: 16px;
            transition: all 0.3s;
            font-weight: 500;
        }
        .tag:hover {
            background-color: #fee0cc;
            transform: scale(1.08);
        }
        .footer {
            background: linear-gradient(135deg, #c0392b, #e74c3c);
            color: white;
            padding: 50px 20px;
            margin-top: 80px;
        }
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
        }
        .game-types {
            margin: 30px 0;
        }
        .game-types a {
            color: #f1c40f;
            text-decoration: none;
            margin-right: 22px;
            font-size: 18px;
            transition: all 0.3s;
        }
        .game-types a:hover {
            text-decoration: underline;
            font-size: 19px;
        }
        .copyright {
            margin-top: 50px;
            font-size: 16px;
            color: #f8e0b0;
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.2);
        }
        .quote-box {
            border-left: 5px solid #f1c40f;
            padding: 20px 25px;
            margin: 25px 0;
            background-color: #fef9ea;
            font-style: italic;
            font-size: 19px;
        }
        .tip-box {
            background-color: #ffebee;
            border-radius: 10px;
            padding: 22px;
            margin: 25px 0;
            border: 1px solid #f8ccd0;
        }
        .tip-box strong {
            color: #c62828;
            font-size: 19px;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 120px;
                left: 0;
                right: 0;
                background: linear-gradient(135deg, #c0392b, #e74c3c);
                padding: 30px;
                gap: 20px;
                z-index: 100;
                border-top: 2px solid #f1c40f;
            }
            .nav-links.active {
                display: flex;
            }
            .mobile-menu-btn {
                display: block;
            }
            h1 {
                font-size: 32px;
                margin: 30px 0 20px;
            }
            h2 {
                font-size: 26px;
                padding-left: 0;
                margin-left: 10px;
            }
            h2::before {
                display: none;
            }
            h3 {
                font-size: 22px;
                margin-left: 10px;
            }
            p {
                font-size: 17px;
                text-align: left;
                padding: 0 10px;
            }
            .btn {
                padding: 14px 28px;
                margin: 12px 5px;
                width: 90%;
                text-align: center;
                font-size: 17px;
            }
            .stats-box {
                padding: 25px 20px;
                margin: 25px 10px;
            }
            .logo {
                font-size: 24px;
            }
            .quote-box {
                margin: 25px 10px;
                padding: 18px 20px;
            }
            .tip-box {
                margin: 25px 10px;
            }
        }
