body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; line-height: 1.6; color: #333; background: #fff9e6; }
        .container { max-width: 1200px; margin: 0 auto; padding: 20px; }
        .logo { font-size: 2.5em; font-weight: bold; color: #ff6b00; text-shadow: 2px 2px 4px rgba(0,0,0,0.2); margin-bottom: 20px; }
        nav { background: #ff9800; padding: 10px; margin-bottom: 20px; }
        nav ul { list-style: none; padding: 0; margin: 0; display: flex; justify-content: space-around; }
        nav ul li { display: inline; }
        nav ul li a { color: white; text-decoration: none; font-weight: bold; }
        .mobile-nav-btn { display: none; background: #ff6b00; color: white; border: none; padding: 10px; cursor: pointer; }
        h1 { color: #ff6b00; border-bottom: 3px solid #ff9800; padding-bottom: 10px; }
        h2 { color: #ff8c00; border-bottom: 2px solid #ffb74d; padding-bottom: 5px; }
        h3 { color: #ffa726; }
        .download-btn { background: #4caf50; color: white; padding: 12px 24px; text-decoration: none; font-weight: bold; border-radius: 5px; margin: 15px 0; display: inline-block; }
        .login-btn { background: #2196f3; color: white; padding: 12px 24px; text-decoration: none; font-weight: bold; border-radius: 5px; margin: 15px 0; display: inline-block; }
        .game-stats { background: #fff3e0; padding: 15px; border-radius: 8px; margin: 15px 0; }
        img { max-width: 100%; height: auto; margin: 20px 0; border-radius: 8px; }
        footer { background: #333; color: white; padding: 20px; text-align: center; margin-top: 30px; }
        @media (max-width: 768px) {
            nav ul { flex-direction: column; display: none; }
            .mobile-nav-btn { display: block; }
            .nav-active { display: block; }
            .logo { font-size: 2em; }
        }
