* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
        }
        body {
            background-color: #fff8e6;
            color: #3e2723;
            line-height: 1.8;
            padding-bottom: 60px;
        }
        .header {
            background-color: #e65100;
            padding: 18px 20px;
            color: #ffffff;
            box-shadow: 0 2px 10px rgba(0,0,0,0.2);
        }
        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 28px;
            font-weight: bold;
            color: #ffeb3b;
            letter-spacing: 1px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        .nav-links {
            display: flex;
            gap: 30px;
        }
        .nav-links a {
            color: #ffffff;
            text-decoration: none;
            font-weight: 600;
            transition: 0.3s;
            padding: 5px 0;
        }
        .nav-links a:hover {
            color: #ffeb3b;
            transform: translateY(-2px);
            border-bottom: 2px solid #ffeb3b;
        }
        .menu-toggle {
            display: none;
            font-size: 30px;
            cursor: pointer;
            color: #ffeb3b;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 25px;
        }
        h1 {
            color: #e65100;
            margin: 35px 0 25px;
            font-size: 38px;
            border-bottom: 4px solid #ffb74d;
            padding-bottom: 12px;
            letter-spacing: 1px;
        }
        h2 {
            color: #e65100;
            margin: 35px 0 20px;
            font-size: 30px;
            position: relative;
            padding-left: 15px;
        }
        h2::before {
            content: "⚡";
            position: absolute;
            left: -25px;
        }
        h3 {
            color: #f57c00;
            margin: 25px 0 15px;
            font-size: 24px;
            display: flex;
            align-items: center;
        }
        h3::after {
            content: "";
            flex-grow: 1;
            height: 2px;
            background-color: #f57c00;
            margin-left: 10px;
        }
        p {
            margin-bottom: 20px;
            font-size: 19px;
            text-align: justify;
        }
        .highlight {
            font-weight: bold;
            color: #d32f2f;
            text-decoration: underline;
            text-underline-offset: 3px;
        }
        .btn {
            display: inline-block;
            padding: 15px 32px;
            margin: 20px 15px 20px 0;
            text-decoration: none;
            font-weight: bold;
            border-radius: 8px;
            transition: 0.4s;
            font-size: 19px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
            text-align: center;
        }
        .download-btn {
            background-color: #388e3c;
            color: white;
        }
        .login-btn {
            background-color: #1976d2;
            color: white;
        }
        .btn:hover {
            transform: scale(1.05);
            box-shadow: 0 6px 12px rgba(0,0,0,0.3);
        }
        .image-container {
            margin: 35px 0;
            text-align: center;
        }
        .game-img {
            max-width: 100%;
            border-radius: 12px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.25);
            transition: 0.5s;
        }
        .game-img:hover {
            transform: translateY(-8px) scale(1.02);
            box-shadow: 0 12px 25px rgba(0,0,0,0.3);
        }
        .stats-box {
            background-color: white;
            border-radius: 12px;
            padding: 30px;
            margin: 30px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.15);
            border-left: 6px solid #f57c00;
        }
        .tips-list {
            margin: 25px 0 25px 40px;
        }
        .tips-list li {
            margin-bottom: 18px;
            font-size: 19px;
            position: relative;
            padding-left: 15px;
        }
        .tips-list li::before {
            content: "🚀";
            position: absolute;
            left: -30px;
            top: -5px;
        }
        .footer {
            background-color: #e65100;
            color: white;
            padding: 40px 20px;
            margin-top: 70px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        .game-types, .tags {
            margin: 30px 0;
        }
        .game-types h3, .tags h3 {
            color: #ffeb3b;
            margin-bottom: 20px;
            font-size: 24px;
            border-bottom: 2px solid #ffeb3b;
            padding-bottom: 8px;
            display: inline-block;
        }
        .game-types a, .tags a {
            color: #ffffff;
            text-decoration: none;
            margin-right: 25px;
            display: inline-block;
            margin-bottom: 12px;
            transition: 0.3s;
            font-size: 18px;
        }
        .game-types a:hover, .tags a:hover {
            color: #ffeb3b;
            transform: translateX(5px);
        }
        .recommendation {
            margin: 35px 0;
            font-size: 19px;
            line-height: 1.8;
            padding: 20px;
            background-color: rgba(255,255,255,0.1);
            border-radius: 8px;
        }
        .copyright {
            margin-top: 50px;
            font-size: 16px;
            opacity: 0.9;
            border-top: 1px solid rgba(255,255,255,0.2);
            padding-top: 25px;
            text-align: center;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 85px;
                left: 0;
                right: 0;
                background-color: #e65100;
                padding: 25px;
                gap: 20px;
                z-index: 100;
                box-shadow: 0 5px 15px rgba(0,0,0,0.3);
            }
            .nav-links.active {
                display: flex;
            }
            .menu-toggle {
                display: block;
            }
            h1 {
                font-size: 32px;
                margin: 25px 0 20px;
            }
            h2 {
                font-size: 26px;
                margin: 30px 0 15px;
                padding-left: 10px;
            }
            h2::before {
                left: -20px;
            }
            h3 {
                font-size: 22px;
                margin: 20px 0 12px;
            }
            p {
                font-size: 18px;
                margin-bottom: 18px;
            }
            .btn {
                padding: 14px 28px;
                font-size: 18px;
                margin: 15px 0;
                display: block;
                width: 100%;
            }
            .tips-list {
                margin: 15px 0 15px 30px;
            }
            .tips-list li {
                font-size: 18px;
                margin-bottom: 15px;
            }
            .tips-list li::before {
                left: -25px;
            }
            .image-container {
                margin: 25px 0;
            }
            .stats-box {
                padding: 20px;
                margin: 25px 0;
            }
        }
